/* ============================================
   QUICK BUY PAGE - PRS SPARTAN THEME
   Refactored: Clean | Consistent | Accessible
   ============================================
   
   Color Palette:
   --navy:        #090D16
   --navy-mid:    #0F172A
   --crimson:     #FF2A00
   --crimson-alt: #D90429
   --gold:        #FFB703
   --amber:       #F59E0B
   --bg:          #F8FAFC
   --surface:     #FFFFFF
   --surface2:    #F1F5F9
   --border:      #E2E8F0
   --text:        #0F172A
   --text-light:  #F8FAFC
   --text-muted:  #94A3B8
   --text-dim:    #64748B
   --success:     #10B981
   --success-dark: #059669
   --info:        #38BDF8
   --warning:     #F59E0B
   --grad-flame:  linear-gradient(135deg, #FF2A00 0%, #F59E0B 50%, #FFB703 100%)
   --grad-spartan: linear-gradient(135deg, #090D16 0%, #0F172A 50%, #1E3A8A 100%)
   ============================================ */

/* ============================================
   1. CSS VARIABLES
============================================ */
:root {
    /* Primary Colors */
    --navy: #090D16;
    --navy-mid: #0F172A;
    --crimson: #FF2A00;
    --crimson-alt: #D90429;
    --gold: #FFB703;
    --amber: #F59E0B;
    
    /* Surfaces */
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --surface2: #F1F5F9;
    --surface-dark: #090D16;
    --surface-mid: #0F172A;
    --border: #E2E8F0;
    --border-gold: rgba(255, 183, 3, 0.3);
    
    /* Text */
    --text: #0F172A;
    --text-light: #F8FAFC;
    --text-muted: #CBD5E1;
    --text-dim: #94A3B8;
    --text-subtle: #64748B;
    
    /* Status */
    --success: #10B981;
    --success-dark: #059669;
    --info: #38BDF8;
    --warning: #F59E0B;
    --danger: #FF2A00;
    
    /* Gradients */
    --grad-flame: linear-gradient(135deg, #FF2A00 0%, #F59E0B 50%, #FFB703 100%);
    --grad-spartan: linear-gradient(135deg, #090D16 0%, #0F172A 50%, #1E3A8A 100%);
    --grad-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --grad-gold: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    
    /* Typography */
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 20px;
    --space-2xl: 24px;
    --space-3xl: 32px;
    --space-4xl: 40px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(9, 13, 22, 0.06);
    --shadow-md: 0 8px 24px rgba(9, 13, 22, 0.12);
    --shadow-lg: 0 12px 32px rgba(9, 13, 22, 0.16);
    --shadow-xl: 0 20px 48px rgba(9, 13, 22, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 42, 0, 0.15);
    --shadow-gold: 0 8px 28px rgba(255, 183, 3, 0.25);
    
    /* Transitions - Apple Fluid Physics */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-apple: cubic-bezier(0.32, 0.72, 0, 1);
    --duration-fast: 0.18s;
    --duration-medium: 0.35s;
    --duration-slow: 0.5s;
}

/* ============================================
   2. BASE — APPLE SILKY SMOOTH PHYSICS
============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.quickbuy-page {
    background: var(--bg);
    overflow-x: hidden;
    font-family: var(--font);
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

body.quickbuy-page .site-footer {
    display: none !important;
}

/* ============================================
   3. MAIN WRAPPER
============================================ */
.quickbuy-wrapper {
    width: 100%;
    padding: var(--space-xl) var(--space-lg) 140px;
    box-sizing: border-box;
    overflow: visible;
}

/* ============================================
   4. STICKY FILTER - GLASSMORPHIC
============================================ */
.quickbuy-filter-wrapper {
    position: relative;
    width: 100%;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: var(--space-md) var(--space-md);
    margin-bottom: var(--space-2xl);
    text-align: center;
    border-bottom: 1.5px solid var(--border-gold);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: top var(--duration-medium) var(--ease-smooth),
                transform var(--duration-medium) var(--ease-smooth),
                background var(--duration-medium) var(--ease-smooth);
}

.quickbuy-filter-wrapper.fixed-filter {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Admin bar offset */
body.admin-bar .quickbuy-filter-wrapper.fixed-filter {
    top: 112px;
}

body.admin-bar .site-header.scrolled ~ * .quickbuy-filter-wrapper.fixed-filter {
    top: 98px;
}

/* Header scrolled offset */
.site-header.scrolled ~ * .quickbuy-filter-wrapper.fixed-filter {
    top: 66px;
}

/* Mobile offset */
@media (max-width: 782px) {
    body.admin-bar .quickbuy-filter-wrapper.fixed-filter {
        top: 111px;
    }
    body.admin-bar .site-header.scrolled ~ * .quickbuy-filter-wrapper.fixed-filter {
        top: 102px;
    }
}

@media (max-width: 639px) {
    .quickbuy-filter-wrapper.fixed-filter {
        top: 65px;
    }
    .site-header.scrolled ~ * .quickbuy-filter-wrapper.fixed-filter {
        top: 56px;
    }
}

/* ============================================
   5. FILTER LABEL & SELECT
============================================ */
.quickbuy-filter-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: var(--space-sm);
    text-align: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.quickbuy-filter-wrapper select {
    width: 100%;
    max-width: 340px;
    height: 48px;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 0 var(--space-lg);
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--surface-mid);
    color: var(--text-light);
    outline: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFB703' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.quickbuy-filter-wrapper select option {
    background: var(--surface-mid);
    color: var(--text-light);
    font-weight: 700;
    padding: var(--space-sm);
}

.quickbuy-filter-wrapper select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

.quickbuy-filter-wrapper select.active-category {
    border-color: var(--gold);
    background-color: var(--surface-mid);
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

/* ============================================
   6. CATEGORY PILLS BAR
============================================ */
.quickbuy-filter-top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.quickbuy-filter-top-row select {
    width: 100% !important;
    max-width: 340px !important;
    height: 44px !important;
}

.quickbuy-category-pills-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: var(--space-sm) var(--space-xs) var(--space-xs);
    margin: var(--space-sm) auto 0;
    max-width: 1200px;
    scrollbar-width: none;
}

.quickbuy-category-pills-bar::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid var(--border-gold);
    color: var(--text-muted);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 12.5px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.category-pill:hover {
    background: var(--grad-flame);
    color: var(--text-light);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(255, 42, 0, 0.4);
    transform: translateY(-2px);
}

.category-pill.active {
    background: var(--grad-flame);
    color: var(--text-light);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(255, 42, 0, 0.4);
}

/* ============================================
   7. CATEGORY SECTION
============================================ */
.quickbuy-category-section {
    margin-bottom: var(--space-3xl);
    scroll-margin-top: 100px;
}

.quickbuy-category-line {
    width: 100%;
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.quickbuy-category-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--crimson), var(--gold), transparent);
    border-radius: 2px;
}

