/* ==========================================================================
   TWISTER IT - MODERN ELECTRONICS & HARDWARE SHOP STYLES
   Quick-Commerce Speed + Deep Electronics Marketplace Architecture
   ========================================================================== */

/* 1. Dedicated Standalone Hero Banner Section (Seamlessly Blends with Header Background) */
.shop-hero-banner-section {
    width: 100%;
    background-color: #091500;
    position: relative;
    z-index: 10;
    border: none;
    box-shadow: none;
}

@media (min-width: 901px) {
    .shop-hero-banner-section {
        padding-top: 100px;
        padding-bottom: 10px;
    }
}

.shop-page-wrapper {
    padding-top: 20px;
    padding-bottom: 120px;
    min-height: 100vh;
    background-color: var(--color-bg-deep);
}

.shop-sub-header {
    background-color: var(--color-bg-surface);
    border-bottom: 1px solid var(--border-subdued);
    padding: 10px 0;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 64px;
    z-index: 40;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.shop-sub-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-location-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--color-text-secondary);
    cursor: pointer;
    background: var(--color-bg-elevated);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subdued);
    transition: var(--transition-fast);
}

.shop-location-picker:hover {
    border-color: var(--color-primary);
    color: var(--color-text-primary);
}

.shop-location-picker i {
    color: var(--color-primary);
    font-size: 14px;
}

.shop-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.trust-badge-item i {
    color: var(--color-primary);
}

/* 2. Hero Promotional Carousel */
.shop-hero-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-panel);
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #132c03 0%, #091500 100%);
    border: 1px solid var(--border-subdued);
    box-shadow: none;
}

.shop-promo-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.3, 0, 0.2, 1);
}

.shop-promo-slide {
    min-width: 100%;
    padding: 3rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.promo-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-primary);
    color: #091500;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.promo-subtitle {
    font-size: 14.5px;
    color: var(--color-text-secondary);
    margin-bottom: 1.75rem;
    max-width: 480px;
    line-height: 1.5;
}

.promo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-visual-graphic {
    font-size: 7rem;
    filter: drop-shadow(0 15px 30px rgba(113, 241, 0, 0.3));
    animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 24px;
    height: 6px;
    border-radius: var(--radius-pill);
    background-color: rgba(218, 255, 189, 0.2);
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--color-primary);
    width: 38px;
}

/* 3. Quick-Commerce Category Bar */
.shop-categories-wrapper {
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.shop-categories-wrapper::-webkit-scrollbar {
    display: none;
}

.shop-categories-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background-color: var(--color-bg-surface);
    color: var(--color-text-secondary);
    font-size: 13.5px;
    font-weight: 700;
    border: 1px solid var(--border-subdued);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    user-select: none;
}

.category-chip:hover {
    color: var(--color-text-primary);
    border-color: var(--border-light);
    background-color: var(--color-bg-elevated);
}

.category-chip.active {
    background-color: var(--color-primary);
    color: #091500;
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(113, 241, 0, 0.3);
}

.category-chip i {
    font-size: 14px;
}

/* 4. Quick Search & Filter Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background-color: var(--color-bg-surface);
    padding: 14px 20px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subdued);
}

.shop-search-box {
    flex: 1;
    min-width: 260px;
    max-width: 440px;
    position: relative;
}

.shop-search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 14px;
}

.shop-search-input {
    width: 100%;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-pill);
    padding: 9px 16px 9px 40px;
    color: var(--color-text-primary);
    font-size: 13.5px;
    outline: none;
    transition: var(--transition-fast);
}

.shop-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(113, 241, 0, 0.2);
}

.shop-filter-groups {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-select {
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: var(--transition-fast);
}

.filter-select:focus, .filter-select:hover {
    border-color: var(--color-primary);
}

.filter-btn-mobile {
    display: none;
    align-items: center;
    gap: 6px;
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* 5. Main Shop Layout (Sidebar Filter + Product Grid) */
.shop-layout-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Desktop Sidebar Filters */
.shop-sidebar-filters {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    border: 1px solid var(--border-subdued);
    position: sticky;
    top: 140px;
}

