/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --fg: #0d0d0d;
    --card: #fafafa;
    --card-fg: #0d0d0d;
    --primary: #0d0d0d;
    --primary-fg: #ffffff;
    --secondary: #f2f2f2;
    --secondary-fg: #1a1a1a;
    --muted: #ededed;
    --muted-fg: #666666;
    --accent: #e6e6e6;
    --accent-fg: #0d0d0d;
    --border: #e0e0e0;
    --input: #e0e0e0;
    --ring: #0d0d0d;
    --destructive: #e53e3e;
    --destructive-fg: #ffffff;
    --whatsapp: #25a244;
    --whatsapp-fg: #ffffff;
    --success: #25a244;
    --success-fg: #ffffff;
    --radius: 0.5rem;
    --shadow-card: 0 2px 20px -4px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 8px 40px -8px rgba(0, 0, 0, 0.15);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: var(--font-body);
    font-size: 0.875rem;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-fg);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-block {
    width: 100%;
}

.btn-success {
    background: var(--success);
    color: var(--success-fg);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

/* Home page: header overlays the slider */
.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: none;
    transition: background 0.3s, border-color 0.3s;
}

.home-page .top-bar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.home-page .main-nav {
    background: transparent;
}

.home-page .logo-img {
    filter: invert(1) brightness(2);
}

.home-page .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

.home-page .nav-links a:hover {
    color: #fff;
}

.home-page .cart-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(6px);
}

.home-page .cart-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.home-page .cart-badge {
    background: #fff;
    color: #0d0d0d;
}

/* Sticky header on scroll (JS-toggled) */
.home-page .site-header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.home-page .site-header.scrolled .top-bar {
    background: var(--primary);
    backdrop-filter: none;
}

.home-page .site-header.scrolled .logo-img {
    filter: none;
}

.home-page .site-header.scrolled .nav-links a {
    color: var(--muted-fg);
}

.home-page .site-header.scrolled .nav-links a:hover {
    color: var(--fg);
}

.home-page .site-header.scrolled .cart-btn {
    background: var(--secondary);
    color: var(--secondary-fg);
    backdrop-filter: none;
}

.home-page .site-header.scrolled .cart-btn:hover {
    background: var(--accent);
}

.home-page .site-header.scrolled .cart-badge {
    background: var(--primary);
    color: var(--primary-fg);
}

.top-bar {
    background: var(--primary);
    color: var(--primary-fg);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.75rem;
    letter-spacing: 0.025em;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-links a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

.top-bar-location {
    display: none;
}

@media (min-width: 640px) {
    .top-bar-location {
        display: block;
    }
}

.main-nav {
    padding: 0;
}

.main-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--muted-fg);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--fg);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    background: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-fg);
    transition: background 0.2s;
}

.cart-btn:hover {
    background: var(--accent);
}

.cart-btn-text {
    display: none;
}

@media (min-width: 640px) {
    .cart-btn-text {
        display: inline;
    }
}

.cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 0.625rem;
    font-weight: 700;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    animation: fadeIn 0.6s ease-out;
}

.hero-label {
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
}

.hero-slide h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--primary-fg);
    line-height: 1.1;
}

.hero-slide h1 span {
    font-weight: 300;
}

.hero-desc {
    margin-bottom: 2rem;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    background: var(--primary-fg);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.hero-btn-primary:hover {
    transform: scale(1.05);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-fg);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-arrow-prev { left: 1rem; }
.hero-arrow-next { right: 1rem; }

@media (min-width: 768px) {
    .hero-slide h1 {
        font-size: 4.5rem;
    }
    .hero-arrow {
        width: 48px;
        height: 48px;
    }
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 4rem 0;
    background: #f7f7f8;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 420px;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-bg {
    transform: scale(1.06);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.85) 0%, rgba(10, 20, 30, 0.4) 50%, rgba(10, 20, 30, 0.15) 100%);
    z-index: 1;
}