/* ============================================
   8. CATEGORY BOX - ANIMATED
============================================ */
.quickbuy-category-box {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--grad-spartan);
    color: var(--gold);
    font-size: 16.5px;
    font-weight: 900;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-md) var(--space-3xl);
    border-radius: var(--radius-3xl);
    border: 1.5px solid var(--border-gold);
    box-shadow: 0 8px 24px rgba(9, 13, 22, 0.4), inset 0 0 12px rgba(255, 42, 0, 0.15);
    cursor: default;
    animation: categoryGlowPulse 3s infinite ease-in-out;
    transition: transform var(--duration-medium) var(--ease-spring),
                box-shadow var(--duration-medium) var(--ease-smooth);
}

.quickbuy-category-box:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 183, 3, 0.4), 0 0 20px rgba(255, 42, 0, 0.3);
    border-color: var(--gold);
}

.quickbuy-category-box .cat-icon {
    display: inline-block;
    animation: flameIconFloat 2s infinite ease-in-out;
}

@keyframes categoryGlowPulse {
    0%, 100% {
        border-color: var(--border-gold);
        box-shadow: 0 8px 24px rgba(9, 13, 22, 0.4), 0 0 10px rgba(255, 42, 0, 0.15);
    }
    50% {
        border-color: rgba(255, 42, 0, 0.75);
        box-shadow: 0 10px 30px rgba(255, 42, 0, 0.4), 0 0 18px rgba(255, 183, 3, 0.35);
    }
}

@keyframes flameIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.15);
    }
}

/* ============================================
   9. PRODUCT GRID
============================================ */
.quickbuy-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

/* ============================================
   10. PRODUCT CARD
============================================ */
.quickbuy-card {
    background: var(--surface-dark);
    border: 1.5px solid var(--border-gold);
    border-left: 3px solid transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(18px);
    animation: cardFadeIn 0.45s var(--ease-smooth) forwards;
    transition: transform 0.4s var(--ease-smooth),
                box-shadow 0.4s var(--ease-smooth),
                border-color 0.4s ease;
    will-change: transform, box-shadow;
}

/* Stagger animation delays */
.quickbuy-card:nth-child(1) { animation-delay: 0.03s; }
.quickbuy-card:nth-child(2) { animation-delay: 0.07s; }
.quickbuy-card:nth-child(3) { animation-delay: 0.11s; }
.quickbuy-card:nth-child(4) { animation-delay: 0.15s; }
.quickbuy-card:nth-child(5) { animation-delay: 0.19s; }
.quickbuy-card:nth-child(6) { animation-delay: 0.23s; }
.quickbuy-card:nth-child(7) { animation-delay: 0.27s; }
.quickbuy-card:nth-child(8) { animation-delay: 0.31s; }
.quickbuy-card:nth-child(9) { animation-delay: 0.35s; }
.quickbuy-card:nth-child(n+10) { animation-delay: 0.38s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quickbuy-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.62), 0 0 24px rgba(255, 183, 3, 0.35);
    border-color: rgba(255, 183, 3, 0.6);
}

.quickbuy-card:active {
    transform: scale(0.99);
    transition: transform 0.12s var(--ease-apple);
}

/* Card Layout - Desktop */
@media (min-width: 1024px) {
    .quickbuy-products-grid {
        gap: var(--space-xl);
    }
    .quickbuy-card {
        width: calc(33.333% - 15px);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .quickbuy-products-grid {
        gap: var(--space-lg);
    }
    .quickbuy-card {
        width: calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .quickbuy-card {
        width: calc(50% - 5px);
    }
}

/* ============================================
   11. CARD HEADER
============================================ */
.card-header {
    background: linear-gradient(135deg, #991B1B 0%, #7F1D1D 60%, #450A0A 100%);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    border-bottom: 1.5px solid var(--border-gold);
}

.card-header .quickbuy-thumbnail {
    width: 72px;
    height: 72px;
    min-width: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    background: var(--surface-mid);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 0;
    position: relative;
}

.card-header .quickbuy-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: transform var(--duration-medium) var(--ease-smooth);
}

.card-header .quickbuy-thumbnail img:hover {
    transform: scale(1.06);
}

/* ============================================
   12. PRODUCT NAME
============================================ */
.quickbuy-wrapper .quickbuy-card .card-header .quickbuy-product-name,
.quickbuy-card .quickbuy-product-name,
.quickbuy-product-name {
    font-size: 16px !important;
    font-weight: 800 !important;
    font-family: var(--font-heading) !important;
    line-height: 1.35 !important;
    color: var(--text-light) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
    word-break: break-word !important;
    flex: 1 !important;
    min-width: 0 !important;
}

/* ============================================
   13. CARD BODY
============================================ */
.card-body {
    background: linear-gradient(180deg, var(--surface-mid) 0%, var(--surface-dark) 100%);
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-md);
}

/* Section A - Image */
.card-sec-a {
    flex: 0 0 35%;
    width: 35%;
    min-width: 0;
    height: 124px;
    max-height: 124px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    padding: var(--space-sm);
    box-sizing: border-box;
    cursor: pointer;
    align-self: center;
}

.card-sec-a img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: transform var(--duration-medium) var(--ease-smooth);
}