.sidebar-filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subdued);
}

.sidebar-filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-filter-title {
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-primary);
    margin-bottom: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
    user-select: none;
}

.filter-checkbox-item input[type="checkbox"],
.filter-checkbox-item input[type="radio"] {
    accent-color: var(--color-primary);
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.filter-checkbox-item:hover {
    color: var(--color-text-primary);
}

.filter-count {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-left: auto;
}

/* 6. Product Cards Grid */
.products-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Product Card Styling */
.product-card {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subdued);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-card);
}

.product-card:hover {
    background-color: var(--color-bg-elevated);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

/* Card Header Badges & Wishlist */
.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 5;
}

.condition-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-badge);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-used-grade-a {
    background-color: rgba(113, 241, 0, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(113, 241, 0, 0.3);
}

.badge-refurbished {
    background-color: rgba(83, 157, 245, 0.15);
    color: #539df5;
    border: 1px solid rgba(83, 157, 245, 0.3);
}

.badge-brand-new {
    background-color: rgba(255, 164, 43, 0.15);
    color: #ffa42b;
    border: 1px solid rgba(255, 164, 43, 0.3);
}

.btn-wishlist-heart {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--border-subdued);
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition-fast);
}

.btn-wishlist-heart:hover,
.btn-wishlist-heart.is-active {
    color: #f3727f;
    border-color: #f3727f;
    background-color: rgba(243, 114, 127, 0.15);
}

/* Product Media & Image */
.product-image-container {
    width: 100%;
    aspect-ratio: 1.2;
    background-color: var(--color-bg-deep);
    border-radius: var(--radius-input);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subdued);
    cursor: pointer;
}

.product-image-emoji {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-emoji {
    transform: scale(1.08);
}

.delivery-tag {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-size: 9.5px;
    font-weight: 700;
    background-color: rgba(9, 21, 0, 0.85);
    backdrop-filter: blur(8px);
    color: var(--color-primary);
    padding: 2px 8px;
    border-radius: var(--radius-badge);
    border: 1px solid rgba(113, 241, 0, 0.25);
}

/* Product Info */
.product-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
}

.product-title:hover {
    color: var(--color-primary);
}

/* Technical Specification Badges */
.product-specs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 0.75rem;
}

.spec-pill-tag {
    font-size: 10.5px;
    background-color: var(--color-bg-deep);
    color: var(--color-text-secondary);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid var(--border-subdued);
}

.battery-health-tag {
    font-size: 10.5px;
    font-weight: 700;
    background-color: rgba(113, 241, 0, 0.12);
    color: var(--color-primary);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(113, 241, 0, 0.25);
}

/* Rating & Warranty */
.product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: var(--color-text-muted);
    margin-bottom: 0.85rem;
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--color-warning);
    font-weight: 700;
}

.product-warranty-text {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* Pricing Hierarchy */
.product-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 1rem;
}

.product-selling-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.product-original-price {
    font-size: 13px;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-discount-pill {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--color-primary);
    background-color: rgba(113, 241, 0, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Card Actions (Add to Cart / Quantity Stepper & Compare) */
.product-actions-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-quick-add {
    flex: 1;
    background-color: var(--color-primary);
    color: #091500;
    border: none;
    border-radius: var(--radius-pill);
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-quick-add:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.02);
}

/* Quick-Commerce Quantity Stepper [- 1 +] */
.qty-stepper-control {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-primary);
    border-radius: var(--radius-pill);
    padding: 4px 6px;
    box-shadow: 0 4px 12px rgba(113, 241, 0, 0.3);
}

.qty-stepper-control.is-active {
    display: flex;
}

.btn-stepper {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-circle);
    background-color: #091500;
    color: var(--color-primary);
    border: none;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-stepper:hover {
    transform: scale(1.1);
}

.stepper-value {
    font-size: 13.5px;
    font-weight: 800;
    color: #091500;
}

