/* ============================================================================
   APPARENT MEDICO PVT LTD — Premium Enhancement CSS
   Layered on top of the compiled Tailwind stylesheet (style.css)
   Import order: style.css → premium.css
   ============================================================================ */

/* ------------------------------------------------------------------ */
/* 1. PAGE LOAD PROGRESS BAR                                           */
/* ------------------------------------------------------------------ */
#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D4A017, #F5A623, #E8772E);
    z-index: 9999;
    transition: width 0.25s ease;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

/* ------------------------------------------------------------------ */
/* 2. SCROLL REVEAL ANIMATIONS                                         */
/* ------------------------------------------------------------------ */
/* Base hidden state — JS adds .visible when element enters viewport */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* State added by IntersectionObserver */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

/* Stagger delay helpers */
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

/* ------------------------------------------------------------------ */
/* 3. PARTICLE CANVAS OVERLAY (hero background layer)                 */
/* ------------------------------------------------------------------ */
#particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ------------------------------------------------------------------ */
/* 4. HERO SECTION OVERRIDES                                           */
/* ------------------------------------------------------------------ */
.hero-section {
    background: linear-gradient(135deg, #0e0e0c 0%, #1C1C1A 55%, #1a1400 100%);
    position: relative;
    overflow: hidden;
}
/* Decorative radial halo behind the product float cards */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center,
        rgba(245, 166, 35, 0.07) 0%,
        rgba(232, 119, 46, 0.03) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ------------------------------------------------------------------ */
/* 5. GRADIENT TEXT UTILITY                                            */
/* ------------------------------------------------------------------ */
.text-gradient-gold {
    background: linear-gradient(135deg, #D4A017 0%, #F5A623 50%, #E8772E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ------------------------------------------------------------------ */
/* 6. SECTION LABEL DECORATOR                                          */
/* ------------------------------------------------------------------ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8772E;
}
.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #D4A017, #F5A623);
    border-radius: 1px;
    flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* 7. ANIMATED STAT COUNTER                                            */
/* ------------------------------------------------------------------ */
.counter-number {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}
.stat-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(28, 28, 26, 0.1);
}

/* ------------------------------------------------------------------ */
/* 8. PREMIUM PRODUCT CARD                                             */
/* ------------------------------------------------------------------ */
.card-premium {
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.3s ease !important;
}

/* Illustration lifts on card hover */
.product-card:hover .card-illus {
    transform: translateY(-8px) scale(1.06);
}

/* Glow brightens on hover */
.product-card:hover .card-glow {
    opacity: 1.4;
}

/* Shimmer sweep on hover */
.product-card:hover .card-shimmer {
    opacity: 1;
    animation: card-sweep 0.7s ease forwards;
}
@keyframes card-sweep {
    from { transform: translateX(-100%); }
    to   { transform: translateX(200%); }
}

/* Illustration transition base */
.card-illus {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Smooth card glow transition */
.card-glow {
    transition: opacity 0.4s ease;
}

/* ------------------------------------------------------------------ */
/* 9. MOBILE MENU SMOOTH ANIMATION                                     */
/* ------------------------------------------------------------------ */
#mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* Uses max-height trick for smooth collapse/expand */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    /* Override Tailwind hidden when using JS toggle */
}
#mobile-menu.menu-open {
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    opacity: 1;
}
/* Remove the base hidden class management — JS handles display via menu-open */

/* ------------------------------------------------------------------ */
/* 10. CUSTOM SCROLLBAR                                                */
/* ------------------------------------------------------------------ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #F2F1EC; }
::-webkit-scrollbar-thumb {
    background: #D0CEC5;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: #F5A623; }

/* ------------------------------------------------------------------ */
/* 11. GLASSMORPHISM CARD                                              */
/* ------------------------------------------------------------------ */
.glass-card {
    background: rgba(251, 250, 247, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 166, 35, 0.15);
}

/* ------------------------------------------------------------------ */
/* 12. CATEGORY CARD GOLD BOTTOM BAR                                  */
/* ------------------------------------------------------------------ */
.cat-card {
    position: relative;
    overflow: hidden;
}
.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4A017, #F5A623, #E8772E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover::after { transform: scaleX(1); }

/* ------------------------------------------------------------------ */
/* 13. FLOATING LABEL INPUTS (on auth pages)                          */
/* ------------------------------------------------------------------ */
.fl-wrapper { position: relative; }

.fl-wrapper input,
.fl-wrapper textarea,
.fl-wrapper select {
    padding-top: 1.5rem;
    padding-bottom: 0.45rem;
    padding-left: 0.875rem;
    width: 100%;
    background: #F2F1EC;
    border: 1.5px solid #E5E3DC;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #1C1C1A;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.fl-wrapper textarea {
    padding-top: 1.8rem;
    resize: vertical;
    min-height: 90px;
}
.fl-wrapper label {
    position: absolute;
    top: 50%;
    left: 0.875rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: rgba(43, 43, 43, 0.55);
    pointer-events: none;
    transition: all 0.22s ease;
    font-weight: 400;
    white-space: nowrap;
}
.fl-wrapper textarea ~ label { top: 1.1rem; transform: none; }

/* Float label up when focused or has value */
.fl-wrapper input:focus ~ label,
.fl-wrapper input:not(:placeholder-shown) ~ label,
.fl-wrapper textarea:focus ~ label,
.fl-wrapper textarea:not(:placeholder-shown) ~ label,
.fl-wrapper select:focus ~ label,
.fl-wrapper select.has-value ~ label {
    top: 0.55rem;
    transform: none;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #D4A017;
}

.fl-wrapper input:focus,
.fl-wrapper textarea:focus,
.fl-wrapper select:focus {
    border-color: #F5A623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
    background: #FBFAF7;
}

/* Password visibility toggle button inside fl-wrapper */
.fl-wrapper .pw-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(43, 43, 43, 0.4);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}
.fl-wrapper .pw-toggle:hover { color: #1C1C1A; }

/* ------------------------------------------------------------------ */
/* 14. PASSWORD STRENGTH METER                                         */
/* ------------------------------------------------------------------ */
.pw-strength-track {
    height: 3px;
    background: #E5E3DC;
    border-radius: 2px;
    overflow: hidden;
}
.pw-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.4s ease, background-color 0.3s ease;
}
.pw-strength-fill.weak   { width: 33%; background: #DC2626; }
.pw-strength-fill.medium { width: 66%; background: #D97706; }
.pw-strength-fill.strong { width: 100%; background: #1F7A4D; }

/* ------------------------------------------------------------------ */
/* 15. RANGE SLIDER CUSTOM THUMB                                       */
/* ------------------------------------------------------------------ */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #E5E3DC;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E8772E;
    border: 2px solid #FBFAF7;
    box-shadow: 0 2px 8px rgba(232, 119, 46, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 2px 14px rgba(232, 119, 46, 0.65);
}

/* ------------------------------------------------------------------ */
/* 16. BACK-TO-TOP BUTTON                                              */
/* ------------------------------------------------------------------ */
#back-to-top {
    position: fixed;
    bottom: 7rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: #1C1C1A;
    color: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 45;
    border: 1px solid rgba(245, 166, 35, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
#back-to-top.btt-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    background: #F5A623;
    color: #1C1C1A;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

/* ------------------------------------------------------------------ */
/* 17. TESTIMONIAL CARDS                                               */
/* ------------------------------------------------------------------ */
.testimonial-card {
    background: #FBFAF7;
    border: 1px solid #E5E3DC;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(28, 28, 26, 0.045);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    font-family: 'Fraunces', serif;
    color: rgba(245, 166, 35, 0.15);
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(28, 28, 26, 0.09);
}

/* ------------------------------------------------------------------ */
/* 18. PREMIUM DIVIDER                                                 */
/* ------------------------------------------------------------------ */
.divider-premium {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.4), transparent);
    margin: 0;
}

/* ------------------------------------------------------------------ */
/* 19. STATUS BADGE PULSE (approved dealers)                           */
/* ------------------------------------------------------------------ */
@keyframes status-ring {
    0%   { box-shadow: 0 0 0 0   rgba(31, 122, 77, 0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(31, 122, 77, 0);   }
    100% { box-shadow: 0 0 0 0   rgba(31, 122, 77, 0);   }
}
.badge-approved { animation: status-ring 2.5s infinite; }

/* ------------------------------------------------------------------ */
/* 20. SEARCH OVERLAY                                                  */
/* ------------------------------------------------------------------ */
#search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 12, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#search-overlay.so-open {
    opacity: 1;
    visibility: visible;
}
#search-overlay input {
    width: 100%;
    max-width: 620px;
    background: rgba(251, 250, 247, 0.07);
    border: 1.5px solid rgba(245, 166, 35, 0.3);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    color: #FBFAF7;
    font-size: 1.15rem;
    outline: none;
    transition: border-color 0.25s ease;
}
#search-overlay input:focus { border-color: #F5A623; }
#search-overlay input::placeholder { color: rgba(251, 250, 247, 0.35); }
#search-results {
    width: 100%;
    max-width: 620px;
    margin-top: 0.75rem;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #FBFAF7;
    text-decoration: none;
    transition: background 0.2s ease;
}
.search-result-item:hover { background: rgba(245, 166, 35, 0.12); }