.card-sec-a:hover img {
    transform: scale(1.06);
}

/* Section B - Details */
.card-sec-b {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xs);
}

/* ============================================
   14. META ROW
============================================ */
.quickbuy-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.quickbuy-label {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    min-width: 82px;
}

/* ============================================
   15. PRICE
============================================ */
.quickbuy-price {
    flex: 1;
    text-align: right;
    font-size: 15.5px;
    font-family: var(--font);
    font-weight: 800;
}

.normal-price {
    color: var(--success);
}

.sale-price {
    color: var(--success);
    font-weight: 800;
    font-size: 16px;
}

.regular-price {
    text-decoration: line-through;
    color: var(--text-subtle);
    margin-right: var(--space-sm);
    font-size: 12px;
}

/* ============================================
   16. QUANTITY
============================================ */
.quickbuy-quantity {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: var(--surface-mid);
    color: var(--info);
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    user-select: none;
}

.qty-btn:hover {
    background: #334155;
    color: var(--text-light);
    border-color: var(--info);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.qty-btn:active {
    transform: scale(0.92) !important;
    transition: transform 0.12s var(--ease-apple) !important;
}

.qty {
    width: 54px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    outline: none;
    background: var(--surface-mid);
    color: var(--text-light);
    transition: border-color var(--duration-fast) var(--ease-smooth),
                box-shadow var(--duration-fast) var(--ease-smooth);
}

.qty:focus {
    border-color: var(--info);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

/* ============================================
   17. SUBTOTAL
============================================ */
.quickbuy-subtotal {
    flex: 1;
    text-align: right;
    font-size: 16.5px;
    font-weight: 800;
    font-family: var(--font);
    color: var(--text-muted);
    transition: color var(--duration-medium) var(--ease-smooth),
                transform var(--duration-fast) var(--ease-smooth);
}

.subtotal-zero {
    color: var(--text-subtle);
}

.subtotal-added {
    color: var(--info);
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

/* ============================================
   18. CARD ACTIVE STATE (QTY ADDED)
============================================ */
.quickbuy-card.qty-active {
    border: 2px solid var(--gold);
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow-md), -2px 0 16px rgba(255, 183, 3, 0.3);
}

.quickbuy-card.qty-active .card-header {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    border-bottom-color: rgba(16, 185, 129, 0.4);
}

.quickbuy-card.qty-active .quickbuy-product-name {
    color: var(--text-light) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* ============================================
   19. VIDEO PLAYER
============================================ */
.card-video-player {
    width: 100%;
    height: 100%;
    min-height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.card-yt-iframe {
    border: 0;
    pointer-events: none;
    transform: scale(1.4);
}

.video-trigger-box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-click-overlay {
    position: absolute;
    inset: 0;
    z-index: 8;
    background: rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: background var(--duration-fast) var(--ease-smooth);
}

.video-trigger-box:hover .video-click-overlay {
    background: rgba(0, 0, 0, 0.22);
}

.play-overlay-badge {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 42, 0, 0.92);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 2;
    transition: transform var(--duration-fast) var(--ease-smooth),
                background var(--duration-fast) var(--ease-smooth);
}

.video-trigger-box:hover .play-overlay-badge {
    transform: translateX(-50%) scale(1.08);
    background: var(--crimson);
}

/* ============================================
   20. FALLBACK
============================================ */
.card-fallback-box {
    width: 100%;
    height: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1E3A8A 0%, var(--surface-mid) 70%, var(--surface-dark) 100%);
    padding: var(--space-xs);
    box-sizing: border-box;
}

.card-p-logo {
    max-height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 183, 3, 0.35));
    animation: logoFloat 3s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-3px) scale(1.04);
    }
}

/* ============================================
   21. COMING SOON BADGE
============================================ */
.prs-coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning) 0%, #D97706 100%);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
    white-space: nowrap;
}

.prs-coming-soon-text {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   22. FLOATING CART BAR
============================================ */
.quickbuy-cart-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--surface-dark);
    border-top: 1.5px solid var(--border-gold);
    padding: var(--space-sm) var(--space-2xl);
    z-index: 9999;
    box-shadow: 0 -6px 24px rgba(9, 13, 22, 0.6);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    box-sizing: border-box;
    transition: border-color var(--duration-medium) var(--ease-smooth),
                box-shadow var(--duration-medium) var(--ease-smooth);
}

.quickbuy-cart-bar.cart-bar-active {
    border-top: 1.5px solid var(--gold);
    box-shadow: 0 -8px 25px rgba(255, 183, 3, 0.3);
}

.quickbuy-cart-top {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.quickbuy-cart-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.06);
    padding: 0 var(--space-md);
    height: 42px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--font);
    color: var(--text-light);
    border: 1px solid var(--border-gold);
    box-sizing: border-box;
}

.quickbuy-cart-stat.total-price {
    background: rgba(255, 42, 0, 0.12);
    color: var(--gold);
    border-color: var(--border-gold);
    font-size: 13.5px;
}

.cart-icon {
    color: var(--gold);
    font-size: 18px;
}

.rupee-icon {
    color: var(--gold);
    font-size: 16px;
    font-weight: 800;
}

/* ============================================
   23. CHECKOUT BUTTON
============================================ */
.quickbuy-checkout-btn {
    width: auto;
    min-width: 180px;
    height: 42px;
    padding: 0 var(--space-xl);
    border: none;
    border-radius: var(--radius-sm);
    background: var(--grad-success);
    color: var(--text-light);
    font-size: 14.5px;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
    animation: checkoutPulseGreen 2.5s ease-in-out infinite;
    transition: transform var(--duration-medium) var(--ease-spring),
                box-shadow var(--duration-medium) var(--ease-smooth);
}