.category-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.category-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.category-card-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.category-card-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.65rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.category-card:hover .category-card-btn {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 4rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-featured-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #f59e0b;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== SECTION HEADER ROW ===== */
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-header-row p {
    margin: 0;
}

.view-all-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== PRODUCT CAROUSEL ===== */
.product-carousel-wrap {
    position: relative;
}

.product-carousel {
    overflow: hidden;
    margin: 0 -0.75rem;
}

.product-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0.75rem 1rem;
}

.product-carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    min-width: 260px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--fg);
    border: 1px solid var(--border);
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: all 0.2s;
}

.carousel-arrow:hover {
    background: var(--primary);
    color: var(--primary-fg);
    border-color: var(--primary);
}

.carousel-arrow-left { left: -0.5rem; }
.carousel-arrow-right { right: -0.5rem; }

@media (max-width: 768px) {
    .carousel-arrow { display: none; }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-header p {
    max-width: 32rem;
    margin: 0 auto;
    font-size: 0.875rem;
    color: var(--muted-fg);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

/* Brand filter */
.brand-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.brand-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    background: var(--secondary);
    color: var(--secondary-fg);
}

.brand-filter-btn:hover {
    background: var(--accent);
}

.brand-filter-btn.active {
    background: var(--primary);
    color: var(--primary-fg);
    box-shadow: var(--shadow-elevated);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product card */
.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    animation: fadeIn 0.4s ease-out both;
}

.product-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--secondary);
    margin-bottom: 1rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 0.625rem;
    font-weight: 700;
}

.product-brand-tag {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--card-fg);
    font-size: 0.625rem;
    font-weight: 500;
}

.product-category {
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-fg);
}

.product-name {
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--card-fg);
    line-height: 1.3;
}

.product-desc {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--muted-fg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--card-fg);
}

.product-mrp {
    font-size: 0.75rem;
    color: var(--muted-fg);
    text-decoration: line-through;
}

.product-add-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    background: var(--primary);
    color: var(--primary-fg);
}

.product-add-btn:hover {
    opacity: 0.9;
}

.product-add-btn:active {
    transform: scale(0.98);
}

.product-add-btn.in-cart {
    background: var(--success);
    color: var(--success-fg);
    cursor: default;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.cart-overlay.open {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 51;
    width: 100%;
    max-width: 28rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    box-shadow: var(--shadow-elevated);
    transition: right 0.3s ease;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
}

.cart-close-btn {
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.cart-close-btn:hover {
    background: var(--secondary);
}

.cart-empty {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
}

.cart-empty p {
    font-size: 0.875rem;
    color: var(--muted-fg);
}

.cart-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.cart-select-all {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--muted-fg);
}

.cart-select-all input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.cart-item-checkbox {
    margin-top: 1rem;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.cart-item-img {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 0.375rem;
    object-fit: cover;
    background: var(--secondary);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-brand {
    font-size: 0.625rem;
    color: var(--muted-fg);
}

.cart-item-price {
    margin-top: 0.25rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    padding: 0.25rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--secondary);
}

.cart-item-qty {
    width: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-item-remove {
    margin-left: auto;
    padding: 0.25rem;
    border-radius: 0.375rem;
    color: var(--destructive);
    transition: background 0.2s;
}

.cart-item-remove:hover {
    background: rgba(229, 62, 62, 0.1);
}

.cart-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-footer-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-fg);
}

.cart-total {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fg);
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border);
    background: url('https://images.unsplash.com/photo-1616348436168-de43ad0db179?w=1600&h=800&fit=crop') center/cover no-repeat;
    color: var(--primary-fg);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.50) 0%, rgba(13, 13, 13, 0.96) 100%);
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.footer-logo span {
    font-weight: 300;
}

.footer-desc {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-brands {
    display: flex;
    gap: 0.75rem;
}

.footer-brand-tag {
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 600;
}

.footer-heading {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--whatsapp-fg);
    box-shadow: var(--shadow-elevated);
    transition: transform 0.2s;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
}