/* ------------------------------------------------------------------ */
/* 21. TOAST NOTIFICATION ENHANCED                                     */
/* ------------------------------------------------------------------ */
#toast-container {
    position: fixed;
    bottom: 6rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 22rem;
    pointer-events: none;
    z-index: 9998;
}
.toast-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    background: #1C1C1A;
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: 10px;
    color: #FBFAF7;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    pointer-events: auto;
    transform: translateX(-110%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease;
}
.toast-message.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* 22. DASHBOARD STAT CARDS                                            */
/* ------------------------------------------------------------------ */
.dash-stat {
    background: #FBFAF7;
    border: 1px solid #E5E3DC;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dash-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(28, 28, 26, 0.08);
}
.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

/* ------------------------------------------------------------------ */
/* 23. PREMIUM TABLE HEADER                                            */
/* ------------------------------------------------------------------ */
.premium-thead th {
    background: #1C1C1A;
    color: #FBFAF7;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.9rem 1rem;
}
.premium-thead th:first-child { border-radius: 8px 0 0 0; }
.premium-thead th:last-child  { border-radius: 0 8px 0 0; }

/* ------------------------------------------------------------------ */
/* 24. FAQ / ACCORDION (product tabs)                                  */
/* ------------------------------------------------------------------ */
.tab-content {
    animation: fadeSlide 0.35s ease forwards;
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------ */
/* 25. PRODUCT IMAGE ZOOM ON HOVER                                     */
/* ------------------------------------------------------------------ */
.img-zoom-wrap {
    overflow: hidden;
    border-radius: 8px;
}
.img-zoom-wrap img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-zoom-wrap:hover img { transform: scale(1.12); }

/* ------------------------------------------------------------------ */
/* 26. WHATSAPP FAB PULSE                                              */
/* ------------------------------------------------------------------ */
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    60%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}
.whatsapp-fab { animation: wa-pulse 2.8s ease-in-out infinite; }