.quickbuy-checkout-btn:hover {
    transform: translateY(-2px) scale(1.02);
    animation: none;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6), 0 0 16px rgba(52, 211, 153, 0.5);
    background: linear-gradient(135deg, var(--success-dark) 0%, #047857 100%);
}

.quickbuy-checkout-btn:active {
    transform: scale(0.96) !important;
    transition: transform 0.12s var(--ease-apple) !important;
}

@keyframes checkoutPulseGreen {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    }
    50% {
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6), 0 0 0 5px rgba(52, 211, 153, 0.15);
    }
}

/* ============================================
   24. IMAGE MODAL
============================================ */
.quickbuy-image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    box-sizing: border-box;
}

.image-modal-box,
.quickbuy-image-modal-box {
    position: relative;
    width: min(500px, 90vw);
    max-height: 85vh;
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    box-sizing: border-box;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quickbuy-image-modal-content {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* ============================================
   25. VIDEO MODAL
============================================ */
.quickbuy-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 13, 22, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    box-sizing: border-box;
}

.quickbuy-video-modal-box {
    position: relative;
    width: min(640px, 94vw);
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-sizing: border-box;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.quickbuy-video-modal-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 var(--space-md);
    padding-right: 36px;
}

.quickbuy-video-modal-body {
    width: 100%;
}

.quickbuy-video-player-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal-video-player {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================
   26. MODAL CLOSE BUTTONS
============================================ */
.image-modal-close,
.video-modal-close,
.quickbuy-modal-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-alt) 100%);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(255, 42, 0, 0.45);
    transition: transform var(--duration-medium) var(--ease-smooth),
                box-shadow var(--duration-medium) var(--ease-smooth);
    z-index: 999;
}

.image-modal-close:hover,
.video-modal-close:hover,
.quickbuy-modal-close:hover {
    transform: scale(1.12) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 42, 0, 0.65);
    background: var(--crimson);
}

/* ============================================
   27. SCROLL TO TOP
============================================ */
#scroll-to-top {
    z-index: 999999;
}

