@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&display=swap');

/* Scope everything specifically to avoid theme collisions */
#goodtrash-scheduler-app {
    --gt-bg-form: #EDEDE0;
    --gt-idle-btn: #E4E6C6;
    --gt-primary: #64881A;
    --gt-text-dark: #313F0C;
    --gt-white: #ffffff;
    --gt-border: #9FB36E;
    --gt-transition: all 0.3s ease;

    font-family: 'Outfit', sans-serif !important;
    color: var(--gt-text-dark);
    line-height: 1.5;
}

/* Thank-you step: no full-width page paint — theme/section supplies the canvas */
#goodtrash-scheduler-app:has(#gt-step-5:not(.gt-hidden)),
#goodtrash-scheduler-app.gt-step-5-active {
    background: transparent !important;
}

/* Step 1 Form Layout */
#goodtrash-scheduler-app .gt-main-selectors {
    margin-bottom: 25px !important;
}

#goodtrash-scheduler-app .gt-main-selectors .gt-form-row {
    display: flex !important;
    flex-direction: row !important;
    /* STRICT HORIZONTAL FOR DESKTOP */
    flex-wrap: nowrap !important;
    gap: 15px !important;
    /* Tighter gap like screenshot */
    margin-bottom: 20px !important;
    align-items: flex-end !important;
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-main-selectors .gt-form-group {
    flex: 1 !important;
    /* Ensure they share the row width */
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    /* VERY TIGHT FOR HERO LOOK */
}

/* Step 1 hero: one row — full address | service type | business type */
#goodtrash-scheduler-app .gt-main-selectors .gt-form-row.gt-step1-top-row {
    align-items: flex-end !important;
}

#goodtrash-scheduler-app .gt-main-selectors .gt-form-row.gt-step1-top-row .gt-address-group-step1 {
    flex: 1.4 1 0 !important;
    min-width: 0 !important;
}

#goodtrash-scheduler-app .gt-main-selectors .gt-form-row.gt-step1-top-row .gt-type-group,
#goodtrash-scheduler-app .gt-main-selectors .gt-form-row.gt-step1-top-row .gt-business-group {
    flex: 1 1 0 !important;
    min-width: 140px !important;
}

/* Step 1 address: single-line input aligned with .gt-select (Places autocomplete) */
#goodtrash-scheduler-app.gt-step1-shortcode .gt-step1-top-row input#gt-address-business-full.gt-step1-address-field {
    height: 52px !important;
    min-height: 52px !important;
    background-color: rgba(159, 179, 110, 0.18) !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 0 18px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    color: rgba(100, 136, 26, 0.78) !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app.gt-step1-shortcode .gt-step1-top-row input#gt-address-business-full.gt-step1-address-field::placeholder {
    color: rgba(100, 136, 26, 0.5) !important;
    opacity: 1 !important;
}

#goodtrash-scheduler-app.gt-step1-shortcode .gt-step1-top-row input#gt-address-business-full.gt-step1-address-field:focus {
    border-color: var(--gt-primary) !important;
    outline: none !important;
}

#goodtrash-scheduler-app .gt-form-group label {
    font-size: 11px !important;
    /* SMALLER COMPACT LABELS */
    font-weight: 700 !important;
    color: var(--gt-primary) !important;
    text-transform: none !important;
    margin-bottom: 2px !important;
    display: block !important;
}

#goodtrash-scheduler-app .gt-contact-details {
    margin-top: 40px !important;
}

#goodtrash-scheduler-app .gt-form-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-input-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

#goodtrash-scheduler-app .gt-input-group label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--gt-text-dark) !important;
    margin-bottom: 2px !important;
}

/* Step 1 Select Field */
#goodtrash-scheduler-app .gt-select {
    width: 100% !important;
    height: 52px !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 0 40px 0 20px !important;
    font-size: 16px !important;
    color: rgba(100, 136, 26, 0.44) !important;
    background-color: rgba(159, 179, 110, 0.18) !important;
    outline: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10L0 0L16 0L8 10Z' fill='%2364881A'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    transition: var(--gt-transition);
}

/* Step 1: selected values should be dark (readable) */
#goodtrash-scheduler-app.gt-step1-shortcode .gt-select.gt-has-value {
    color: var(--gt-text-dark) !important;
}

#goodtrash-scheduler-app.gt-step1-shortcode #gt-address-business-full.gt-input.gt-has-value,
#goodtrash-scheduler-app.gt-step1-shortcode .gt-step1-top-row input#gt-address-business-full.gt-step1-address-field.gt-has-value {
    color: var(--gt-text-dark) !important;
}

/* Step 1 contact section heading (residential) */
#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-title {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: var(--gt-primary) !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.2 !important;
}

/* Residential CONTACT US form: placeholders-only (hide labels) */
#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-section .gt-input-group label {
    display: none !important;
}

/* Residential CONTACT US form: outlined fields, no white fill */
#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-section input[type="text"],
#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-section input[type="tel"],
#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-section input[type="email"] {
    width: 100% !important;
    height: 52px !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    color: var(--gt-text-dark) !important;
    background: transparent !important;
    outline: none !important;
}

#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-section input:focus {
    border-color: var(--gt-primary) !important;
}

#goodtrash-scheduler-app.gt-step1-shortcode #gt-contact-section input::placeholder {
    color: rgba(100, 136, 26, 0.44) !important;
}

/* Residential message box spacing closer to design */
#goodtrash-scheduler-app.gt-step1-shortcode #gt-residential-msg.gt-message-box {
    padding: 28px 40px !important;
    margin-bottom: 30px !important;
}