/* ------------------------------------------------------------------ */
/* 27. PREMIUM BG TEXTURE (replaces old grid — luxury radial glow)    */
/* ------------------------------------------------------------------ */

/* Subtle noise grain for texture depth — no grid lines */
.bg-grid {
    background-image: none; /* grid removed — handled by ::before on hero-section */
}

/* Hero section gets a luxury layered radial glow instead of grid */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Warm gold glow bottom-left, cool deep glow top-right */
    background:
        radial-gradient(ellipse 70% 55% at 15% 90%, rgba(245, 166, 35, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 85% 10%, rgba(232, 119, 46, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(28, 28, 26, 0.0) 0%, transparent 100%);
}

/* Page banner headers (products, cart, dashboard) get a minimal grain */
.bg-anchor::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
}

/* ------------------------------------------------------------------ */
/* 28. SPLIT AUTH LAYOUT                                               */
/* ------------------------------------------------------------------ */
.auth-left {
    background: linear-gradient(160deg, #111111 0%, #1C1C1A 60%, #1a1400 100%);
    position: relative;
    overflow: hidden;
}
.auth-left::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* 29. SCROLLBAR-HIDE UTILITY                                          */
/* ------------------------------------------------------------------ */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ------------------------------------------------------------------ */
/* 30. SMOOTH FOCUS RINGS (override browser default)                  */
/* ------------------------------------------------------------------ */
*:focus-visible {
    outline: 2px solid #F5A623;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Float-card hover inside hero */
.hero-float-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-float-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ------------------------------------------------------------------ */
/* 31. FORM LABEL UTILITY                                              */
/* ------------------------------------------------------------------ */
.text-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(43, 43, 43, 0.5);
}

/* ------------------------------------------------------------------ */
/* 32. CHECKBOX / RADIO GOLD ACCENT                                    */
/* ------------------------------------------------------------------ */
input[type="checkbox"],
input[type="radio"] {
    accent-color: #F5A623;
}

/* ------------------------------------------------------------------ */
/* 33. MOBILE FILTER DRAWER SLIDE-IN                                   */
/* ------------------------------------------------------------------ */
#mobile-filter-drawer > div:last-child {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#mobile-filter-drawer.drawer-open > div:last-child {
    transform: translateX(0);
}

/* ------------------------------------------------------------------ */
/* 34. PRODUCT DETAIL TAB SYSTEM                                       */
/* ------------------------------------------------------------------ */
.tab-btn {
    position: relative;
    padding-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(43,43,43,0.5);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #F5A623;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1px;
}
.tab-btn.active { color: #1C1C1A; }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover:not(.active) { color: #E8772E; }

/* ------------------------------------------------------------------ */
/* 35. CART ITEM ROW HOVER                                             */
/* ------------------------------------------------------------------ */
.cart-row {
    transition: background 0.2s ease;
}
.cart-row:hover {
    background: rgba(245, 166, 35, 0.04);
}

/* ------------------------------------------------------------------ */
/* 36. QTY STEPPER                                                     */
/* ------------------------------------------------------------------ */
.qty-btn {
    width: 30px;
    height: 30px;
    background: #F2F1EC;
    border: 1px solid #E5E3DC;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #1C1C1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.qty-btn:hover {
    background: #F5A623;
    border-color: #F5A623;
    color: #1C1C1A;
}

/* ------------------------------------------------------------------ */
/* 37. TRANSPARENT HEADER PILL BUTTON HOVER SPECIFICITY FIX           */
/* ------------------------------------------------------------------ */
#main-header.bg-transparent #admin-pill-btn:hover,
#main-header.bg-transparent #dealer-pill-btn:hover {
    color: #000000 !important;
    background-color: #FBFAF7 !important;
}