/* ============================================
   28. RESPONSIVE - MOBILE (<= 767px)
============================================ */
@media (max-width: 767px) {
    body {
        padding-bottom: 160px;
    }

    .quickbuy-wrapper {
        padding: var(--space-xl) var(--space-sm) 100px;
    }

    .quickbuy-filter-wrapper {
        padding: var(--space-sm);
    }

    .quickbuy-filter-wrapper.fixed-filter {
        top: 65px;
    }

    .quickbuy-filter-label {
        max-width: 100%;
        font-size: 13px;
        margin-bottom: var(--space-sm);
    }

    .quickbuy-filter-wrapper select {
        width: 100%;
        max-width: 100%;
        height: 46px;
        font-size: 14px;
    }

    .quickbuy-products-grid {
        gap: var(--space-sm);
    }

    .quickbuy-card {
        width: calc(50% - 5px);
        border-radius: var(--radius-md);
    }

    .card-header {
        padding: var(--space-sm) var(--space-sm);
        gap: var(--space-sm);
    }

    .card-header .quickbuy-thumbnail {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: var(--radius-sm);
    }

    .quickbuy-wrapper .quickbuy-card .card-header .quickbuy-product-name,
    .quickbuy-card .quickbuy-product-name,
    .quickbuy-product-name {
        font-size: 12.5px !important;
        font-weight: 800 !important;
        font-family: var(--font-heading) !important;
        line-height: 1.25 !important;
        color: var(--text-light) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.6px !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .card-body {
        padding: var(--space-sm) var(--space-sm) var(--space-sm);
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .card-sec-a {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        align-self: center;
        height: 85px;
        max-height: 85px;
        padding: var(--space-xs);
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface);
        border-radius: var(--radius-sm);
    }

    .card-sec-a img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: var(--radius-sm);
    }

    .card-sec-b {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: var(--space-xs);
    }

    .quickbuy-meta-row {
        gap: var(--space-xs);
        padding: var(--space-xs) 0;
    }

    .quickbuy-label {
        min-width: 54px;
        font-size: 11px;
    }

    .quickbuy-price,
    .quickbuy-subtotal {
        font-size: 13px;
    }

    .quickbuy-subtotal {
        font-size: 13.5px;
    }

    .quantity-wrapper {
        gap: var(--space-xs);
        height: 28px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .qty {
        width: 34px;
        height: 28px;
        font-size: 12.5px;
        padding: 0 var(--space-xs);
    }

    .quickbuy-category-box {
        font-size: 13px;
        padding: var(--space-sm) var(--space-lg);
    }

    .quickbuy-cart-bar {
        flex-direction: column;
        padding: var(--space-sm) var(--space-md);
        gap: var(--space-sm);
        bottom: 0;
    }

    .quickbuy-cart-top {
        width: 100%;
        justify-content: space-between;
        gap: var(--space-sm);
    }

    .quickbuy-cart-stat {
        flex: 1;
        justify-content: center;
        height: 34px;
        font-size: 12px;
        padding: var(--space-xs) var(--space-sm);
        border-radius: var(--radius-sm);
    }

    .quickbuy-checkout-btn {
        width: 100%;
        min-width: auto;
        height: 40px;
        font-size: 14px;
        font-weight: 900;
        border-radius: var(--radius-sm);
    }

    .quickbuy-category-section {
        scroll-margin-top: 120px;
    }

    #scroll-to-top,
    .scroll-to-top-btn {
        bottom: 95px;
        right: var(--space-md);
    }
}

/* ============================================
   29. ACCESSIBILITY - Reduced Motion
============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .quickbuy-card {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .quickbuy-category-box {
        animation: none;
    }

    .qty-btn:active {
        animation: none;
    }

    .quickbuy-checkout-btn {
        animation: none;
    }
}

/* ============================================
   30. PRINT STYLES
============================================ */
@media print {
    .quickbuy-filter-wrapper,
    .quickbuy-cart-bar,
    #scroll-to-top,
    .quickbuy-image-modal,
    .quickbuy-video-modal,
    .quickbuy-modal {
        display: none !important;
    }

    .quickbuy-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        box-shadow: none;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .quickbuy-product-name {
        color: #000 !important;
        text-shadow: none !important;
    }

    .card-header {
        background: #f0f0f0 !important;
        border-bottom: 1px solid #ccc !important;
    }

    .quickbuy-price,
    .normal-price,
    .sale-price {
        color: #000 !important;
    }

    .quickbuy-category-box {
        background: #000 !important;
        color: #fff !important;
        animation: none !important;
    }

    body.quickbuy-page {
        background: #fff !important;
    }

    .quickbuy-wrapper {
        padding: 20px !important;
    }
}

/* ============================================
   31. DARK MODE SUPPORT
============================================ */
@media (prefers-color-scheme: dark) {
    body.quickbuy-page {
        background: var(--bg);
    }

    .quickbuy-card {
        background: var(--surface-dark);
        border-color: var(--border-gold);
    }

    .quickbuy-card:hover {
        border-color: rgba(255, 183, 3, 0.6);
    }

    .card-header {
        background: linear-gradient(135deg, #7F1D1D 0%, #991B1B 60%, #450A0A 100%);
    }

    .card-body {
        background: linear-gradient(180deg, var(--surface-mid) 0%, var(--surface-dark) 100%);
    }

    .quickbuy-filter-wrapper {
        background: rgba(9, 13, 22, 0.95);
        border-bottom-color: var(--border-gold);
    }

    .quickbuy-filter-wrapper select {
        background: var(--surface-mid);
        color: var(--text-light);
        border-color: var(--border-gold);
    }

    .quickbuy-filter-wrapper select option {
        background: var(--surface-mid);
        color: var(--text-light);
    }

    .quickbuy-cart-bar {
        background: var(--surface-dark);
        border-top-color: var(--border-gold);
    }

    .qty {
        background: var(--surface-mid);
        color: var(--text-light);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .qty-btn {
        background: var(--surface-mid);
        color: var(--info);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .qty-btn:hover {
        background: #334155;
        color: var(--text-light);
        border-color: var(--info);
    }

    .quickbuy-cart-stat {
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-light);
        border-color: var(--border-gold);
    }

    .quickbuy-cart-stat.total-price {
        background: rgba(255, 42, 0, 0.12);
        color: var(--gold);
        border-color: var(--border-gold);
    }

    .quickbuy-image-modal-box,
    .quickbuy-video-modal-box {
        background: var(--surface-dark);
        border-color: var(--border-gold);
    }

    .quickbuy-video-modal-title {
        color: var(--text-light);
    }

    .image-modal-close,
    .video-modal-close,
    .quickbuy-modal-close {
        background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-alt) 100%);
    }

    .image-modal-close:hover,
    .video-modal-close:hover,
    .quickbuy-modal-close:hover {
        background: var(--crimson);
    }
}

/* ============================================
   32. UTILITY - Focus States
============================================ */
.quickbuy-card:focus-visible,
.qty-btn:focus-visible,
.qty:focus-visible,
.quickbuy-filter-wrapper select:focus-visible,
.category-pill:focus-visible,
.quickbuy-checkout-btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================
   33. UTILITY - Selection
============================================ */
.quickbuy-wrapper ::selection {
    background: var(--crimson);
    color: var(--text-light);
}

.quickbuy-wrapper ::-moz-selection {
    background: var(--crimson);
    color: var(--text-light);
}

/* ============================================
   SEARCH SPOTLIGHT HIGHLIGHT & FOCUS
============================================ */
.quickbuy-card.prs-search-target {
    opacity: 1 !important;
    transform: scale(1.04) translateY(-6px) !important;
    border-color: #FFB703 !important;
    box-shadow: 0 0 35px rgba(255, 183, 3, 0.9), 0 0 60px rgba(255, 42, 0, 0.7) !important;
    z-index: 100 !important;
    animation: searchSpotlightPulse 1.2s ease-in-out infinite alternate !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes searchSpotlightPulse {
    0% {
        box-shadow: 0 0 25px rgba(255, 183, 3, 0.8), 0 0 45px rgba(255, 42, 0, 0.5);
        border-color: #FFB703;
    }
    100% {
        box-shadow: 0 0 45px rgba(255, 183, 3, 1), 0 0 75px rgba(255, 42, 0, 0.9);
        border-color: #FF2A00;
    }
}

/* Dim non-target cards when a search focus is active */
.quickbuy-products-grid.prs-search-active .quickbuy-card:not(.prs-search-target) {
    opacity: 0.35 !important;
    filter: blur(1px) grayscale(0.4) !important;
    transform: scale(0.97) !important;
    transition: all 0.5s ease !important;
}

/* ============================================
   THANK YOU / ORDER RECEIVED PAGE STYLES
============================================ */
.prs-thankyou-page {
    background: #090D16;
    color: #F8FAFC;
    padding: 40px 0 80px;
    font-family: var(--font, 'Inter', sans-serif);
    min-height: 85vh;
}

.prs-thankyou-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* SUCCESS HERO HEADER */
.prs-thankyou-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.3);
    border-radius: 24px;
    padding: 40px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.prs-success-badge {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.prs-checkmark-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #10B981;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #10B981;
    animation: fillCheck 0.4s ease-in-out 0.4s forwards, scaleCheck 0.3s ease-in-out 0.9s bounce;
}

.prs-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #10B981;
    fill: none;
    animation: strokeCheck 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.prs-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCheck {
    100% { stroke-dashoffset: 0; }
}

.prs-hero-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prs-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.prs-hero-sub {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

.prs-order-badge {
    color: #FFB703;
    font-weight: 800;
    font-family: monospace;
    background: rgba(255, 183, 3, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

/* STEPPER */
.prs-thankyou-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0F172A;
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 20px;
    padding: 24px 32px;
    gap: 12px;
}

.prs-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.prs-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94A3B8;
}

.step-done .prs-step-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    border-color: #10B981;
}

.step-active .prs-step-icon {
    background: linear-gradient(135deg, #FFB703 0%, #D97706 100%);
    color: #090D16;
    border-color: #FFB703;
}

.prs-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prs-step-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    font-family: var(--font-heading, 'Outfit', sans-serif);
}

.prs-step-text span {
    font-size: 0.8rem;
    color: #94A3B8;
}

.prs-step-line {
    height: 2px;
    flex: 0 0 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.prs-step-line.done {
    background: #10B981;
}

/* INFO GRID */
.prs-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.prs-info-card {
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.prs-card-header {
    background: rgba(255, 255, 255, 0.04);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
}

.prs-card-icon {
    font-size: 1.2rem;
}

.prs-card-header h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
}

.prs-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prs-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.prs-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.prs-detail-label {
    color: #94A3B8;
    font-weight: 600;
}

.prs-detail-val {
    color: #FFFFFF;
    font-weight: 700;
    text-align: right;
}

.prs-detail-val.highlight-gold {
    color: #FFB703;
}

.prs-detail-val.price-emerald {
    color: #10B981;
    font-size: 1.2rem;
    font-weight: 900;
}

.prs-status-pill {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-processing {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ITEMIZED TABLE CARD */
.prs-table-card {
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.prs-table-header {
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
}

.prs-table-header h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
}

.prs-table-responsive {
    overflow-x: auto;
}

.prs-item-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.prs-item-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 20px;
    color: #94A3B8;
    font-weight: 700;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prs-item-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #F8FAFC;
}

.prs-item-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.prs-qty-badge {
    background: rgba(255, 183, 3, 0.15);
    color: #FFB703;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.prs-item-table tfoot td {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 183, 3, 0.2);
    background: rgba(15, 23, 42, 0.6);
}

.tfoot-grandtotal td {
    border-top: 2px solid #FFB703 !important;
    background: rgba(9, 13, 22, 0.9) !important;
}

/* ACTION BUTTONS */
.prs-thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    text-decoration: none !important;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.prs-btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.prs-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.prs-btn-print {
    background: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    color: #090D16 !important;
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.4);
}

.prs-btn-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 183, 3, 0.6);
}