/* Residential note text color */
#goodtrash-scheduler-app.gt-step1-shortcode #gt-residential-msg.gt-message-box p {
    color: var(--gt-primary) !important;
}

/* Step 1 Alert Box — full border, centered text (matches screenshot 2) */
#goodtrash-scheduler-app .gt-message-box {
    background: rgba(159, 179, 110, 0.18) !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 20px 30px !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

#goodtrash-scheduler-app .gt-message-box p {
    margin: 0 0 8px 0 !important;
    font-size: 14px !important;
    color: var(--gt-text-dark) !important;
    line-height: 1.5 !important;
}

#goodtrash-scheduler-app .gt-message-box p:last-child {
    margin-bottom: 0 !important;
}

#goodtrash-scheduler-app .gt-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Step 3: Not Sure contact panel (mirrors residential step 1 contact styling) */
#goodtrash-scheduler-app #gt-step3-not-sure-panel {
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-not-sure-heading {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: var(--gt-primary) !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.2 !important;
}

#goodtrash-scheduler-app #gt-not-sure-msg.gt-message-box {
    padding: 20px 28px !important;
    margin-bottom: 16px !important;
}

#goodtrash-scheduler-app #gt-not-sure-msg.gt-message-box p {
    color: var(--gt-primary) !important;
}

#goodtrash-scheduler-app .gt-not-sure-grid {
    margin-top: 0 !important;
}

#goodtrash-scheduler-app .gt-not-sure-actions {
    margin-top: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 12px !important;
}

#goodtrash-scheduler-app .gt-builder-service-heading {
    margin-top: 0 !important;
}

#goodtrash-scheduler-app .gt-message-box .gt-phone,
#goodtrash-scheduler-app .gt-subtext a.gt-phone {
    font-weight: 700 !important;
    color: var(--gt-primary) !important;
    text-decoration: none !important;
}

#goodtrash-scheduler-app .gt-message-box a.gt-phone:hover,
#goodtrash-scheduler-app .gt-subtext a.gt-phone:hover {
    text-decoration: underline !important;
}

#goodtrash-scheduler-app .gt-review-contact-line a.gt-phone-link {
    color: rgba(49, 63, 12, 0.92) !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

#goodtrash-scheduler-app .gt-review-contact-line a.gt-phone-link:hover {
    color: var(--gt-primary) !important;
}

#goodtrash-scheduler-app * {
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app .gt-scheduler-container {
    width: 1280px;
    margin: 40px auto;
    background: var(--gt-bg-form);
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--gt-primary) !important;
    /* REQUESTED GREEN BORDER */
}

/* Headings - All align to the same left edge (the 40px padding boundary) */
#goodtrash-scheduler-app .gt-main-heading {
    font-size: 36px !important;
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin: 0 !important;
    line-height: 1.2 !important;
}

#goodtrash-scheduler-app .gt-section-header {
    font-size: 24px !important;
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin: 40px 0 20px 0 !important;
    /* ABSOLUTE ALIGN - NO INDENT */
}

/* Layout - All content blocks start at the EXACT same vertical line as the heading */
#goodtrash-scheduler-app .gt-details-grid,
#goodtrash-scheduler-app .gt-product-area-content,
#goodtrash-scheduler-app .gt-builder-content>.gt-service-selector,
#goodtrash-scheduler-app .gt-freq-section,
#goodtrash-scheduler-app .gt-actions-row {
    margin-left: 0 !important;
    /* ABSOLUTE ALIGN - NO INDENT */
    width: 100% !important;
}

/* Step 2 Details */
#goodtrash-scheduler-app #gt-step-2 .gt-details-grid {
    margin-top: 24px !important;
}

#goodtrash-scheduler-app .gt-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px !important;
}

#goodtrash-scheduler-app .gt-full-width {
    grid-column: span 2 !important;
    grid-column: 1 / -1 !important;
}

#goodtrash-scheduler-app .gt-step2-field-label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--gt-primary) !important;
    margin-bottom: 4px !important;
}

#goodtrash-scheduler-app .gt-billing-checkbox-wrap {
    margin-top: 20px !important;
}

#goodtrash-scheduler-app .gt-billing-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--gt-text-dark) !important;
    cursor: pointer !important;
}

#goodtrash-scheduler-app .gt-billing-checkbox-label input {
    margin-top: 4px !important;
    flex-shrink: 0 !important;
}

#goodtrash-scheduler-app .gt-billing-fields-wrap {
    margin-top: 20px !important;
    padding: 24px 20px 28px !important;
    border: 1px solid rgba(159, 179, 110, 0.45) !important;
    border-radius: 12px !important;
    background: rgba(159, 179, 110, 0.06) !important;
}

#goodtrash-scheduler-app .gt-billing-section-title {
    margin: 0 0 8px 0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    color: var(--gt-primary) !important;
    text-transform: uppercase !important;
}

#goodtrash-scheduler-app .gt-billing-intro {
    margin: 0 0 20px 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #444 !important;
}

#goodtrash-scheduler-app .gt-billing-fields-wrap .gt-details-grid {
    margin-top: 0 !important;
}

#goodtrash-scheduler-app input.gt-full-address-field {
    min-height: 52px !important;
    height: 52px !important;
    font-family: inherit !important;
    resize: none !important;
}

#goodtrash-scheduler-app .gt-ns-message-field {
    min-height: 120px !important;
}

#goodtrash-scheduler-app .gt-input-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#goodtrash-scheduler-app .gt-textarea {
    height: auto !important;
    min-height: 100px !important;
    padding: 14px 20px !important;
    line-height: 1.45 !important;
    resize: vertical !important;
}