.whatsapp-fab:active {
    transform: scale(0.95);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
    min-height: 100vh;
    background: var(--bg);
}

.checkout-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-fg);
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--fg);
}

.checkout-title {
    margin-bottom: 2rem;
    font-size: 1.875rem;
    font-weight: 700;
}

/* Steps indicators */
.steps-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
}

.step-number.active {
    background: var(--primary);
    color: var(--primary-fg);
}

.step-number.done {
    background: var(--success);
    color: var(--success-fg);
}

.step-number.pending {
    background: var(--secondary);
    color: var(--secondary-fg);
}

.step-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.step-divider {
    width: 3rem;
    height: 1px;
    background: var(--border);
    margin: 0 0.5rem;
}

/* Checkout grid */
.checkout-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 3fr 2fr;
    }
}

/* Form */
.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-row-2 {
    grid-template-columns: 1fr;
}

.form-row-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .form-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-fg);
}

.form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--bg);
    outline: none;
    transition: box-shadow 0.2s;
}

.form-input:focus {
    box-shadow: 0 0 0 2px var(--ring);
}

textarea.form-input {
    resize: none;
}

/* Payment method radio */
.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
}

.payment-option:hover {
    border-color: var(--muted-fg);
}

.payment-option.selected {
    border-color: var(--primary);
    background: var(--secondary);
}

.payment-option input[type="radio"] {
    accent-color: var(--primary);
}

.payment-option-label {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
}

.payment-option-desc {
    font-size: 0.75rem;
    color: var(--muted-fg);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.form-actions .btn {
    flex: 1;
}

/* Order summary sidebar */
.order-summary {
    position: sticky;
    top: 6rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    background: var(--card);
    box-shadow: var(--shadow-card);
}

.order-summary-title {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.order-summary-items {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-item img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    object-fit: cover;
    background: var(--secondary);
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-qty {
    font-size: 0.625rem;
    color: var(--muted-fg);
}

.order-item-price {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
}

.order-summary-totals {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-fg);
}

.order-summary-row .free {
    color: var(--success);
    font-weight: 500;
}

.order-summary-grand {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
}

.order-summary-grand span:first-child {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
}

.order-summary-grand span:last-child {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

/* Success page */
.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 1.5rem;
    padding: 1rem;
    animation: fadeIn 0.4s ease-out;
}

.success-icon {
    color: var(--success);
}

.success-page h1 {
    font-size: 1.875rem;
    font-weight: 700;
}

.success-page p {
    max-width: 28rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-fg);
}

.success-actions {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--whatsapp-fg);
}

/* Empty checkout */
.empty-checkout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 1rem;
    padding: 1rem;
}

.empty-checkout p {
    font-size: 0.875rem;
    color: var(--muted-fg);
}

/* 404 page */
.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
}

.not-found h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--muted-fg);
}

.not-found p {
    font-size: 1.125rem;
    color: var(--muted-fg);
}

/* ===== PRODUCT DETAIL PAGE ===== */

/* Product Card Link */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Breadcrumb */
.product-breadcrumb {
    border-bottom: 1px solid var(--border);
    background: var(--secondary);
}

.product-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
}

.product-breadcrumb a {
    color: var(--muted-fg);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: var(--fg);
}

.product-breadcrumb svg {
    color: var(--muted-fg);
    flex-shrink: 0;
}

.product-breadcrumb span {
    color: var(--fg);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Detail Layout */
.product-detail {
    padding: 2.5rem 0 3rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Image */
.product-detail-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--secondary);
    aspect-ratio: 1;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-detail-image:hover img {
    transform: scale(1.05);
}

.product-detail-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--destructive);
    color: var(--destructive-fg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.025em;
}

/* Info */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-detail-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-detail-brand {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-detail-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--muted-fg);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.product-detail-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--fg);
}

.product-detail-sku {
    font-size: 0.8125rem;
    color: var(--muted-fg);
    font-family: monospace;
}

