#stretch-promo-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.25s ease;
}

#stretch-promo-modal-backdrop.stretch-modal-hidden {
    display: none;
    opacity: 0;
}

#stretch-promo-modal {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: stretchModalSlideIn 0.3s ease;
}

@keyframes stretchModalSlideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.stretch-modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stretch-modal-header h3 {
    margin: 0;
    font-size: 1.7rem; /* Much larger title */
    font-weight: 700; /* Extra bold */
}

.stretch-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    color: #666;
}

.stretch-modal-body {
    padding: 20px;
}

.stretch-modal-desc {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 1.25rem; /* Noticeably larger body text */
    color: #333; /* Slightly darker for better contrast */
    line-height: 1.6;
}

.stretch-form-group {
    margin-bottom: 22px; /* Extra breathing room between fields */
}

.stretch-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.25rem; /* Huge labels */
}

.stretch-form-group select {
    width: 100%;
    padding: 14px 16px; /* Much taller dropdown boxes for easy tapping */
    border: 2px solid #ccc; /* Thicker border for better visibility */
    border-radius: 6px;
    font-size: 1.25rem; /* Big, clear dropdown text */
}

.stretch-modal-footer {
    padding: 12px 20px;
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

.stretch-modal-error-msg {
    color: #d63638;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* --- BEAUTIFUL CART ROW STYLES --- */

.stretch-free-band-row {
    background-color: #f6fcf8 !important; /* Very subtle green background */
    border-left: 4px solid #0f834d;
}

.stretch-free-badge {
    display: inline-block;
    background-color: #0f834d;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.stretch-band-meta {
    margin: 2px 0;
    font-size: 0.9em;
    color: #444;
}

.stretch-strike-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.9em;
}

.stretch-locked-qty {
    display: inline-block;
    background: #eeeeee;
    padding: 8px 15px;
    border-radius: 4px;
    color: #555;
    font-weight: 600;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

/* --- MODAL CLAIM BUTTON STYLES --- */
#stretch-promo-claim-btn {
    display: inline-block;
    background-color: #EF1A65 !important;
    border: 2px solid #EF1A65 !important;
    border-radius: 200px !important;
    color: #ffffff !important;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    font-size: 16px; /* Increased from 14px */
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 26px !important; /* Slightly increased padding to match larger text */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out !important;
    text-align: center;
}

#stretch-promo-claim-btn:hover {
    background-color: #ffffff !important;
    color: #EF1A65 !important;
}

/* Optional: Make it look slightly faded when it says "Adding..." */
#stretch-promo-claim-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Make it full width on mobile devices for easier tapping */
@media (max-width: 600px) {
    #stretch-promo-claim-btn {
        width: 100% !important;
        box-sizing: border-box;
        padding: 12px 0 !important;
    }
}


/* --- POLITE FLOATING NOTICE STYLES --- */

#stretch-promo-floating-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #ffffff;
    border-left: 4px solid #0f834d;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 
                0 4px 8px rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 99998;
    padding: 16px 20px;
    max-width: 440px;
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
}

#stretch-promo-floating-notice.stretch-notice-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Desktop: Clean Horizontal Layout */
.stretch-notice-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stretch-notice-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.stretch-notice-text {
    display: flex;
    flex-direction: column;
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.4;
    flex-grow: 1;
}

.stretch-notice-text strong {
    color: #0f834d;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

#stretch-trigger-modal-btn {
    display: inline-block;
    background-color: #EF1A65;
    border: 2px solid #EF1A65;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 18px !important;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out !important;
    flex-shrink: 0;
    text-align: center;
}

#stretch-trigger-modal-btn:hover {
    background-color: #ffffff;
    color: #EF1A65 !important;
}

/* --- MOBILE RESPONSIVE (STACKED CARD) --- */

@media (max-width: 600px) {
    #stretch-promo-floating-notice {
        left: 45px !important;
        right: 16px !important;
        bottom: 16px !important;
        max-width: calc(100vw - 50px) !important;
        width: auto !important;
        padding: 14px 16px !important;
        border-radius: 12px;
    }

    .stretch-notice-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 12px;
        align-items: center;
    }

    .stretch-notice-icon {
        grid-column: 1;
        grid-row: 1;
        font-size: 26px;
        align-self: center;
    }

    .stretch-notice-text {
        grid-column: 2;
        grid-row: 1;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .stretch-notice-text strong {
        font-size: 0.95rem;
    }

    #stretch-trigger-modal-btn {
        grid-column: 1 / -1; /* Spans full width across the bottom */
        grid-row: 2;
        width: 100% !important;
        padding: 10px 0 !important;
        font-size: 14px;
        box-sizing: border-box;
    }
}