#goodtrash-scheduler-app .gt-input {
    width: 100% !important;
    height: 52px !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    color: var(--gt-text-dark) !important;
    background-color: var(--gt-white) !important;
    outline: none !important;
    transition: var(--gt-transition);
}

#goodtrash-scheduler-app .gt-input:focus {
    border-color: var(--gt-primary) !important;
}

/* Buttons - BACK left, NEXT right aligned as per Figma */
#goodtrash-scheduler-app .gt-actions-row {
    display: flex !important;
    justify-content: space-between !important;
    /* BACK LEFT, NEXT RIGHT */
    margin-top: 50px !important;
    width: 100% !important;
    margin-left: 0 !important;
}

#goodtrash-scheduler-app .gt-btn-primary {
    height: 50px !important;
    width: 211px !important;
    /* FIXED WIDTH PER FIGMA */
    flex-shrink: 0 !important;
    /* CRITICAL: Prevent circle shape */
    background-color: var(--gt-primary) !important;
    color: var(--gt-white) !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: var(--gt-transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-btn-primary:hover {
    background-color: var(--gt-text-dark) !important;
    transform: translateY(-2px) !important;
}

/* Centering for Step 1 Buttons */
#goodtrash-scheduler-app .gt-actions {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 20px !important;
}

#goodtrash-scheduler-app .gt-btn-primary.gt-hidden {
    display: none !important;
}

/* Disabled state — greyed pill, not yet enabled */
#goodtrash-scheduler-app .gt-btn-primary:disabled {
    background-color: var(--gt-idle-btn) !important;
    color: var(--gt-primary) !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

#goodtrash-scheduler-app .gt-btn-primary:disabled:hover {
    background-color: var(--gt-idle-btn) !important;
    transform: none !important;
}

/* ============================================================
   STEP 1 SHORTCODE — Scoped overrides (.gt-step1-shortcode)
   These do NOT affect the second shortcode [goodtrash_service_plan]
   ============================================================ */

/* Reduce container height — target 200–272px */
#goodtrash-scheduler-app.gt-step1-shortcode .gt-scheduler-container {
    padding: 30px 40px !important;
}

/* Step 1 heading: 24px desktop — ID-scoped to beat theme h2 styles */
#goodtrash-scheduler-app.gt-step1-shortcode .gt-step1-heading {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: var(--gt-primary) !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.2 !important;
}

/* Step 1 main-selectors margin tightened */
#goodtrash-scheduler-app.gt-step1-shortcode .gt-main-selectors {
    margin-bottom: 0 !important;
}

/* Step 1 actions less gap */
#goodtrash-scheduler-app.gt-step1-shortcode .gt-actions {
    margin-top: 20px !important;
}

/* REQUEST RECEIVED — residential step 1 + Not Sure (shared layout) */
#goodtrash-scheduler-app .gt-request-received-wrap {
    position: relative !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: min(72vh, 720px) !important;
    padding: 48px 20px !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app .gt-request-received-wrap:not(.gt-hidden) {
    display: flex !important;
}

#goodtrash-scheduler-app .gt-request-received-wrap.gt-hidden {
    display: none !important;
}

#goodtrash-scheduler-app .gt-request-received-slab {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    background: linear-gradient(148deg, #ffffff 0%, #ffffff 44%, #d2e8a0 44%, #b8cf6e 100%) !important;
}

#goodtrash-scheduler-app .gt-request-received-card {
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 44px 36px 40px !important;
    background: #f2f0e4 !important;
    border: 2px solid #9eb8d8 !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06) !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app .gt-request-received-title {
    margin: 0 0 20px 0 !important;
    font-size: clamp(26px, 4vw, 34px) !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #556b2f !important;
    line-height: 1.15 !important;
}

#goodtrash-scheduler-app .gt-request-received-body p {
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    color: #556b2f !important;
}

#goodtrash-scheduler-app .gt-request-received-phone {
    margin: 20px 0 0 0 !important;
    font-size: 17px !important;
    line-height: 1.5 !important;
    color: #556b2f !important;
}

#goodtrash-scheduler-app .gt-request-received-phone strong {
    font-weight: 800 !important;
}

#goodtrash-scheduler-app .gt-request-received-tel {
    color: #556b2f !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

#goodtrash-scheduler-app .gt-request-received-actions {
    margin-top: 28px !important;
    display: flex !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-request-received-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 0 40px !important;
    border-radius: 999px !important;
    background: #6b8e23 !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-size: 14px !important;
    border: none !important;
    transition: background 0.2s ease !important;
}

#goodtrash-scheduler-app .gt-request-received-btn:hover {
    background: #5a7a1d !important;
    color: #ffffff !important;
}

/* Request Received: remove extra slab/background so only one rounded confirmation card shows */
#goodtrash-scheduler-app.gt-step1-request-received .gt-request-received-slab,
#goodtrash-scheduler-app.gt-not-sure-request-received .gt-request-received-slab {
    display: none !important;
}

#goodtrash-scheduler-app.gt-step1-request-received .gt-request-received-wrap,
#goodtrash-scheduler-app.gt-not-sure-request-received .gt-request-received-wrap {
    min-height: auto !important;
    padding: 0 !important;
    background: transparent !important;
}

#goodtrash-scheduler-app.gt-step1-request-received .gt-request-received-card,
#goodtrash-scheduler-app.gt-not-sure-request-received .gt-request-received-card {
    max-width: min(920px, 100%) !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 56px 44px 44px !important;
    background: #f2f2e6 !important;
    border: 1px solid rgba(44, 62, 80, 0.12) !important;
    border-radius: 26px !important;
    box-shadow: none !important;
}