.prs-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #F8FAFC !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.prs-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .prs-hero-title {
        font-size: 1.75rem;
    }
    .prs-thankyou-stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    .prs-step-line {
        display: none;
    }
    .prs-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRS SPARTAN - MY ACCOUNT & AUTH PAGE STYLES
============================================ */
.prs-account-page {
    background: #090D16;
    color: #F8FAFC;
    padding: 40px 0 80px;
    font-family: var(--font, 'Inter', sans-serif);
    min-height: 85vh;
}

/* ============================================
   1. GUEST AUTHENTICATION CARD (LOGIN & REGISTER)
============================================ */
.prs-auth-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.3);
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 183, 3, 0.1);
}

.prs-auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.prs-auth-logo {
    max-height: 52px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 183, 3, 0.35));
}

.prs-auth-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.5px;
}

.prs-auth-subtitle {
    font-size: 0.85rem;
    color: #94A3B8;
    margin: 0;
}

/* AUTH TABS */
.prs-auth-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px;
}

.prs-auth-tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    transition: all 0.25s ease;
}

.prs-auth-tab-btn:hover {
    color: #FFFFFF;
}

.prs-auth-tab-btn.active {
    background: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    color: #090D16;
    box-shadow: 0 4px 14px rgba(255, 183, 3, 0.35);
}

/* AUTH PANELS */
.prs-auth-panel {
    display: none;
}

.prs-auth-panel.active {
    display: block;
    animation: authFadeIn 0.3s ease-in-out;
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.prs-auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #CBD5E1;
}

.form-group label .required {
    color: #FF2A00;
}

.form-group input.input-text,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-family: var(--font, 'Inter', sans-serif);
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #FFB703;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(255, 183, 3, 0.25);
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-row-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #94A3B8;
}

.prs-forgot-link {
    color: #FFB703;
    text-decoration: none;
    font-weight: 700;
}

.prs-forgot-link:hover {
    text-decoration: underline;
}

.prs-btn-auth {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #FF2A00 0%, #F59E0B 50%, #FFB703 100%);
    color: #090D16;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 900;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 42, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.prs-btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 42, 0, 0.5);
}

.prs-btn-auth.inline-btn {
    width: auto;
    padding: 0 24px;
}

.prs-auth-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: #94A3B8;
}

/* ============================================
   2. LOGGED IN DASHBOARD VIEW
============================================ */
.prs-dashboard-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* DASHBOARD HERO BANNER */
.prs-dash-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.3);
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.prs-user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prs-avatar-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF2A00 0%, #FFB703 100%);
    color: #090D16;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(255, 42, 0, 0.4);
}

.prs-user-details h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 4px;
}

.prs-user-details p {
    font-size: 0.9rem;
    color: #CBD5E1;
    margin: 0;
}

.prs-btn-logout {
    background: rgba(255, 42, 0, 0.15);
    border: 1px solid rgba(255, 42, 0, 0.3);
    color: #FF2A00;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.prs-btn-logout:hover {
    background: #FF2A00;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(255, 42, 0, 0.4);
}

/* STATS GRID */
.prs-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.prs-stat-card {
    background: #0F172A;
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.prs-stat-icon {
    font-size: 2rem;
}

.prs-stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFB703;
}

