/* WIZARD ANIMATIONS & CORE */
@keyframes wizardFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes wizardFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

.wizard-section {
    padding: 6rem 0 10rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Glassmorphic Container */
.wizard-container {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 4rem;
    padding-bottom: 8rem;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

/* Steps logic */
.wizard-step {
    display: none;
    animation: wizardFadeInUp 0.6s var(--ease-out-back) forwards;
}
.wizard-step.is-active {
    display: block;
}
.wizard-step.is-exiting {
    display: block;
    animation: wizardFadeOut 0.4s ease forwards;
}

.wizard-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.wizard-header h2 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 600; /* Bolder for Montserrat to maintain hierarchy */
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}
.wizard-header p {
    color: var(--text-muted);
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* BIG TILES - STEP 1 & 2 */
.wizard-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.wizard-tile {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(20, 20, 20, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-back);
    position: relative;
    overflow: hidden;
}

.wizard-tile:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.wizard-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212,175,55,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.wizard-tile:hover::before {
    opacity: 1;
}

.wizard-tile svg {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 2rem;
    transition: transform 0.4s var(--ease-out-back);
}
.wizard-tile:hover svg {
    transform: scale(1.1);
}

.wizard-tile h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}
.wizard-tile p {
    color: var(--text-muted);
    font-size: 1.4rem;
}


/* PACKAGE TILES REDESIGN */
.wizard-packages-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 2rem;
}

.package-tile {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.7), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.2rem;
    align-items: center;
    text-align: left;
}

.package-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), transparent 50%, rgba(212, 175, 55, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 15px rgba(212, 175, 55, 0.05);
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.95));
}
.package-tile:hover::after {
    opacity: 1;
}

.package-tile.selected {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(15, 15, 15, 0.9));
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--gold-gradient, linear-gradient(135deg, #d4af37, #b8941f));
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    white-space: nowrap;
    z-index: 10;
}

.package-visits {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.package-visits span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Package Prices (Old / New) */
.package-prices {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.package-price-old {
    position: relative;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.35);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: inline-block;
}

.package-price-old .strike-line {
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    height: 2px;
    background: #e74c3c;
    transform: translateY(-50%) rotate(-4deg);
    transform-origin: left;
    width: 0;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

.wizard-step.is-active .package-price-old .strike-line {
    animation: wizardStrikeAnim 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards;
}

@keyframes wizardStrikeAnim {
    from { width: 0; opacity: 0; }
    to { width: 120%; opacity: 1; }
}

.package-price-new {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-light, #f3e5ab);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.package-discount {
    margin-top: 1rem;

    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.package-savings-amount {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.package-savings-amount strong {
    font-size: 1.8rem;
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
    font-weight: 700;
    letter-spacing: 0;
}
.wizard-back {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}
.wizard-back:hover {
    color: #fff;
}
.wizard-back svg {
    width: 16px;
    height: 16px;
}

#step-contact {
    text-align: center;
}
#step-contact .btn {
    margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .wizard-container {
        padding: 3rem 2rem;
        border-radius: 12px;
    }
    .wizard-tiles-grid {
        grid-template-columns: 1fr;
    }
    .wizard-header h2 {
        font-size: 2.8rem;
    }
}

/* B2B STYLES */
.b2b-size-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}
.size-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    font-size: 3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.size-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: scale(1.05);
}
.sc-image {
    width: 75px;
    height: 75px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}
.sc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover .sc-image {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}
.service-card:hover .sc-image img {
    transform: scale(1.1);
}
.sc-content h3 {
    text-align: center;
}

/* Image-only Tiles for Step 2 */
.image-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
}
.image-only-tile {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    border: 4px solid #ffffff;
    background: transparent;
    width: 100%;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.image-only-tile img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.image-only-tile.selected {
    border-color: var(--gold) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}
.image-only-tile:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .image-tiles-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.size-display {
    text-align: center;
    min-width: 120px;
}
.size-display span {
    display: block;
    font-size: 7rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}
.size-display small {
    display: block;
    font-size: 1.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* B2B Discount Tracker */
.b2b-discount-tracker {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.b2b-discount-tracker.has-discount {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(20, 20, 20, 0.5));
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1.6rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.b2b-discount-tracker.has-discount .discount-badge {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.discount-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.b2b-discount-tracker.has-discount .discount-icon {
    color: var(--gold);
}

.discount-texts {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.discount-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.b2b-discount-tracker.has-discount .discount-value {
    color: var(--gold-light);
}

.discount-lbl {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.discount-hint {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.discount-hint strong {
    color: var(--gold);
    font-weight: 600;
}

.b2b-bulk-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
}
.bulk-label {
    font-weight: 600;
    color: var(--text-light);
    margin-right: 1rem;
}
.bulk-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-muted);
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.bulk-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.b2b-employees-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1.5rem;
}
/* custom scrollbar for list */
.b2b-employees-list::-webkit-scrollbar { width: 6px; }
.b2b-employees-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.b2b-employees-list::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.4); border-radius: 10px; }

.b2b-employee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    transition: background 0.3s ease;
}
.b2b-employee-row:hover {
    background: rgba(255, 255, 255, 0.05);
}
.b2b-employee-name {
    font-weight: 600;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.b2b-employee-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
}
.b2b-service-select {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}
.b2b-service-select:focus {
    border-color: var(--gold);
}

/* CHECKOUT STEP STYLES */
.co-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .co-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.co-summary-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}