/* Step 1: de-emphasize outer frame when confirmation is visible */
/* Step 1: de-emphasize outer frame when confirmation is visible */
#goodtrash-scheduler-app.gt-step1-request-received.gt-step1-shortcode .gt-scheduler-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: min(100%, 1180px) !important;
    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Service plan: Not Sure success — only show request-received layer */
#goodtrash-scheduler-app.gt-not-sure-request-received .gt-scheduler-container {
    display: none !important;
}

#goodtrash-scheduler-app.gt-not-sure-request-received {
    min-height: 60vh !important;
}

/* Step 3 Styles */
#goodtrash-scheduler-app .gt-service-selector {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-service-btn {
    flex: 1 !important;
    width: auto !important;
    height: 80px !important;
    background: var(--gt-idle-btn) !important;
    border: 2px solid var(--gt-border) !important;
    border-radius: 10px !important;
    color: var(--gt-text-dark) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: var(--gt-transition) !important;
}

#goodtrash-scheduler-app .gt-service-btn.active {
    background: var(--gt-primary) !important;
    color: var(--gt-white) !important;
    border-color: var(--gt-primary) !important;
}

#goodtrash-scheduler-app .gt-product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin-bottom: 40px !important;
}

#goodtrash-scheduler-app .gt-product-card {
    width: 345px !important;
    min-height: 400px !important;
    height: auto !important;
    background: var(--gt-white) !important;
    border: 2px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    position: relative !important;
    transition: var(--gt-transition) !important;
    overflow: visible !important;
}

#goodtrash-scheduler-app .gt-product-card:hover {
    border-color: var(--gt-primary) !important;
    background-color: #F8FAF0 !important;
}

#goodtrash-scheduler-app .gt-product-card.selected {
    border-color: var(--gt-primary) !important;
    background-color: rgba(159, 179, 110, 0.28) !important;
    border-width: 3px !important;
    box-shadow: 0 4px 15px rgba(100, 136, 26, 0.2) !important;
}

/* Product add-ons + qty are only visible when selected (matches design) */
#goodtrash-scheduler-app .gt-product-card .gt-product-options {
    display: none !important;
}

#goodtrash-scheduler-app .gt-product-card.selected .gt-product-options {
    display: block !important;
}

#goodtrash-scheduler-app .gt-product-image {
    height: 190px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

#goodtrash-scheduler-app .gt-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

#goodtrash-scheduler-app .gt-product-details h4 {
    font-size: 20px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin: 0 0 10px 0 !important;
    color: var(--gt-text-dark) !important;
}

/* Product card copy + spacing (dynamic rows) */
#goodtrash-scheduler-app .gt-product-details p {
    font-size: 14px !important;
    line-height: 1.35 !important;
    margin: 6px 0 0 0 !important;
    color: var(--gt-text-dark) !important;
}
#goodtrash-scheduler-app .gt-product-details p.gt-desc-row {
    font-size: 12px !important; /* 2pt smaller than other lines */
    margin-top: 2px !important; /* tighter under title */
    opacity: 0.92 !important;
}
#goodtrash-scheduler-app .gt-product-details p.gt-holds {
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-top: 6px !important;
}
#goodtrash-scheduler-app .gt-product-details p.gt-dim-row {
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-top: 8px !important; /* a little more space between Capacity and Dimensions */
}
#goodtrash-scheduler-app .gt-product-details p.gt-base-rate-row {
    margin-top: 4px !important; /* not tight vs dimensions */
    font-weight: 700 !important;
}

/* Card Options overlay */
#goodtrash-scheduler-app .gt-options-controls {
    margin-top: auto !important;
    display: flex !important;
    gap: 10px !important;
    align-items: flex-end !important;
}

#goodtrash-scheduler-app .gt-addon-wrap {
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

#goodtrash-scheduler-app .gt-qty-wrap {
    flex: 0 0 auto !important;
}

#goodtrash-scheduler-app .gt-product-card.selected .gt-options-controls {
    padding-top: 10px !important;
}

#goodtrash-scheduler-app .gt-addon-dropdown {
    position: relative !important;
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-addon-trigger {
    height: 38px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 4px !important;
    background: var(--gt-white) !important;
    color: var(--gt-text-dark) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 0 30px 0 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 10L0 0L16 0L8 10Z' fill='%2364881A'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
}

#goodtrash-scheduler-app .gt-addon-trigger.gt-addon-filled {
    justify-content: flex-end !important;
    text-align: right !important;
}

#goodtrash-scheduler-app .gt-addon-options {
    position: absolute !important;
    bottom: 45px !important;
    /* SLIGHTLY LOWER */
    left: 0 !important;
    width: 250px !important;
    background: var(--gt-white) !important;
    border: 1px solid var(--gt-border) !important;
    border-radius: 8px !important;
    padding: 15px !important;
    z-index: 10000 !important;
    /* ENSURE ON TOP */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

#goodtrash-scheduler-app .gt-addon-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    cursor: pointer !important;
}

#goodtrash-scheduler-app .gt-addon-option input {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

#goodtrash-scheduler-app .gt-addon-option label {
    font-size: 14px !important;
    color: var(--gt-text-dark) !important;
    cursor: pointer !important;
    user-select: none !important;
}

#goodtrash-scheduler-app .gt-qty-selector {
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 4px !important;
    background: var(--gt-white) !important;
    min-width: 78px !important;
    overflow: hidden !important;
}