.btn-card-compare {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-deep);
    border: 1px solid var(--border-subdued);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition-fast);
}

.btn-card-compare:hover,
.btn-card-compare.is-compared {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(113, 241, 0, 0.12);
}

/* 7. Persistent Quick-Commerce Sticky Cart Bar */
.sticky-float-cart-bar {
    position: fixed;
    bottom: 84px;
    left: 50%;
    transform: translate(-50%, 120%);
    width: calc(100% - 24px);
    max-width: 580px;
    background-color: var(--color-primary);
    color: #091500;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
    z-index: 900;
    transition: transform 0.4s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.sticky-float-cart-bar.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cart-left {
    display: flex;
    flex-direction: column;
}

.sticky-cart-count {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.sticky-cart-price {
    font-size: 16px;
    font-weight: 900;
}

.sticky-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #091500;
    color: #daffbd;
    height: 44px;
    min-width: 82px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.sticky-cart-btn:hover {
    background-color: #132c03;
    transform: scale(1.03);
}

/* 8. Slide-out Cart Drawer */
.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: var(--color-bg-surface);
    border-left: 1px solid var(--border-subdued);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.3, 0, 0.2, 1);
    box-shadow: var(--shadow-heavy);
}

.cart-drawer-backdrop.is-open .cart-drawer-panel {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subdued);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--color-text-primary);
}

.cart-close-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-bg-deep);
    padding: 10px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-subdued);
}

.cart-item-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--color-bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-primary);
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-subdued);
    background-color: var(--color-bg-surface);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-primary);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subdued);
    margin-bottom: 1.25rem;
}

.btn-checkout-proceed {
    width: 100%;
    background-color: var(--color-primary);
    color: #091500;
    padding: 12px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 9. Live Comparison Drawer & Spec Modal */
.compare-floating-dock {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    display: none;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-heavy);
    z-index: 850;
}

.compare-floating-dock.is-active {
    display: flex;
}

.modal-dialog-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-dialog-overlay.is-open {
    display: flex;
}

.modal-content-panel {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-panel);
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-heavy);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.spec-table th, .spec-table td {
    padding: 10px 14px;
    border: 1px solid var(--border-subdued);
    font-size: 13px;
    text-align: left;
}

.spec-table th {
    background-color: var(--color-bg-deep);
    color: var(--color-primary);
}

/* ==========================================================================
   10. MOBILE-FIRST ADVANCED RESPONSIVE ARCHITECTURE
   ========================================================================== */
.mobile-filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.mobile-filter-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-filter-sheet {
    width: 100%;
    max-height: 85vh;
    background-color: var(--color-bg-surface);
    border-radius: 24px 24px 0 0;
    border-top: 1px solid var(--border-subdued);
    padding: 1.5rem 1.25rem 2rem;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.3, 0, 0.2, 1);
    box-shadow: var(--shadow-heavy);
}

.mobile-filter-drawer-backdrop.is-open .mobile-filter-sheet {
    transform: translateY(0);
}

.mobile-sheet-drag-handle {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--border-light);
    margin: 0 auto 1.25rem;
}

.mobile-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subdued);
}

.mobile-sheet-header h3 {
    margin: 0;
    font-size: 17px;
    color: var(--color-text-primary);
    font-weight: 800;
}

.btn-filter-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.btn-filter-mobile-toggle:hover,
.btn-filter-mobile-toggle:active {
    border-color: var(--color-primary);
    background-color: rgba(113, 241, 0, 0.1);
}

/* Quick-Commerce Mobile Shop Header Bar */
.mobile-shop-header-bar {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px 6px 14px;
    background-color: #091500;
    border-bottom: none;
    box-shadow: none;
    box-sizing: border-box;
    transition: padding 0.3s cubic-bezier(0.3, 0, 0.2, 1);
}

.mobile-shop-collapsible-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-height: 120px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.22s ease, margin 0.3s ease;
}

.mobile-shop-header-bar.is-collapsed {
    padding: 6px 14px 4px;
    gap: 4px;
    box-shadow: none;
}