.stat-label {
    font-size: 0.8rem;
    color: #94A3B8;
}

/* DASHBOARD TABS */
.prs-dash-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.prs-dash-tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #94A3B8;
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    cursor: pointer;
    transition: all 0.2s ease;
}

.prs-dash-tab-btn:hover {
    color: #FFFFFF;
    border-color: rgba(255, 183, 3, 0.4);
}

.prs-dash-tab-btn.active {
    background: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    color: #090D16;
    border-color: #FFB703;
    box-shadow: 0 6px 18px rgba(255, 183, 3, 0.3);
}

/* DASH PANELS */
.prs-dash-panel {
    display: none;
}

.prs-dash-panel.active {
    display: block;
    animation: dashFadeIn 0.3s ease-in-out;
}

@keyframes dashFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ORDERS LIST */
.prs-orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prs-order-card {
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.order-no {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFB703;
    margin-right: 12px;
}

.order-date {
    font-size: 0.85rem;
    color: #94A3B8;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-processing, .status-completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-pending, .status-on-hold {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.order-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-meta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: #CBD5E1;
}

.order-total-amount {
    color: #10B981;
    font-weight: 900;
    font-size: 1.05rem;
}

.prs-order-btn.pdf-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 800;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    transition: transform 0.2s ease;
}

.prs-order-btn.pdf-btn:hover {
    transform: translateY(-2px);
}

/* ADDRESS & ACCOUNT BOX */
.prs-address-box,
.prs-account-details-box {
    background: linear-gradient(180deg, #0F172A 0%, #090D16 100%);
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.prs-address-box h3,
.prs-account-details-box h3 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px;
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
    padding-bottom: 12px;
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #F8FAFC;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .prs-dash-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .prs-dash-stats {
        grid-template-columns: 1fr;
    }
    .prs-dash-tabs {
        flex-wrap: wrap;
    }
    .form-row-two {
        grid-template-columns: 1fr;
    }
    .order-card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================
   SMART COMBO GENERATOR STYLES
============================================ */
.combo-generator-page {
    background: #090D16;
    color: #F8FAFC;
    min-height: 80vh;
    padding-bottom: 60px;
}

.combo-hero-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #090D16 100%);
    border-bottom: 1.5px solid rgba(255, 183, 3, 0.25);
    padding: 40px 0 30px;
    text-align: center;
}

.combo-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid #8B5CF6;
    color: #C084FC;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.combo-title {
    color: #FFB703;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.combo-subtitle {
    color: #94A3B8;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto 26px;
}

/* Step Bar */
.combo-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    transition: all 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1E293B;
    border: 2px solid #64748B;
    color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-item.active .step-num {
    background: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    border-color: #FFB703;
    color: #090D16;
    box-shadow: 0 0 15px rgba(255, 183, 3, 0.4);
}

.step-lbl {
    font-size: 0.85rem;
    font-weight: 700;
    color: #CBD5E1;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #334155;
    max-width: 40px;
}

/* Wizard Panels */
.combo-wizard-container {
    margin-top: 30px;
}

.wizard-step-panel {
    background: #0F172A;
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.step-header {
    text-align: center;
    margin-bottom: 28px;
}

.step-header h2 {
    color: #F8FAFC;
    font-size: 1.5rem;
    margin: 0 0 8px;
}

.step-header p {
    color: #94A3B8;
    font-size: 0.95rem;
    margin: 0;
}

/* Budget Step */
.budget-input-wrapper {
    max-width: 420px;
    margin: 0 auto 24px;
    text-align: left;
}

.budget-input-wrapper label {
    display: block;
    color: #FFB703;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.budget-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 18px;
    color: #FFB703;
    font-size: 1.4rem;
    font-weight: 800;
}

.budget-input-group input {
    width: 100%;
    background: #1E293B;
    border: 2px solid rgba(255, 183, 3, 0.4);
    border-radius: 12px;
    padding: 14px 14px 14px 44px;
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 800;
    outline: none;
    transition: all 0.3s ease;
}

.budget-input-group input:focus {
    border-color: #FFB703;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.3);
}

.budget-warning-notice {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #EF4444;
    color: #FCA5A5;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.budget-pills-label {
    text-align: center;
    color: #94A3B8;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.budget-pills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.budget-pill {
    background: #1E293B;
    border: 1.5px solid #334155;
    color: #CBD5E1;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.budget-pill:hover, .budget-pill.active {
    background: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    border-color: #FFB703;
    color: #090D16;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

/* Age Cards */
.age-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.age-card {
    background: #1E293B;
    border: 2px solid #334155;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.age-card:hover {
    border-color: rgba(255, 183, 3, 0.5);
    transform: translateY(-3px);
}

.age-card.active {
    background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
    border-color: #8B5CF6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}

.age-card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.age-card-title {
    color: #F8FAFC;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.age-card-subtitle {
    color: #FFB703;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.age-card-desc {
    color: #94A3B8;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.age-card-check {
    display: none;
    margin-top: 12px;
    background: #10B981;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.age-card.active .age-card-check {
    display: inline-block;
}

/* Category Checkbox Grid */
.category-toggle-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-cat-select-all, .btn-cat-clear-all {
    background: #1E293B;
    border: 1px solid #334155;
    color: #CBD5E1;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-cat-select-all:hover, .btn-cat-clear-all:hover {
    background: #334155;
}

.cat-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 6px;
}

.cat-checkbox-card {
    background: #1E293B;
    border: 1.5px solid #334155;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
}

.cat-checkbox-card.checked {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
}

.cat-checkbox-input {
    display: none;
}

.cat-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #64748B;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    pointer-events: none;
}

.cat-checkbox-card.checked .cat-checkbox-custom {
    background: #8B5CF6;
    border-color: #8B5CF6;
}

.cat-checkbox-card.checked .cat-checkbox-custom::after {
    content: "✓";
    color: #FFF;
    font-size: 12px;
    position: absolute;
    top: -2px;
    left: 3px;
    font-weight: bold;
}

.cat-checkbox-name {
    color: #F8FAFC;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
}

/* Step Action Buttons */
.step-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #1E293B;
    padding-top: 24px;
}