#goodtrash-scheduler-app .gt-qty-btn {
    width: 26px !important;
    height: 100% !important;
    background: rgba(159, 179, 110, 0.18) !important;
    border: none !important;
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-qty-input {
    width: 30px !important;
    flex: 0 0 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    border: none !important;
    border-left: 1.5px solid var(--gt-border) !important;
    border-right: 1.5px solid var(--gt-border) !important;
    text-align: center !important;
    font-weight: 700 !important;
    background: var(--gt-white) !important;
    color: var(--gt-text-dark) !important;
    font-size: 14px !important;
    display: block !important;
    outline: none !important;
    opacity: 1 !important;
    -webkit-text-fill-color: var(--gt-text-dark) !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
}

#goodtrash-scheduler-app .gt-qty-input::-webkit-outer-spin-button,
#goodtrash-scheduler-app .gt-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

#goodtrash-scheduler-app .gt-qty-input[type="number"] {
    -moz-appearance: textfield !important;
}

/* Frequency Buttons */
#goodtrash-scheduler-app .gt-freq-section {
    margin-bottom: 60px !important;
    /* REQUESTED EXTRA PADDING */
}

/* Step 3: give CTA row more breathing room from container bottom */
#goodtrash-scheduler-app #gt-step-3 .gt-actions-row {
    padding-bottom: 20px !important;
}

#goodtrash-scheduler-app .gt-freq-buttons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

#goodtrash-scheduler-app .gt-freq-btn {
    flex: 1 !important;
    background: var(--gt-white) !important;
    border: 1px solid var(--gt-border) !important;
    border-radius: 10px !important;
    color: var(--gt-primary) !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: var(--gt-transition) !important;
    /* Desktop: slightly thinner than the original tall cards */
    padding: 12px 10px !important;
    min-height: 56px !important;
    font-size: 16px !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile: even 2-column grid (no odd “orphan” row) */
@media (max-width: 640px) {
    #goodtrash-scheduler-app .gt-freq-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
    #goodtrash-scheduler-app .gt-freq-btn {
        flex: unset !important;
        width: 100% !important;
        min-height: 44px !important;
        padding: 10px 10px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
    }
}

#goodtrash-scheduler-app .gt-freq-btn.active {
    background: var(--gt-primary) !important;
    color: var(--gt-white) !important;
    border-color: var(--gt-primary) !important;
}

/* Header/Progress */
#goodtrash-scheduler-app .gt-step-header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 40px !important;
}

#goodtrash-scheduler-app .gt-progress-bar-container {
    width: 300px !important;
    height: 14px !important;
    background: var(--gt-white) !important;
    border-radius: 20px !important;
    box-shadow: 0 0 0 1px #BDC8A2 !important;
    overflow: hidden !important;
}

#goodtrash-scheduler-app .gt-progress-bar {
    height: 100% !important;
    background: var(--gt-primary) !important;
    transition: width 0.3s ease !important;
}

#goodtrash-scheduler-app .gt-hidden {
    display: none !important;
}

/* ============================================================
   STEP 4: REVIEW
   ============================================================ */
#goodtrash-scheduler-app .gt-review-header {
    margin-bottom: 25px !important;
}

#goodtrash-scheduler-app .gt-review-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-review-left,
#goodtrash-scheduler-app .gt-review-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

#goodtrash-scheduler-app .gt-review-left {
    position: relative !important;
    z-index: 2 !important;
}

#goodtrash-scheduler-app .gt-review-card {
    background: var(--gt-white) !important;
    border: 2px solid var(--gt-border) !important;
    border-radius: 10px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#goodtrash-scheduler-app .gt-review-card-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 18px !important;
    border-bottom: 2px solid rgba(159, 179, 110, 0.35) !important;
}

#goodtrash-scheduler-app .gt-review-card-header h3 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    color: var(--gt-text-dark) !important;
    text-transform: uppercase !important;
}

#goodtrash-scheduler-app .gt-review-edit {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    letter-spacing: 0.06em !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
}

#goodtrash-scheduler-app .gt-review-card-body {
    padding: 16px 18px 18px 18px !important;
}

#goodtrash-scheduler-app .gt-review-service-row {
    border-bottom: 1px solid rgba(159, 179, 110, 0.35) !important;
    padding: 10px 0 !important;
}

#goodtrash-scheduler-app .gt-review-service-row:last-child {
    border-bottom: none !important;
}

#goodtrash-scheduler-app .gt-review-service-toggle {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 0 !important;
    cursor: pointer !important;
    text-align: left !important;
}

#goodtrash-scheduler-app .gt-review-service-thumb-wrap {
    flex-shrink: 0 !important;
    width: 62px !important;
    height: 62px !important;
    padding: 6px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: rgba(159, 179, 110, 0.2) !important;
    border: 1px solid rgba(159, 179, 110, 0.45) !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app .gt-review-service-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 4px !important;
}

#goodtrash-scheduler-app .gt-review-service-thumb-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    background: linear-gradient(135deg, rgba(159, 179, 110, 0.25), rgba(159, 179, 110, 0.08)) !important;
}

#goodtrash-scheduler-app .gt-review-service-main {
    flex: 1 !important;
    min-width: 0 !important;
}

#goodtrash-scheduler-app .gt-review-service-title {
    font-weight: 700 !important;
    color: var(--gt-text-dark) !important;
}

#goodtrash-scheduler-app .gt-review-service-meta {
    margin-top: 3px !important;
    color: rgba(49, 63, 12, 0.75) !important;
    font-size: 14px !important;
}

#goodtrash-scheduler-app .gt-review-caret {
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
    padding: 4px 14px 4px 8px !important;
    margin-right: 2px !important;
}

#goodtrash-scheduler-app .gt-review-delivery-wrap {
    margin-top: 4px !important;
    padding: 16px 18px 18px 18px !important;
    border-top: 1px solid rgba(159, 179, 110, 0.35) !important;
}