.mobile-shop-header-bar.is-collapsed .mobile-shop-collapsible-brand {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    pointer-events: none;
}

.mobile-shop-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 2px;
}

.mobile-brand-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-small a {
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-secondary);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
}

.logo-small .logo-dot {
    color: var(--color-primary);
    font-weight: 900;
}

.delivery-time-big {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--color-text-primary);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: lowercase;
}

.mobile-header-top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    cursor: pointer;
    font-size: 19px;
    transition: var(--transition-fast);
}

.mobile-profile-btn i.fa-expand,
.mobile-profile-btn i.fa-compress {
    font-size: 14px;
}

.mobile-profile-btn:hover,
.mobile-profile-btn:active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Mobile Profile Bottom Sheet Drawer */
.mobile-profile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1250;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.mobile-profile-drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-profile-sheet {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--border-subdued);
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-height: 85vh;
    padding: 1rem 1.25rem 2rem;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-profile-drawer-backdrop.is-open .mobile-profile-sheet {
    transform: translateY(0);
}

.mobile-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subdued);
    position: relative;
}

.user-avatar-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    background: rgba(113, 241, 0, 0.15);
    border: 1px solid rgba(113, 241, 0, 0.3);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.user-info-text {
    flex: 1;
}

.user-name {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-primary);
}

.user-status {
    font-size: 11.5px;
    color: var(--color-text-secondary);
}

.profile-settings-section {
    background: var(--color-bg-elevated);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-card);
    padding: 12px 14px;
    margin-bottom: 1.25rem;
}

.settings-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.theme-segmented-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--color-bg-deep);
    padding: 4px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subdued);
}

.theme-option-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.theme-option-btn.active {
    background: var(--color-primary);
    color: #091500;
    box-shadow: 0 2px 8px rgba(113, 241, 0, 0.35);
}

.profile-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-card);
    color: var(--color-text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.profile-link-item:hover,
.profile-link-item:active {
    border-color: var(--color-primary);
    background: var(--color-bg-surface);
}

.profile-link-item .link-arrow {
    margin-left: auto;
    font-size: 11px;
    color: var(--color-text-muted);
}

.mobile-location-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    color: var(--color-text-secondary);
    width: 100%;
    box-sizing: border-box;
}

.mobile-location-chip i {
    color: var(--color-primary);
    font-size: 13px;
    flex-shrink: 0;
}

.location-address {
    font-size: 12px;
    color: var(--color-text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-eta {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    margin-left: 4px;
}

.mobile-shop-search-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.mobile-shop-search-box {
    flex: 1;
    position: relative;
}

.mobile-shop-search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 13px;
}

.mobile-shop-search-input {
    width: 100%;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-pill);
    padding: 10px 14px 10px 38px;
    color: var(--color-text-primary);
    font-size: 13px;
    outline: none;
    transition: var(--transition-fast);
}

.mobile-shop-search-input:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-surface);
}

.btn-filter-mobile-toggle {
    padding: 10px 16px;
    font-size: 13px;
    height: 42px;
}