/* Pricing */
.product-detail-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-detail-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--fg);
}

.product-detail-mrp {
    font-size: 1.125rem;
    color: var(--muted-fg);
    text-decoration: line-through;
}

.product-detail-discount {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(37, 162, 68, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

/* Stock */
.product-detail-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-detail-stock.in-stock {
    color: var(--success);
}

.product-detail-stock.out-of-stock {
    color: var(--destructive);
}

/* Description */
.product-detail-description {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.product-detail-description h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--fg);
}

.product-detail-description p {
    font-size: 0.9375rem;
    color: var(--muted-fg);
    line-height: 1.7;
}

/* Color Variants */
.product-detail-colors {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.product-detail-colors h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--fg);
}

.product-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-color-swatch {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.product-color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Actions */
.product-detail-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-detail-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 2.5rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--secondary);
    color: var(--fg);
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--accent);
}

.qty-input {
    width: 3.5rem;
    height: 2.75rem;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 500;
    background: var(--bg);
    color: var(--fg);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail-add-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-fg);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.product-detail-add-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.product-detail-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* WhatsApp Enquiry */
.product-detail-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--whatsapp);
    color: var(--whatsapp-fg);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}

.product-detail-whatsapp:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Related Products */
.related-products {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--border);
    background: var(--secondary);
}

.related-products-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-products-grid .product-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Responsive Product Detail */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-detail-image {
        aspect-ratio: 4/3;
    }

    .product-detail-name {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.5rem;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-qty {
        width: 100%;
        justify-content: center;
    }

    .product-detail-add-btn {
        width: 100%;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-breadcrumb .container {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 4rem 0;
    background-color: #0d0d0d;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.brands-section .section-header h2 {
    color: #fff;
}

.brands-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111827;
    padding: 2.5rem 1.5rem;
    gap: 1rem;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: #1a2332;
}

.brand-card-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 140px;
}

.brand-card-logo .brand-card-img {
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.35s ease;
}

.brand-card:hover .brand-card-img {
    transform: scale(1.08);
}

.brand-card-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.brand-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.brand-card-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.65rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.brand-card:hover .brand-card-btn {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* ===== ABOUT BUSINESS SECTION ===== */
.about-business-section {
    padding: 5rem 0;
}

.about-business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-business-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.about-business-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-business-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-business-title {
        font-size: 2.5rem;
    }
}

.about-business-desc {
    font-size: 0.9375rem;
    color: var(--muted-fg);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-business-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .about-business-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-stat {
    text-align: center;
    padding: 1rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--secondary);
}

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.6875rem;
    color: var(--muted-fg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-business-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.about-business-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    transition: all 0.2s;
}

.about-feature:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: var(--secondary);
    color: var(--primary);
}

.about-feature h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.8125rem;
    color: var(--muted-fg);
    line-height: 1.5;
}

/* ===== SHOP PAGE ===== */
.shop-header {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
    background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1600&h=500&fit=crop') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.88) 0%, rgba(30, 41, 59, 0.82) 100%);
    pointer-events: none;
}

.shop-header .container {
    position: relative;
    z-index: 1;
}

.shop-header .product-breadcrumb a,
.shop-header .product-breadcrumb span,
.shop-header .product-breadcrumb svg {
    color: rgba(255, 255, 255, 0.6);
    stroke: rgba(255, 255, 255, 0.4);
}

.shop-header .product-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.shop-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0.75rem;
    color: #fff;
}

.shop-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.shop-section {
    padding: 2rem 0 3rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    padding: 1.25rem;
}

.shop-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.shop-filter-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.shop-clear-filters {
    font-size: 0.75rem;
    color: var(--destructive);
    text-decoration: none;
    font-weight: 500;
}

.shop-clear-filters:hover {
    text-decoration: underline;
}

.shop-filter-group {
    margin-bottom: 1.25rem;
}

.shop-filter-group h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-fg);
}