/* Delivery card under pricing (right column): no duplicate chrome */
#goodtrash-scheduler-app #gt-review-delivery-section .gt-review-delivery-wrap {
    margin-top: 0 !important;
    padding: 0 !important;
    border-top: none !important;
}

#goodtrash-scheduler-app .gt-review-delivery-label {
    display: block !important;
    font-weight: 700 !important;
    color: rgba(49, 63, 12, 0.95) !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
}

#goodtrash-scheduler-app .gt-review-delivery-input-wrap {
    max-width: 320px !important;
}

#goodtrash-scheduler-app #gt-review-delivery-section .gt-review-delivery-input-wrap {
    max-width: 100% !important;
}

#goodtrash-scheduler-app .gt-review-delivery-date {
    width: 100% !important;
    max-width: 320px !important;
    padding: 10px 14px !important;
    border: 1px solid rgba(159, 179, 110, 0.55) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    color: rgba(49, 63, 12, 0.95) !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app #gt-review-delivery-section .gt-review-delivery-date {
    max-width: 100% !important;
}

#goodtrash-scheduler-app .gt-review-delivery-hint {
    margin: 10px 0 0 0 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: rgba(49, 63, 12, 0.72) !important;
}

#goodtrash-scheduler-app .gt-review-service-details {
    margin-top: 10px !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(159, 179, 110, 0.55) !important;
    border-radius: 8px !important;
    background: rgba(159, 179, 110, 0.10) !important;
    color: rgba(49, 63, 12, 0.92) !important;
    font-size: 14px !important;
}

#goodtrash-scheduler-app .gt-review-sublist {
    margin: 8px 0 0 16px !important;
    padding: 0 !important;
}

#goodtrash-scheduler-app .gt-review-muted {
    color: rgba(49, 63, 12, 0.6) !important;
    margin-top: 6px !important;
}

#goodtrash-scheduler-app .gt-review-contact-line {
    font-size: 16px !important;
    color: rgba(49, 63, 12, 0.92) !important;
    margin-bottom: 6px !important;
}

#goodtrash-scheduler-app .gt-review-price-section-heading {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(100, 136, 26, 0.88) !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

#goodtrash-scheduler-app .gt-review-price-group + .gt-review-price-group {
    margin-top: 8px !important;
}

#goodtrash-scheduler-app .gt-review-price-row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 15px !important;
    padding: 6px 0 !important;
    font-size: 14px !important;
    color: rgba(49, 63, 12, 0.92) !important;
}

#goodtrash-scheduler-app .gt-review-price-label {
    max-width: 70% !important;
}

#goodtrash-scheduler-app .gt-review-price-amount {
    font-weight: 700 !important;
    white-space: nowrap !important;
}

#goodtrash-scheduler-app .gt-review-divider {
    height: 1px !important;
    background: rgba(159, 179, 110, 0.55) !important;
    margin: 10px 0 !important;
}

#goodtrash-scheduler-app .gt-review-price-total {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    font-weight: 900 !important;
    color: var(--gt-primary) !important;
    font-size: 18px !important;
    padding-top: 2px !important;
}

#goodtrash-scheduler-app .gt-review-footer-stack {
    margin-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    position: relative !important;
    z-index: 5 !important;
}

#goodtrash-scheduler-app .gt-review-footer-stack .gt-review-footer-card {
    margin-top: 0 !important;
}

#goodtrash-scheduler-app .gt-review-footer-card {
    margin-top: 20px !important;
    background: rgba(159, 179, 110, 0.10) !important;
    border: 2px solid rgba(159, 179, 110, 0.55) !important;
    border-radius: 10px !important;
    padding: 18px !important;
    display: grid !important;
    grid-template-columns: 1.4fr 0.6fr !important;
    align-items: center !important;
    gap: 18px !important;
    position: relative !important;
    z-index: 5 !important;
}

#goodtrash-scheduler-app .gt-review-footer-message,
#goodtrash-scheduler-app .gt-review-footer-cta {
    position: relative !important;
    z-index: 6 !important;
}

#goodtrash-scheduler-app .gt-review-agreement-heading {
    margin: 0 0 10px 0 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: var(--gt-text-dark) !important;
    line-height: 1.25 !important;
}

#goodtrash-scheduler-app .gt-review-footer-message p {
    margin: 0 0 6px 0 !important;
    color: rgba(49, 63, 12, 0.92) !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

#goodtrash-scheduler-app .gt-review-footer-message p:last-child {
    margin-bottom: 0 !important;
}

#goodtrash-scheduler-app .gt-review-footer-cta {
    display: flex !important;
    justify-content: flex-end !important;
}

#goodtrash-scheduler-app .gt-docusign-review-cta {
    align-items: center !important;
    min-height: 56px !important;
}

#goodtrash-scheduler-app .gt-docusign-signed-badge-img {
    max-height: 56px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
}

#goodtrash-scheduler-app #gt-submit-request.gt-btn-primary,
#goodtrash-scheduler-app #gt-review-sign-agreement.gt-btn-primary {
    width: 260px !important;
    height: 56px !important;
    font-size: 16px !important;
    letter-spacing: 0.06em !important;
    line-height: 1 !important;
}

/* Review actions */
#goodtrash-scheduler-app .gt-review-actions {
    display: flex !important;
    gap: 10px !important;
    margin-top: 12px !important;
}

#goodtrash-scheduler-app .gt-review-link {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 0.06em !important;
}