@media (max-width: 900px) {
    .mobile-shop-header-bar {
        display: flex;
        z-index: 1000;
    }

    .shop-hero-banner-section {
        display: block;
        width: 100%;
        padding-top: 218px;
        padding-bottom: 14px;
        position: relative;
        z-index: 10;
        background-color: #091500;
        border: none;
        box-shadow: none;
    }

    .shop-hero-banner-section .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .shop-hero-banner-section .shop-categories-wrapper {
        display: none;
    }

    .shop-page-wrapper {
        padding-top: 0;
        padding-bottom: 140px;
    }

    .shop-page-wrapper .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .mobile-shop-categories-row {
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
        padding: 0 12px 2px;
        box-sizing: border-box;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mobile-shop-categories-row::-webkit-scrollbar {
        display: none;
    }

    .shop-toolbar {
        display: none;
    }

    .shop-hero-carousel {
        margin-top: 14px;
        margin-bottom: 0;
        border-radius: var(--radius-card);
        box-shadow: none;
    }

    .shop-promo-slide {
        padding: 1.25rem 1rem;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .promo-title {
        font-size: 19px;
        line-height: 1.2;
    }

    .promo-subtitle {
        font-size: 12px;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .promo-visual {
        display: none;
    }

    .radio-tabs-track {
        --cat-accent: #173404;
        --cat-surface: #71f100;
        --cat-text-active: #091500;
        --cat-text-idle: #daffbd;
        --cat-radius-outer: 20px;
        --cat-radius-tab: 15px;
        --cat-notch: 16px;
        --cat-speed: 0.28s;
        --cat-ease: cubic-bezier(0.65, 0, 0.35, 1);

        position: relative;
        display: flex;
        align-items: center;
        background-color: var(--cat-accent);
        border-radius: var(--cat-radius-outer);
        padding: 6px 6px 0 6px;
        isolation: isolate;
        width: max-content;
        overflow: hidden;
    }

    .category-radio-tab {
        position: relative;
        display: inline-flex;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .category-radio-tab .cat-radio-input {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
        pointer-events: none;
    }

    .category-tab-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 5px;
        padding: 10px 15px 12px;
        min-width: 70px;
        min-height: 64px;
        color: var(--cat-text-idle);
        font-size: 10.5px;
        font-weight: 700;
        line-height: 1.1;
        position: relative;
        z-index: 1;
        transition: color var(--cat-speed) var(--cat-ease);
        box-sizing: border-box;
        white-space: nowrap;
    }

    .category-tab-content i {
        font-size: 20px;
        line-height: 1;
        transition: transform var(--cat-speed) var(--cat-ease), color var(--cat-speed) var(--cat-ease);
    }

    .category-radio-tab:hover .category-tab-content {
        color: #ffffff;
    }

    .category-radio-tab .cat-radio-input:checked + .category-tab-content {
        color: var(--cat-text-active);
        font-weight: 800;
    }

    .category-radio-tab .cat-radio-input:checked + .category-tab-content i {
        transform: scale(1.1);
        color: var(--cat-text-active);
    }

    /* Single sliding indicator with top rounded tabs and bottom scooped notches */
    .category-sliding-indicator {
        position: absolute;
        top: 6px;
        left: 0;
        height: calc(100% - 6px);
        background-color: var(--cat-surface);
        border-radius: var(--cat-radius-tab) var(--cat-radius-tab) 0 0;
        transition: transform var(--cat-speed) var(--cat-ease), width var(--cat-speed) var(--cat-ease), border-radius var(--cat-speed) var(--cat-ease);
        will-change: transform, width;
        z-index: 0;
        visibility: hidden;
    }

    .category-sliding-indicator::before,
    .category-sliding-indicator::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: var(--cat-notch);
        height: var(--cat-notch);
        background-color: var(--cat-accent);
        transition: opacity var(--cat-speed) var(--cat-ease);
    }

    .category-sliding-indicator::before {
        left: calc(var(--cat-notch) * -1);
        border-bottom-right-radius: var(--cat-radius-tab);
        box-shadow: 4px 4px 0 4px var(--cat-surface);
    }

    .category-sliding-indicator::after {
        right: calc(var(--cat-notch) * -1);
        border-bottom-left-radius: var(--cat-radius-tab);
        box-shadow: -4px 4px 0 4px var(--cat-surface);
    }

    /* When on FIRST menu option: bottom-left corner rounds inward, left notch is hidden */
    .category-sliding-indicator.is-first {
        border-bottom-left-radius: var(--cat-radius-tab);
    }

    .category-sliding-indicator.is-first::before {
        display: none;
    }

    /* When on LAST menu option: bottom-right corner rounds inward, right notch is hidden */
    .category-sliding-indicator.is-last {
        border-bottom-right-radius: var(--cat-radius-tab);
    }

    .category-sliding-indicator.is-last::after {
        display: none;
    }

    .category-sliding-indicator.is-ready {
        visibility: visible;
    }

    .category-chip {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        padding: 8px 10px;
        min-width: 68px;
        height: 60px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.15;
        box-sizing: border-box;
    }

    .category-chip i {
        font-size: 18px;
        margin-bottom: 1px;
    }

    .cat-chip-name {
        font-size: 10px;
        font-weight: 700;
        white-space: nowrap;
        text-align: center;
        letter-spacing: -0.01em;
        line-height: 1.1;
    }

    .shop-toolbar {
        padding: 10px 12px;
        margin-bottom: 1.25rem;
        gap: 8px;
    }

    .shop-search-box {
        min-width: 0;
        flex: 1;
    }

    .shop-search-input {
        font-size: 12.5px;
        padding: 8px 12px 8px 34px;
    }

    .btn-filter-mobile-toggle {
        display: inline-flex;
    }

    .shop-layout-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar-filters {
        display: none;
    }

    /* 2-Column Compact Mobile Product Grid */
    .products-display-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .product-card {
        padding: 0.75rem;
        border-radius: var(--radius-card);
    }

    .product-card-top {
        margin-bottom: 0.4rem;
    }

    .condition-badge {
        font-size: 8.5px;
        padding: 2px 6px;
    }

    .btn-wishlist-heart {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .product-image-container {
        aspect-ratio: 1.1;
        margin-bottom: 0.6rem;
    }

    .product-image-emoji {
        font-size: 2.8rem;
    }

    .delivery-tag {
        font-size: 8.5px;
        padding: 1px 6px;
        bottom: 4px;
        left: 4px;
    }

    .product-brand {
        font-size: 9.5px;
    }

    .product-title {
        font-size: 12.5px;
        line-height: 1.25;
        margin-bottom: 0.35rem;
        height: 32px;
    }

    .product-specs-pills {
        gap: 3px;
        margin-bottom: 0.5rem;
        height: 20px;
        overflow: hidden;
    }

    .spec-pill-tag, .battery-health-tag {
        font-size: 9px;
        padding: 1px 5px;
    }

    .product-meta-row {
        font-size: 10px;
        margin-bottom: 0.5rem;
    }

    .product-pricing-box {
        gap: 5px;
        margin-bottom: 0.65rem;
    }

    .product-selling-price {
        font-size: 14.5px;
    }

    .product-original-price {
        font-size: 11px;
    }

    .product-discount-pill {
        font-size: 9px;
        padding: 1px 4px;
    }

    .btn-quick-add {
        font-size: 11px;
        padding: 7px 8px;
        height: 32px;
    }

    .qty-stepper-control {
        padding: 2px 4px;
        height: 32px;
    }

    .btn-stepper {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .stepper-value {
        font-size: 12px;
    }

    .btn-card-compare {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    /* Mobile Sticky Cart Bar (Above mobile dock, with clear breathing room) */
    .sticky-float-cart-bar {
        bottom: 90px;
        left: 50%;
        transform: translate(-50%, 160%);
        width: calc(100% - 24px);
        max-width: 440px;
        padding: 6px 6px 6px 18px;
        border-radius: var(--radius-pill);
        box-sizing: border-box;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
        border: 1px solid rgba(218, 255, 189, 0.12);
        z-index: 1000;
        transition: transform 0.35s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }

    .sticky-float-cart-bar.is-visible {
        transform: translate(-50%, 0);
        opacity: 1;
        pointer-events: auto;
    }

    /* When bottom nav dock hides on scroll-down, cart bar slides down together and rests at bottom (16px) */
    .sticky-float-cart-bar.is-visible.dock-hidden {
        transform: translate(-50%, 74px);
    }

    .sticky-cart-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.15;
    }

    .sticky-cart-count {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .sticky-cart-price {
        font-size: 15px;
        font-weight: 900;
    }

    .sticky-cart-btn {
        height: 44px;
        min-width: 82px;
        padding: 0 16px;
        font-size: 12px;
        font-weight: 800;
        border-radius: var(--radius-pill);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-sizing: border-box;
    }

    /* Mobile Comparison Bar */
    .compare-floating-dock {
        bottom: 135px;
        right: 12px;
        padding: 6px 12px;
        font-size: 11.5px;
    }

    /* Cart Drawer Slide Up from Bottom on Mobile (Exact matching Bottom Sheet Drawer experience) */
    .cart-drawer-backdrop {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        z-index: 1250;
    }

    .cart-drawer-panel {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        height: auto;
        border-radius: 24px 24px 0 0;
        border: 1px solid var(--border-subdued);
        border-bottom: none;
        box-shadow: var(--shadow-heavy);
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cart-drawer-backdrop.is-open .cart-drawer-panel {
        transform: translateY(0);
    }

    .cart-drawer-header {
        padding: 0.75rem 1.25rem 1rem;
    }

    .cart-items-scroll-area {
        max-height: 48vh;
        padding: 1rem 1.25rem;
    }

    .cart-drawer-footer {
        padding: 1rem 1.25rem 1.75rem;
    }
}

/* Light Theme Overrides */
[data-theme="light"] .shop-hero-banner-section {
    background-color: #ffffff;
    border: none;
    box-shadow: none;
}

[data-theme="light"] .shop-page-wrapper {
    background-color: var(--color-bg-deep);
}

[data-theme="light"] .mobile-shop-header-bar {
    background-color: #ffffff;
    border-bottom: none;
    box-shadow: none;
}

[data-theme="light"] .mobile-shop-header-bar.is-collapsed {
    box-shadow: none;
}

[data-theme="light"] .logo-small a {
    color: #5b7d3d;
}

[data-theme="light"] .delivery-time-big {
    color: #091500;
}

[data-theme="light"] .mobile-location-chip {
    background: transparent;
    border: none;
    color: #2f5213;
}

[data-theme="light"] .location-address {
    color: #091500;
}

[data-theme="light"] .location-eta {
    color: #4ab300;
}

[data-theme="light"] .mobile-shop-search-input {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .mobile-shop-search-input:focus {
    background-color: #ffffff;
    border-color: var(--color-primary);
}

[data-theme="light"] .btn-filter-mobile-toggle {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .btn-filter-mobile-toggle:hover,
[data-theme="light"] .btn-filter-mobile-toggle:active {
    background-color: #eaf7df;
    border-color: var(--color-primary);
}

[data-theme="light"] .shop-search-box i,
[data-theme="light"] .mobile-shop-search-box i {
    color: #5b7d3d;
}

[data-theme="light"] .shop-categories-wrapper {
    background-color: rgba(255, 255, 255, 0.96);
    border: none;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
}

[data-theme="light"] .category-chip {
    background-color: #ffffff;
    border-color: #dbeec6;
    color: #2f5213;
}

[data-theme="light"] .category-chip:hover {
    background-color: #f2faec;
    color: #091500;
}

[data-theme="light"] .radio-tabs-track {
    --cat-accent: #e4f7d5;
    --cat-surface: #ffffff;
    --cat-text-active: #091500;
    --cat-text-idle: #3d6a22;
    --cat-radius-outer: 20px;
    --cat-radius-tab: 15px;
    --cat-notch: 16px;

    background-color: var(--cat-accent);
    border: none;
    overflow: hidden;
}

[data-theme="light"] .category-tab-content {
    color: var(--cat-text-idle);
}

[data-theme="light"] .category-radio-tab:hover .category-tab-content {
    color: var(--cat-text-active);
}

[data-theme="light"] .category-radio-tab .cat-radio-input:checked + .category-tab-content {
    color: var(--cat-text-active);
}

[data-theme="light"] .category-radio-tab .cat-radio-input:checked + .category-tab-content i {
    color: var(--cat-text-active);
}

[data-theme="light"] .category-sliding-indicator {
    background-color: var(--cat-surface);
    box-shadow: 0 2px 8px rgba(9, 21, 0, 0.08);
}

[data-theme="light"] .category-sliding-indicator::before,
[data-theme="light"] .category-sliding-indicator::after {
    background-color: var(--cat-accent);
}

[data-theme="light"] .category-sliding-indicator::before {
    box-shadow: 4px 4px 0 4px var(--cat-surface);
}

[data-theme="light"] .category-sliding-indicator::after {
    box-shadow: -4px 4px 0 4px var(--cat-surface);
}

[data-theme="light"] .category-chip.active {
    background-color: #4ab300;
    color: #ffffff;
    border-color: #4ab300;
}

[data-theme="light"] .shop-toolbar {
    background-color: #ffffff;
    border-color: #dbeec6;
}

[data-theme="light"] .shop-search-input {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .filter-select {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .shop-sidebar-filters {
    background-color: #ffffff;
    border-color: #dbeec6;
}

[data-theme="light"] .sidebar-filter-section {
    border-bottom-color: #dbeec6;
}

[data-theme="light"] .sidebar-filter-title {
    color: #091500;
}

[data-theme="light"] .filter-checkbox-item {
    color: #2f5213;
}

[data-theme="light"] .shop-hero-carousel {
    background: linear-gradient(135deg, #eaf7df 0%, #f6fcf0 100%);
    border-color: #dbeec6;
}

[data-theme="light"] .product-card {
    background-color: #ffffff;
    border-color: #dbeec6;
}

[data-theme="light"] .product-card:hover {
    background-color: #fcfdfa;
    border-color: var(--color-primary);
}

[data-theme="light"] .product-image-container {
    background-color: #f2faec;
    border-color: #dbeec6;
}

[data-theme="light"] .spec-pill-tag {
    background-color: #edf7e4;
    border-color: #dbeec6;
    color: #2f5213;
}

[data-theme="light"] .btn-wishlist-heart {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #5b7d3d;
}

[data-theme="light"] .btn-card-compare {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #2f5213;
}

[data-theme="light"] .compare-floating-dock {
    background-color: #ffffff;
    border-color: #dbeec6;
    box-shadow: 0 10px 30px rgba(9, 21, 0, 0.1);
}

[data-theme="light"] .modal-content-panel {
    background-color: #ffffff;
    border-color: #dbeec6;
}

[data-theme="light"] .spec-table th {
    background-color: #f2faec;
    color: #091500;
    border-color: #dbeec6;
}

[data-theme="light"] .spec-table td {
    border-color: #dbeec6;
    color: #2f5213;
}

[data-theme="light"] .cart-drawer-panel,
[data-theme="light"] .mobile-filter-sheet {
    background-color: #ffffff;
    border-color: #dbeec6;
}

[data-theme="light"] .cart-item-row {
    background-color: #f2faec;
    border-color: #dbeec6;
}

[data-theme="light"] .btn-stepper {
    background-color: #ffffff;
    color: #091500;
}

[data-theme="light"] .mobile-profile-btn {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .mobile-profile-sheet {
    background-color: #ffffff;
    border-color: #dbeec6;
}

[data-theme="light"] .profile-settings-section,
[data-theme="light"] .profile-link-item {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .user-name {
    color: #091500;
}

[data-theme="light"] .theme-segmented-control {
    background-color: #eaf7df;
    border-color: #dbeec6;
}

[data-theme="light"] .theme-option-btn {
    color: #2f5213;
}

[data-theme="light"] .theme-option-btn.active {
    background-color: #4ab300;
    color: #ffffff;
}

[data-theme="light"] .sticky-float-cart-bar {
    background-color: #4ab300;
    border: 1px solid #3d9400;
    box-shadow: 0 12px 35px rgba(9, 21, 0, 0.2);
}

[data-theme="light"] .sticky-cart-price,
[data-theme="light"] .sticky-cart-count {
    color: #ffffff;
}

[data-theme="light"] .sticky-cart-btn {
    background-color: #ffffff;
    color: #091500;
}

[data-theme="light"] .sticky-cart-btn:hover,
[data-theme="light"] .sticky-cart-btn:active {
    background-color: #f2faec;
    color: #4ab300;
}