.shop-search-input {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.shop-search-input input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: none;
    outline: none;
    font-size: 0.8125rem;
    background: var(--bg);
}

.shop-search-input button {
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    color: var(--primary-fg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.shop-filter-list {
    list-style: none;
}

.shop-filter-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    color: var(--fg);
    text-decoration: none;
    transition: all 0.15s;
}

.shop-filter-list li a:hover {
    background: var(--secondary);
}

.shop-filter-list li a.active {
    background: var(--primary);
    color: var(--primary-fg);
    font-weight: 600;
}

.filter-count {
    font-size: 0.6875rem;
    color: var(--muted-fg);
    background: var(--secondary);
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
}

.shop-filter-list li a.active .filter-count {
    background: rgba(255,255,255,0.2);
    color: var(--primary-fg);
}

/* Shop grid */
.shop-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile filter toggle */
.shop-filter-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        overflow-y: auto;
        border-radius: 0;
        border: none;
    }

    .shop-sidebar.open {
        display: block;
    }

    .shop-filter-toggle {
        display: inline-flex;
    }
}

/* Empty state */
.shop-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted-fg);
}

.shop-empty svg {
    margin: 0 auto 1rem;
    opacity: 0.4;
}

.shop-empty h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--fg);
}

.shop-empty p {
    margin-bottom: 1.5rem;
}

/* Pagination */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--fg);
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.2s;
}

.page-btn:hover {
    background: var(--secondary);
}

.page-btn.active {
    background: var(--primary);
    color: var(--primary-fg);
    border-color: var(--primary);
}

.page-dots {
    padding: 0 0.25rem;
    color: var(--muted-fg);
}

/* ===== WHOLESALE PAGE ===== */
.wholesale-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a2e);
    color: #fff;
    text-align: center;
}

.wholesale-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.wholesale-hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.wholesale-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.wholesale-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.wholesale-benefit svg {
    color: var(--whatsapp);
}

.wholesale-section {
    padding: 3rem 0;
}

.wholesale-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .wholesale-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wholesale-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wholesale-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wholesale-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.wholesale-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--secondary);
}

.wholesale-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wholesale-card-body {
    padding: 1.25rem;
}

.wholesale-card-brand {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-fg);
    margin-bottom: 0.25rem;
}

.wholesale-card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.wholesale-pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.wholesale-card-retail {
    font-size: 0.8125rem;
    color: var(--muted-fg);
    text-decoration: line-through;
}

.wholesale-card-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

.wholesale-card-save {
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(37,162,68,0.1);
    color: var(--success);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.wholesale-min-qty {
    font-size: 0.75rem;
    color: var(--muted-fg);
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--secondary);
    border-radius: 0.25rem;
    text-align: center;
}

.wholesale-card-actions {
    display: flex;
    gap: 0.5rem;
}

.wholesale-card-actions .btn {
    flex: 1;
    font-size: 0.8125rem;
    padding: 0.5rem;
}

.wholesale-card-actions .btn-whatsapp {
    background: var(--whatsapp);
    color: var(--whatsapp-fg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 5rem 0;
    background: var(--secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--bg);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--primary-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fg);
}

.review-date {
    font-size: 0.75rem;
    color: var(--muted-fg);
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.4rem;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--muted-fg);
}

.reviews-actions {
    text-align: center;
}

/* Review Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.review-modal {
    background: var(--bg);
    border-radius: 1rem;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.review-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.review-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted-fg);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
}

.modal-close:hover {
    background: var(--secondary);
}

.review-form {
    padding: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1rem;
}

.review-form .form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating .star {
    font-size: 1.75rem;
    color: var(--border);
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}

.star-rating .star.active {
    color: #f59e0b;
}

.star-rating .star:hover {
    transform: scale(1.2);
}

/* Reviews Responsive */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        padding: 3rem 0;
    }

    .review-modal {
        max-width: 100%;
        border-radius: 0.75rem;
    }
}