#goodtrash-scheduler-app .gt-review-addon-chip {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: 1px solid rgba(159, 179, 110, 0.55) !important;
    border-radius: 999px !important;
    padding: 6px 10px !important;
    margin: 6px 8px 0 0 !important;
    background: rgba(159, 179, 110, 0.08) !important;
}

#goodtrash-scheduler-app .gt-review-addon-remove {
    position: relative !important;
    z-index: 30 !important;
    flex-shrink: 0 !important;
    min-width: 32px !important;
    min-height: 32px !important;
    padding: 0 6px !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    background: transparent !important;
    border: none !important;
    color: rgba(49, 63, 12, 0.7) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-review-signature {
    margin-top: 18px !important;
}

#goodtrash-scheduler-app .gt-review-image {
    margin-top: 18px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid rgba(159, 179, 110, 0.55) !important;
}

#goodtrash-scheduler-app .gt-review-image img {
    width: 100% !important;
    display: block !important;
    height: auto !important;
}

/* ============================================================
   STEP 5: CONFIRMATION (THANK YOU) — single card, mockup colors
   ============================================================ */

/* Thank-you view: hide outer scheduler “frame” so only one beige card shows */
#goodtrash-scheduler-app .gt-scheduler-container:has(#gt-step-5:not(.gt-hidden)) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: min(100%, 1180px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0 !important;
}

#goodtrash-scheduler-app.gt-step-5-active .gt-scheduler-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: min(100%, 1180px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0 !important;
}

#goodtrash-scheduler-app .gt-confirmation {
    width: 100% !important;
    max-width: 100% !important;
    background: #f2f2e6 !important;
    border: 2px solid #9fb36e !important;
    border-radius: 26px !important;
    padding: 48px 48px 44px !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
}

#goodtrash-scheduler-app .gt-confirmation-hero {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

#goodtrash-scheduler-app #gt-step-5 .gt-confirmation-hero .gt-main-heading {
    font-size: clamp(40px, 6vw, 56px) !important;
    letter-spacing: 0.04em !important;
    margin: 0 0 12px 0 !important;
    color: #6b8e23 !important;
}

#goodtrash-scheduler-app .gt-confirmation-subtitle {
    margin: 0 0 28px 0 !important;
    font-size: clamp(15px, 2vw, 18px) !important;
    font-weight: 800 !important;
    color: #6b8e23 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    line-height: 1.3 !important;
}

/* Progress: pill with light-olive outer ring → white gap → green fill (mockup) */
#goodtrash-scheduler-app #gt-step-5 .gt-confirmation-progress-track {
    width: 100% !important;
    max-width: min(920px, 92%) !important;
    min-width: 260px !important;
    margin: 0 auto !important;
    height: 34px !important;
    box-sizing: border-box !important;
    padding: 3px !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    border: 2px solid #c4d577 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

#goodtrash-scheduler-app #gt-step-5 .gt-confirmation-progress-track .gt-progress-bar {
    height: 100% !important;
    min-height: 0 !important;
    border-radius: 999px !important;
    background: #6b8e23 !important;
    width: 100% !important;
}

#goodtrash-scheduler-app .gt-confirmation-what-next {
    margin-top: 40px !important;
    padding-top: 0 !important;
    text-align: center !important;
    border: none !important;
}

#goodtrash-scheduler-app .gt-confirmation-what-next h2 {
    margin: 0 0 28px 0 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #333333 !important;
    letter-spacing: 0.02em !important;
}

#goodtrash-scheduler-app .gt-confirmation-icons {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px 16px !important;
    align-items: start !important;
}

#goodtrash-scheduler-app .gt-confirmation-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
}

#goodtrash-scheduler-app .gt-confirmation-item img {
    width: 56px !important;
    height: 56px !important;
    display: block !important;
    flex-shrink: 0 !important;
}

#goodtrash-scheduler-app .gt-confirmation-item p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #333333 !important;
    max-width: 200px !important;
    font-weight: 500 !important;
}

#goodtrash-scheduler-app .gt-confirmation-help {
    margin-top: 40px !important;
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    color: #333333 !important;
}

#goodtrash-scheduler-app .gt-confirmation-call {
    margin-top: 18px !important;
    display: flex !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-confirmation-call-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 0 36px !important;
    border-radius: 999px !important;
    background: #6b8e23 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    border: none !important;
}

#goodtrash-scheduler-app .gt-confirmation-call-btn:hover {
    background: #5a7a1d !important;
    color: #ffffff !important;
}

/* Review step: quantity controls styled to match product cards */
#goodtrash-scheduler-app .gt-review-qty-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 6px !important;
}

#goodtrash-scheduler-app .gt-review-qty-selector {
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    border: 1.5px solid var(--gt-border) !important;
    border-radius: 4px !important;
    background: var(--gt-white) !important;
    min-width: 78px !important;
    overflow: hidden !important;
}

#goodtrash-scheduler-app .gt-review-qty-btn {
    width: 24px !important;
    height: 100% !important;
    background: rgba(159, 179, 110, 0.18) !important;
    border: none !important;
    color: var(--gt-primary) !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-review-qty-input {
    width: 28px !important;
    flex: 0 0 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    border: none !important;
    border-left: 1.5px solid var(--gt-border) !important;
    border-right: 1.5px solid var(--gt-border) !important;
    text-align: center !important;
    font-weight: 700 !important;
    background: var(--gt-white) !important;
    color: var(--gt-text-dark) !important;
    font-size: 13px !important;
    display: block !important;
    outline: none !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
}

#goodtrash-scheduler-app .gt-review-qty-input::-webkit-outer-spin-button,
#goodtrash-scheduler-app .gt-review-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