.btn-combo-next, .btn-combo-prev {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-combo-next {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    margin-left: auto;
}

.btn-combo-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.btn-combo-generate {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.btn-combo-generate:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-combo-prev {
    background: #1E293B;
    color: #CBD5E1;
    border: 1px solid #334155;
}

.btn-combo-prev:hover {
    background: #334155;
}

/* Step 4 Results */
.combo-result-header {
    margin-bottom: 24px;
}

.result-title-box h2 {
    color: #FFB703;
    font-size: 1.6rem;
    margin: 0 0 6px;
}

.result-summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.summary-card {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.summary-card.highlight {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: #FFB703;
}

.summary-card .lbl {
    display: block;
    color: #94A3B8;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.summary-card .val {
    color: #F8FAFC;
    font-size: 1.4rem;
    font-weight: 800;
}

.summary-card.highlight .val {
    color: #FFB703;
}

/* Category Breakdown Progress Bar */
.category-breakdown-wrapper {
    background: #1E293B;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.breakdown-title {
    color: #CBD5E1;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breakdown-bar-container {
    height: 12px;
    background: #0F172A;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-bottom: 12px;
}

.breakdown-segment {
    height: 100%;
    transition: width 0.4s ease;
}

.breakdown-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #CBD5E1;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

/* Products Table */
.combo-products-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.combo-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.combo-products-table th {
    background: #1E293B;
    color: #FFB703;
    padding: 12px 14px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #334155;
}

.combo-products-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #1E293B;
    vertical-align: middle;
}

.combo-product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.combo-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #1E293B;
}

.combo-prod-name {
    font-weight: 700;
    color: #F8FAFC;
}

.cat-pill {
    background: rgba(100, 116, 139, 0.2);
    color: #94A3B8;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.qty-control-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-qty-minus, .btn-qty-plus {
    width: 26px;
    height: 26px;
    background: #334155;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.qty-input {
    width: 45px;
    text-align: center;
    background: #1E293B;
    border: 1px solid #334155;
    color: #FFF;
    border-radius: 4px;
    padding: 4px;
    font-weight: bold;
}

.btn-remove-item {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-remove-item:hover {
    background: #EF4444;
    color: #FFF;
}

/* Action Bar */
.combo-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.btn-re-generate {
    background: #1E293B;
    color: #CBD5E1;
    border: 1px solid #334155;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

.btn-add-combo-cart {
    background: linear-gradient(135deg, #FFB703 0%, #F59E0B 100%);
    color: #090D16;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
    transition: all 0.3s ease;
}

.btn-add-combo-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.6);
}

/* Cart-Style Item Column & Item Rows for Combo Generator */
.combo-cart-items-column {
    background: #0F172A;
    border: 1.5px solid rgba(255, 183, 3, 0.25);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.combo-cart-header h3 {
    color: #FFB703;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 16px;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 12px;
}

.combo-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 6px;
}

.combo-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.combo-item-row:hover {
    border-color: rgba(255, 183, 3, 0.4);
}

.combo-item-row .item-thumb {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #0F172A;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-item-row .item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-item-row .item-details {
    flex: 1;
    min-width: 0;
}

.combo-item-row .item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #F8FAFC;
    margin: 0 0 4px;
    line-height: 1.3;
}

.combo-item-row .item-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.combo-item-row .item-price-unit {
    font-size: 0.8rem;
    color: #94A3B8;
    font-weight: 600;
}

.combo-item-row .quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #0F172A;
    padding: 3px;
    border-radius: 8px;
    border: 1px solid #334155;
}

.combo-item-row .cart-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: #334155;
    color: #FFB703;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-item-row .cart-qty-btn:hover {
    background: #EF4444;
    color: #FFFFFF;
}

.combo-item-row .cart-qty-input {
    width: 42px;
    height: 28px;
    text-align: center;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
}

.combo-item-row .item-subtotal {
    min-width: 90px;
    text-align: right;
}

.combo-item-row .subtotal-val {
    font-size: 1rem;
    font-weight: 800;
    color: #FFB703;
}

.combo-item-row .item-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    transition: all 0.2s ease;
}

.combo-item-row .item-remove-btn:hover {
    background: #EF4444;
    color: #FFFFFF;
}

/* Header & Mobile Menu Responsive Rules */
@media (max-width: 991px) {
    .header-cta .smart-combo-cta-btn {
        display: none !important;
    }
}

/* Pack Generator Mobile Responsiveness (Cart Page Parity) */
@media (max-width: 768px) {
    .combo-title {
        font-size: 1.6rem;
    }
    .combo-steps-bar {
        gap: 6px;
    }
    .step-lbl {
        display: none; /* Hide labels on mobile step bar for compactness */
    }
    .step-line {
        max-width: 20px;
    }
    .wizard-step-panel {
        padding: 20px 14px;
        border-radius: 16px;
    }
    .age-cards-grid {
        grid-template-columns: 1fr;
    }
    .result-summary-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .combo-item-row {
        flex-wrap: wrap;
        padding: 12px;
        position: relative;
    }
    .combo-item-row .item-thumb {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    .combo-item-row .item-details {
        flex: 1 1 calc(100% - 100px);
    }
    .combo-item-row .item-remove-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .combo-item-row .item-qty-control {
        margin-top: 8px;
    }
    .combo-item-row .item-subtotal {
        margin-top: 8px;
        margin-left: auto;
        min-width: auto;
    }
    .combo-action-bar {
        flex-direction: column;
        gap: 12px;
    }
    .btn-add-combo-cart, .btn-re-generate {
        width: 100%;
        text-align: center;
    }
}