.co-summary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.co-summary-card h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

/* Micro-dopamine Form Validation UI */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.validation-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4ade80;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
    z-index: 5;
    pointer-events: none;
}
.checkout-input.is-valid {
    border-color: #4ade80 !important;
    background: rgba(74, 222, 128, 0.03);
}
.checkout-input.is-valid + .validation-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.input-phone .checkout-input {
    padding-left: 9rem;
}
.phone-prefix-select {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    font-weight: 600;
    z-index: 10;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 1.2rem;
}
.phone-prefix-select option {
    background: #1a1a1a;
    color: #fff;
}

.nip-status {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.nip-status.loading { color: var(--gold); }
.nip-status.success { color: #4ade80; }
.nip-status.error { color: #e74c3c; }

.co-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

.co-sum-lbl {
    color: var(--text-muted);
}

.co-sum-val {
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

.co-sum-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.co-sum-savings .co-sum-lbl {
    color: #4ade80;
}

.co-sum-savings .co-sum-val {
    color: #4ade80;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.co-sum-total {
    margin-top: 1.5rem;
}

.co-sum-total .co-sum-lbl {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}

.co-sum-total .co-sum-val {
    font-size: 2.8rem;
    color: var(--gold-light);
    font-weight: 800;
}

.co-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.co-secure-note svg {
    width: 16px;
    height: 16px;
    color: #4ade80;
}

/* CLASSY HERO */
.premium-hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem) !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
    line-height: 1.1 !important;
    margin-bottom: 2rem;
    text-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.premium-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: none;
}
.premium-eyebrow::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient, var(--gold));
    margin: 1.5rem auto 0;
}

/* --- WIZARD TOP BAR & MODULAR PROGRESS --- */
.wizard-top-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}
.wtb-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wtb-step-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.wtb-progress-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}
.wtb-progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    width: 0%;
    border-radius: 4px;
    transition: width 0.4s ease-out;
}

/* --- STICKY CART --- */
.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}
.scart-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.scart-service {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.scart-package {
    font-size: 1.3rem;
    color: var(--gold);
}
.scart-action {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.scart-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

@media (max-width: 600px) {
    .scart-price { font-size: 1.6rem; }
    .scart-service { font-size: 1.2rem; }
    .scart-action { gap: 1rem; }
    .sticky-cart { padding: 1.2rem 1rem; }
    #scart-btn-next { padding: 0.8rem 1.6rem !important; }
}

/* --- PRICING CONTEXT PILLS --- */
.pricing-context-pill {
    margin-top: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(212,175,55,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(212,175,55,0.2);
}
.pricing-context-pill.b2b-context {
    color: #4ade80;
    background: rgba(74,222,128,0.1);
    border-color: rgba(74,222,128,0.2);
}
.service-pricing-context {
    padding: 1.2rem 1rem;
    text-align: center;
    background: rgba(20,20,20,0.9);
    border-top: 1px solid rgba(212,175,55,0.2);
}
.spc-price {
    display: block;
    color: #ccc;
    font-size: 1.3rem;
}
.spc-price strong {
    color: var(--gold);
    font-size: 1.5rem;
}

/* --- HIERARCHY FOR PACKAGE TILES --- */
.pkg-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bestseller-hint { 
    grid-column: 1 / -1;
    color: var(--gold);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: italic;
    border-bottom: 1px dashed rgba(212,175,55,0.2);
    padding-bottom: 0.8rem;
}

.package-price-per-visit {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0 0 0.4rem 0;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    justify-content: center;
}
.ppv-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #aaa;
    margin-left: 0;
}
.package-total-prices {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    border: none;
    flex-wrap: wrap;
    justify-content: center;
}
.pt-new {
    font-size: 1.3rem;
    font-weight: 600;
    color: #eee;
}
.pt-old {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-color: #e74c3c;
}
.package-savings-amount {
    color: #4ade80 !important;
    font-weight: 700;
    text-align: right;
    font-size: 1.1rem;
    line-height: 1.2;
}
.package-savings-amount strong {
    font-size: 1.6rem;
    display: block;
    margin-left: 0;
    margin-top: 0.2rem;
}

/* --- MICRO-DOPAMINE UI ELEMENTS --- */
@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes breathingGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important; transform: scale(1); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.8), 0 0 15px rgba(255,255,255,0.4) !important; transform: scale(1.02); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important; transform: scale(1); }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: shimmer 2s infinite;
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 0 12px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.4);
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
}

.package-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 30px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite 1s;
}

#btn-payu-submit {
    margin-top: 1rem;
    font-size: 1.8rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--gold);
    color: var(--gold);
    animation: breathingGlow 3s infinite ease-in-out;
}

#btn-payu-submit:hover {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    animation: none;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6) !important;
    transform: translateY(-2px);
}

.wizard-tile:active, .package-tile:active, .btn-primary:active, .image-only-tile:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease !important;
}

.validation-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4ade80;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.5);
    z-index: 15;
    pointer-events: none;
}

/* B2B Testimonials Slider */
.b2b-testimonials-slider {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    margin-top: 4rem;
}
.b2b-testimonial-item {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
}
.b2b-testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}
.b2b-testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}
.b2b-testimonial-author {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 700;
}
.b2b-testimonial-meta {
    font-size: 1.15rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}