#goodtrash-scheduler-app .gt-review-qty-input[type="number"] {
    -moz-appearance: textfield !important;
}

/* Mobile Responsiveness - Unstacked Preference */
@media (max-width: 1280px) {
    #goodtrash-scheduler-app .gt-scheduler-container {
        width: 100% !important;
        margin: 0 !important;
        padding: 40px 20px !important;
    }
}

@media (max-width: 800px) {

    /* User prefers NOT stacked on mobile */
    #goodtrash-scheduler-app .gt-details-grid {
        grid-template-columns: 1fr 1fr !important;
        /* KEEP 2 COLUMNS */
        gap: 15px !important;
    }

    #goodtrash-scheduler-app .gt-step-header-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    #goodtrash-scheduler-app .gt-progress-bar-container {
        width: 100% !important;
    }

    #goodtrash-scheduler-app .gt-actions-row {
        flex-direction: row !important;
        /* KEEP SIDE BY SIDE */
        justify-content: space-between !important;
        gap: 10px !important;
    }

    #goodtrash-scheduler-app .gt-btn-primary {
        width: 48% !important;
        /* SPREAD PILLS */
        min-width: 140px !important;
        font-size: 16px !important;
        /* SLIGHTLY SMALLER FOR MOBILE BOARDS */
    }

    /* Step 1 three-column row: stack on narrow screens */
    #goodtrash-scheduler-app .gt-main-selectors .gt-form-row.gt-step1-top-row {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    #goodtrash-scheduler-app .gt-main-selectors .gt-form-row.gt-step1-top-row .gt-form-group {
        width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
    }

    /* Step 3: BUILD YOUR SERVICE PLAN — stack for mobile */
    #goodtrash-scheduler-app .gt-service-selector {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    #goodtrash-scheduler-app .gt-service-btn {
        width: 100% !important;
        height: 64px !important;
        font-size: 15px !important;
    }

    #goodtrash-scheduler-app .gt-product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    #goodtrash-scheduler-app .gt-product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    #goodtrash-scheduler-app .gt-form-grid {
        grid-template-columns: 1fr 1fr !important;
        /* UNSTACKED AS PER USER PREFERENCE */
    }

    #goodtrash-scheduler-app .gt-review-grid {
        grid-template-columns: 1fr !important;
    }

    #goodtrash-scheduler-app .gt-review-footer-card {
        grid-template-columns: 1fr !important;
    }

    #goodtrash-scheduler-app .gt-review-footer-stack .gt-review-footer-cta,
    #goodtrash-scheduler-app .gt-review-footer-cta {
        justify-content: flex-start !important;
    }

    /* Restore rounded outer frame on mobile so review card container is not straight-edged */
    #goodtrash-scheduler-app .gt-scheduler-container {
        border-radius: 15px !important;
    }

    #goodtrash-scheduler-app .gt-confirmation {
        padding: 36px 22px 32px !important;
        border-radius: 22px !important;
    }

    #goodtrash-scheduler-app .gt-confirmation-icons {
        grid-template-columns: 1fr 1fr !important;
    }

    #goodtrash-scheduler-app #gt-step-5 .gt-confirmation-hero .gt-main-heading {
        font-size: 40px !important;
    }

    #goodtrash-scheduler-app #gt-step-5 .gt-confirmation-progress-track {
        max-width: 92% !important;
        height: 30px !important;
    }
}

@media (max-width: 480px) {
    #goodtrash-scheduler-app .gt-btn-primary {
        font-size: 14px !important;
    }
}

/* Frequency blurb — min 14px */
#goodtrash-scheduler-app .gt-freq-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(49, 63, 12, 0.88) !important;
}

/* Not Sure panel below products (replaces main Back/Next only) */
#goodtrash-scheduler-app #gt-step3-not-sure-panel:not(.gt-hidden) {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 2px solid rgba(159, 179, 110, 0.4) !important;
}

#goodtrash-scheduler-app .gt-step3-not-sure-panel .gt-not-sure-grid {
    grid-template-columns: 1fr 1fr !important;
}

/* Google Places Autocomplete suggestions above modals / sticky UI */
.pac-container {
    z-index: 100050 !important;
    font-family: inherit !important;
}

#goodtrash-scheduler-app .gt-price-strike {
    text-decoration: line-through !important;
    opacity: 0.72 !important;
    margin-right: 0.25em !important;
}

#goodtrash-scheduler-app .gt-sale-price {
    font-weight: 600 !important;
    color: var(--gt-text-dark) !important;
}

#goodtrash-scheduler-app .gt-sale-badge {
    display: inline-block !important;
    margin-right: 0.5em !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(49, 63, 12, 0.9) !important;
}

#goodtrash-scheduler-app .gt-review-service-price {
    margin-top: 6px !important;
    font-size: 14px !important;
}

#goodtrash-scheduler-app .gt-dim-row {
    font-size: 14px !important;
    margin: 0.35em 0 0 !important;
}

#goodtrash-scheduler-app .gt-estimate-legal-block,
#goodtrash-scheduler-app .gt-estimate-after-monthly {
    margin-top: 12px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(49, 63, 12, 0.88) !important;
}

#goodtrash-scheduler-app .gt-btn-icon {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

#goodtrash-scheduler-app .gt-btn-icon .gt-btn-icon-inner {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#goodtrash-scheduler-app .gt-btn-secondary {
    background: #ffffff !important;
    color: var(--gt-text-dark) !important;
    border: 1.5px solid rgba(159, 179, 110, 0.85) !important;
}

/* Secondary pill: keep text readable on hover (dark background) */
#goodtrash-scheduler-app .gt-btn-secondary:hover {
    color: #ffffff !important;
}
