/* ===== GOOGLE FONTS — Smooth & Modern (like Bewakoof) ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CSS VARIABLES - Premium Style like Urban Monkey ===== */

:root {
    /* Brand Colors */
    --red: #dc2626;
    --red-dark: #b91c1c;
    --black: #000000;
    --white: #ffffff;

    /* Grayscale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-body: 'Nunito', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Nunito', 'DM Sans', sans-serif;

    /* Layout */
    --wrapper-mw: 1420px;

    /* Colors from Urban Monkey */
    --t4s-success-color: #428445;
    --t4s-warning-color: #e0b252;
    --t4s-error-color: #EB001B;
    --t4s-light-color: #ffffff;
    --t4s-dark-color: #222222;
    --t4s-highlight-color: #ec0101;

    /* Shopify-like Variables */
    --text-color: #000000;
    --heading-color: #000000;
    --accent-color: #000000;
    --border-color: #ddd;
    --border-primary-color: #000000;
    --button-background: #000000;
    --button-color: #fff;
    --button-background-hover: #333333;
    --button-color-hover: #fff;
    --sale-badge-background: #dc2626;
    --sale-badge-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Wishlist Heart - Keep Red Color */
.wishlist-heart.active {
    color: #d32f2f !important;
}

/* Product Names and Prices - Larger fonts */
.product-name, .product-title, .item-name {
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

.product-price, .item-price, .price-display {
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

/* Brand Names */
.brand-name, .product-brand {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Material/Description */
.product-material, .item-material, .product-desc {
    font-size: 12px !important;
    color: var(--gray-500) !important;
}

/* ===== PREMIUM UTILITIES ===== */
.t4s-dn {
    display: none !important;
}

.t4s-d-lg-none {
    display: none;
}

@media (min-width: 1024px) {
    .t4s-d-lg-none {
        display: block;
    }
}

/* Selection styling */
::selection {
    background: #999;
    color: var(--white);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--black);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
}

.marquee {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.announcement-bar:hover .marquee {
    animation-play-state: paused;
}

/* ===== CATEGORY MARQUEE BAR (THIN) ===== */
.category-marquee-bar {
    background: var(--red);
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.marquee-thin {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-thin span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    padding-right: 20px;
    text-transform: uppercase;
}

.category-marquee-bar:hover .marquee-thin {
    animation-play-state: paused;
}

/* ===== BANNER CONTENT STYLING ===== */
.banner-content {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 500px;
}

.banner-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.banner-cta {
    background: var(--red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

@media (max-width: 768px) {
    .banner-content {
        left: 20px;
        bottom: 20px;
        max-width: 300px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14px;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    position: relative;
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.2s;
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* Nav Left (Hamburger + Search) */
.nav-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Nav Links - Hidden on mobile */
.nav-links {
    display: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

/* Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Wishlist Button */
.wishlist-btn:hover {
    color: var(--red);
}

/* Logo - Center aligned with flex */
.logo {
    font-family: 'Impact', 'Haettenschweiler', 'Arial Black', sans-serif;
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .logo {
        font-size: 28px;
    }
}

.logo .trademark {
    font-size: 10px;
    vertical-align: super;
    color: var(--gray-600);
    margin-left: 2px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-800);
    transition: all 0.2s;
    text-decoration: none;
}

.icon-btn:hover {
    background: var(--gray-100);
    color: var(--red);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SIDE MENU (Slides from Left) ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
}

.close-menu {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-menu:hover {
    background: var(--gray-100);
}

.side-menu-content {
    padding: 16px 0;
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s;
    cursor: pointer;
}

.menu-item:hover {
    background: var(--gray-50);
    color: var(--red);
}

.menu-item.highlight {
    color: var(--red);
}

.menu-badge {
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

.menu-item .plus {
    font-size: 20px;
    font-weight: 300;
    color: var(--gray-600);
}

.side-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.sub-brand-section {
    margin-bottom: 24px;
}

.sub-brand-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.sub-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sub-brand-card {
    text-align: center;
}

.sub-brand-img {
    aspect-ratio: 1;
    background: var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.sub-brand-desc {
    font-size: 8px;
    color: var(--gray-600);
    line-height: 1.3;
}

.menu-bottom-links {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray-800);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s;
    padding: 8px;
    border-radius: 8px;
}

.bottom-link:hover {
    color: var(--red);
    background: var(--gray-50);
}

/* ===== SEARCH OVERLAY (Slides from Top) ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1002;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-overlay.active {
    transform: translateY(0);
}

.search-overlay-header {
    padding: 16px 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--gray-200);
}

.close-search {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-search:hover {
    background: var(--gray-100);
}

.search-overlay-content {
    padding: 40px 20px 60px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid var(--black);
    padding-bottom: 8px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    font-size: 24px;
    font-weight: 500;
    outline: none;
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: var(--gray-400);
}

.search-submit {
    width: 48px;
    height: 48px;
    background: var(--black);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.search-submit:hover {
    background: var(--red);
    transform: scale(1.05);
}

/* ===== BANNER SLIDER ===== */
.banner-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    background: var(--gray-900);
    touch-action: pan-y;
    user-select: none;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Touch swipe support */
.banner-slider.swiping {
    cursor: grab;
}

.banner-slider.swiping .slides {
    transition: none;
}

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

/* Desktop/Mobile specific banner images */
.slide .desktop-only {
    display: block;
}

.slide .mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .slide .desktop-only {
        display: none;
    }

    .slide .mobile-only {
        display: block;
    }

    .slide img {
        object-fit: cover;
        object-position: center top;
    }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.slide-overlay.red {
    background: linear-gradient(to right, rgba(185, 28, 28, 0.9), rgba(220, 38, 38, 0.6));
}

.slide-overlay.dark {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(31, 41, 55, 0.7));
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    color: var(--white);
    max-width: 600px;
    z-index: 3;
}

.slide-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.slide-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.slide-desc {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
}

/* Slider Arrows - HIDDEN */
.slider-arrow {
    display: none;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

/* ===== CATEGORY ICONS - BEWAKOOF STYLE ===== */
.category-icons-section {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.category-icons {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.category-icons::-webkit-scrollbar {
    display: none;
}

.cat-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 72px;
    transition: all 0.2s;
    padding: 8px;
    border-radius: 12px;
}

.cat-icon:hover {
    transform: translateY(-4px);
    background: var(--gray-50);
}

.cat-icon-img {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cat-icon:hover .cat-icon-img {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cat-icon span {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

.cat-icon:hover span {
    color: var(--red);
}

@media (max-width: 768px) {
    .category-icons {
        justify-content: flex-start;
        padding: 16px;
    }

    .cat-icon {
        min-width: 70px;
    }

    .cat-icon-img {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* ===== FILTER TABS ===== */
.filter-tabs-section {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 73px;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
}

.filter-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    padding: 10px 20px;
    border: 2px solid var(--gray-800);
    background: var(--white);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    color: var(--gray-800);
}

.filter-tab:hover {
    background: var(--gray-800);
    color: var(--white);
}

.filter-tab.active {
    background: var(--gray-800);
    color: var(--white);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
    cursor: pointer;
    font-size: 14px;
}

.btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.feature-item span:first-child {
    font-size: 18px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 64px 0;
}

.products-section {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--gray-900);
}

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

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.category-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    transition: all 0.3s;
}

.category-card:hover .category-bg {
    background: linear-gradient(to top, rgba(220, 38, 38, 0.8), rgba(220, 38, 38, 0.3));
}

.category-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.category-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.category-content p {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s;
}

.category-card:hover .category-content p {
    transform: translateX(4px);
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.product-card {
    background: var(--white);
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

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

.product-placeholder {
    font-size: 48px;
    opacity: 0.3;
}

/* Product Badge - SALE tag */
.product-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wishlist Heart - Bottom position near price */
.wishlist-heart-small {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-500);
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.wishlist-heart-small:hover {
    color: var(--red);
    transform: scale(1.1);
}

.wishlist-heart-small.active {
    color: var(--red);
}

.wishlist-heart-small svg {
    width: 18px;
    height: 18px;
}

/* Product Price Row with Heart */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.product-info {
    padding: 8px 4px;
}

.product-brand {
    font-size: 11px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.product-price .current {
    font-size: 14px;
    font-weight: 800;
    color: var(--black);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.product-price .original {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 6px;
    font-family: var(--font-heading);
}

.product-price .discount {
    font-size: 11px;
    font-weight: 800;
    color: var(--red);
    margin-left: 6px;
    font-family: var(--font-heading);
}


/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.3s;
}

.why-card:hover {
    background: var(--gray-50);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.why-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 64px 0;
    background: var(--gray-900);
    color: var(--white);
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.newsletter-content h2 .red {
    color: var(--red);
}

.newsletter-content p {
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.newsletter-form input {
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    outline: none;
    flex: 1;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--red);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--red-dark);
}

/* ===== LIVE ORDERS TICKER ===== */
.orders-ticker-section {
    background: var(--black);
    color: var(--white);
    padding: 16px 0;
    overflow: hidden;
}

.ticker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ticker-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    font-size: 14px;
    font-weight: 500;
    padding: 0 40px;
    color: var(--gray-200);
}

.ticker-item::after {
    content: "•";
    margin-left: 40px;
    color: var(--red);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--red);
    color: var(--white);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.footer-links a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--red);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.payment-methods span {
    padding: 8px 16px;
    background: var(--gray-200);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.legal-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-links a {
    font-size: 13px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: var(--red);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .slide-title {
        font-size: 56px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-card {
        height: 240px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        flex-direction: row;
    }
}

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

    .mobile-menu-btn {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 75vh !important;
        min-height: 500px !important;
        max-height: 800px !important;
    }
}

@media (min-width: 1024px) {
    .banner-slider {
        height: 75vh;
    }

    .slide-title {
        font-size: 64px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 40px;
    }
}

/* ===== AUTH PAGE LOGO ===== */
.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo-link {
    display: inline-block;
}

.auth-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* ===== WHATSAPP FLOATING BUTTON (Like Urban Monkey) ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ===== SKELETON LOADING (Premium Feature) ===== */
.ske-shine {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* ===== MOBILE/DESKTOP ONLY UTILITIES ===== */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: block !important;
    }
}

/* ===== DESKTOP NAVIGATION MENU ===== */
.desktop-nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav-menu {
        display: flex;
        align-items: center;
        gap: 28px;
        position: absolute;
        left: 80px;
    }

    .nav-menu-item {
        text-decoration: none;
        color: var(--gray-800);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.2s;
        padding: 8px 0;
        position: relative;
    }

    .nav-menu-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--red);
        transition: width 0.2s;
    }

    .nav-menu-item:hover {
        color: var(--red);
    }

    .nav-menu-item:hover::after {
        width: 100%;
    }

    .nav-menu-item.highlight {
        background: var(--black);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 20px;
    }

    .nav-menu-item.highlight:hover {
        background: var(--red);
        color: var(--white);
    }

    .nav-menu-item.highlight::after {
        display: none;
    }
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-around;
    padding: 8px 0 12px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--gray-800);
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    transition: all 0.2s;
    position: relative;
    border-radius: 8px;
}

.bottom-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.bottom-nav-item.active {
    color: var(--red);
    background: var(--gray-50);
}

.bottom-nav-item:hover {
    background: var(--gray-50);
    color: var(--red);
}

.bottom-nav-item.cart-badge {
    position: relative;
}

.badge-count {
    position: absolute;
    top: -4px;
    right: 8px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add padding to body for bottom nav */
@media (max-width: 1023px) {
    body {
        padding-bottom: 70px;
    }
}

/* ===== MOBILE CATEGORIES - CIRCULAR WITH IMAGES ===== */
.category-icons-mobile {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-icons-mobile::-webkit-scrollbar {
    display: none;
}

.cat-icon-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 72px;
    transition: transform 0.2s;
}

.cat-icon-mobile span {
    font-size: 12px;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.cat-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
}

.cat-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-icon-mobile:hover .cat-icon-circle {
    border-color: var(--red);
    transform: scale(1.05);
}

.cat-icon-mobile:hover span {
    color: var(--red);
}

.new-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #22c55e;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

/* ===== DESKTOP CATEGORIES - GRID CARDS ===== */
.category-grid-section {
    padding: 60px 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 1;
    transition: all 0.3s;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cat-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

/* ===== SHOP PAGE BANNER ===== */
.shop-banner {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--gray-900);
}

.shop-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.shop-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    color: var(--white);
    text-align: center;
}

.shop-banner-overlay h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shop-banner-overlay p {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .shop-banner {
        height: 250px;
    }

    .shop-banner-overlay h1 {
        font-size: 32px;
    }

    .shop-banner-overlay p {
        font-size: 14px;
    }
}

/* ===== BEWAKOOF STYLE AUTH PAGE ===== */
.auth-section {
    display: flex;
    min-height: calc(100vh - 48px - 32px);
    background: var(--white);
    align-items: center;
    justify-content: center;
}

/* Left Side Image - Desktop */
.auth-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: var(--gray-900);
    max-width: 700px;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* Mobile Banner Image (Bewakoof Style) */
.auth-image-mobile {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.auth-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-image-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    color: var(--white);
}

.auth-image-overlay h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.auth-image-overlay h2 span {
    color: var(--red);
}

.auth-image-overlay h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}


.auth-image-overlay p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* Right Side Form */
.auth-box {
    flex: 0 0 50%;
    max-width: 500px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.auth-welcome {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.auth-welcome h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.auth-welcome h2 span {
    color: var(--red);
}

.auth-welcome p {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.auth-subtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.auth-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.auth-tab.active {
    color: var(--red);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--black);
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
}

.phone-input .country-code {
    padding: 14px 12px;
    background: var(--gray-50);
    font-size: 14px;
    font-weight: 500;
    border-right: 1px solid var(--gray-300);
    white-space: nowrap;
}

.phone-input input {
    border: none;
    flex: 1;
    margin: 0;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--gray-300);
    color: var(--gray-600);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.auth-btn:hover {
    background: var(--black);
    color: var(--white);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--gray-500);
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.auth-divider span {
    padding: 0 16px;
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.auth-terms {
    margin-top: 24px;
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
}

.auth-terms a {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Auth - Bewakoof Style */
@media (max-width: 1023px) {
    .auth-section {
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        background: var(--white);
    }

    .auth-box {
        flex: 1;
        padding: 32px 24px;
        max-width: 100%;
        margin: 0;
        background: var(--white);
        border-radius: 20px 20px 0 0;
        margin-top: -20px;
        position: relative;
        z-index: 10;
    }

    .auth-image-mobile {
        display: block;
        width: 100%;
        height: 320px;
    }

    .auth-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .auth-title {
        text-align: center;
    }

    .auth-subtitle {
        text-align: center;
    }

    .auth-logo {
        margin-bottom: 24px;
    }
}

/* Auth Logo Styles */
.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo-link {
    display: inline-block;
}

.auth-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* ===== PREMIUM MOBILE MENU (Surgical Addition) ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(2px);
}

.side-menu {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: #fff;
    z-index: 10000;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    left: 0;
}

.side-menu-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.side-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-menu-content .menu-item {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-badge {
    background: var(--red);
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.side-menu-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.menu-bottom-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    font-weight: 700;
}

/* SEARCH OVERLAY TRANSITION */
#searchOverlay {
    transition: 0.3s ease;
}

/* PRODUCT CARD HOVER EFFECTS */
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

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

.product-image img {
    transition: 0.5s ease;
}

/* ===== ZERO-GAP GRID & PREMIUM PRODUCT CARDS ===== */
.products-swiper {
    padding: 0 !important;
}

.product-card {
    border: 1px solid #f2f2f2 !important;
    border-radius: 0 !important;
    /* Bewakoof style is very sharp/slight radius */
    margin: 0 !important;
    transition: none !important;
}

.product-image {
    aspect-ratio: 124/186 !important;
}

/* ===== BEWAKOOF-STYLE PRODUCT CARD INFO ===== */

/* Product name — bold, dark, truncate 1 line */
.prod-name-bw {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: -0.1px !important;
    font-family: 'Nunito', 'DM Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Description — small, muted grey, truncate */
.prod-desc-bw {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #888 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 3px !important;
    font-family: 'Nunito', 'DM Sans', sans-serif !important;
}

/* Price row */
.prod-price-row-bw {
    display: flex !important;
    align-items: baseline !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    margin-top: 3px !important;
}

/* Sale price — large, bold, black */
.prod-price-bw {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #111 !important;
    line-height: 1 !important;
    font-family: 'Nunito', 'DM Sans', sans-serif !important;
    letter-spacing: -0.3px !important;
}

/* Original price — strikethrough, grey */
.prod-original-bw {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #aaa !important;
    text-decoration: line-through !important;
    line-height: 1 !important;
}

/* Discount % — green */
.prod-off-bw {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #26a541 !important;
    line-height: 1 !important;
}

/* Bulk offer */
.prod-bulk-bw {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #26a541 !important;
    margin-top: 4px !important;
    line-height: 1.2 !important;
    font-family: 'Nunito', 'DM Sans', sans-serif !important;
}

/* Info block padding */
.product-info-bw {
    padding: 10px 10px 12px !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

/* Wishlist btn */
.prod-wishlist-btn {
    position: absolute !important;
    top: 9px !important;
    right: 9px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.93) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
    transition: transform 0.2s !important;
    padding: 0 !important;
}
.prod-wishlist-btn i {
    font-size: 15px !important;
    color: #888 !important;
    transition: color 0.2s !important;
}
.prod-wishlist-btn.wishlisted i,
.prod-wishlist-btn:hover i {
    color: #d32f2f !important;
}

/* Rating badge */
.prod-rating-badge {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    background: rgba(255,255,255,0.97) !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 20px !important;
    padding: 4px 9px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #111 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10) !important;
    z-index: 5 !important;
    font-family: 'Nunito', 'DM Sans', sans-serif !important;
}

/* Add to bag — Bewakoof style: white bg, light border, full width */
.add-to-bag-btn {
    width: 100% !important;
    padding: 10px 15px !important;
    background: #fff !important;
    color: #222 !important;
    border: 1.5px solid #d6d6d6 !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    font-family: 'Nunito', 'DM Sans', sans-serif !important;
    letter-spacing: 0.1px !important;
    text-transform: capitalize !important;
    cursor: pointer !important;
    transition: all 0.18s ease !important;
    margin-top: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-font-smoothing: antialiased !important;
}
.add-to-bag-btn:hover,
.add-to-bag-btn:active {
    background: #f0f0f0 !important;
    border-color: #bbb !important;
}

/* OLD class kept for compat */
.product-name {
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #4f5362 !important;
    margin-bottom: 4px !important;
    height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-brand {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 2px !important;
}

.add-to-bag-btn-premium {
    width: 100%;
    padding: 6px 15px !important;
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #d6d6d6 !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: capitalize;
    /* "Add to bag" vs "ADD TO BAG" */
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.add-to-bag-btn-premium:active {
    background: #f9f9f9 !important;
    transform: scale(0.98);
}

.product-desc-short {
    font-size: 10px;
    color: #777;
    opacity: 0.8;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* SIDE MENU RESTRUCTURE (Bewakoof Style) */
.side-menu {
    width: 85% !important;
    max-width: 340px !important;
    background: #fff !important;
    overflow-x: hidden;
}

.side-menu-content {
    padding: 0 !important;
    gap: 0 !important;
}

.menu-section-label {
    background: #f7f7f7;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.side-menu-content .menu-item {
    padding: 16px 20px !important;
    border-bottom: 1px solid #f2f2f2 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 15px !important;
    text-decoration: none !important;
    color: #111 !important;
}

.side-menu-content .menu-item i {
    width: 22px;
    font-size: 16px;
    color: #444;
    text-align: center;
}

.profile-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    padding: 20px 10px !important;
    border-bottom: 1px solid #f2f2f2;
}

.profile-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    color: #333 !important;
}

.profile-icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    background: #fff;
}

.profile-item span {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: #444 !important;
    text-align: center;
}

.logout-btn {
    margin: 20px;
    background: #fff1f1;
    color: #dc2626;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* TOP BUTTON ARROW */
#backToTop i {
    font-size: 20px !important;
}

/* SEARCH OVERLAY IMPROVEMENTS */
.search-back-btn {
    padding: 10px;
    cursor: pointer;
}

.search-recommendations {
    margin-top: 30px;
    padding: 0 20px;
}

/* ===== ADD TO BAG — Mobile show, Desktop hide ===== */
@media (max-width: 767px) {
    .add-to-bag-btn {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .add-to-bag-btn {
        display: none !important;
    }

    /* Desktop: card hover lift */
    .product-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.09) !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
    }

    /* Desktop: image zoom on hover */
    .product-image-wrap:hover .product-main-img {
        transform: scale(1.04) !important;
    }
    .product-main-img {
        transition: transform 0.4s ease !important;
    }
}

/* ===== PRODUCT IMAGE WRAP ===== */
.product-image-wrap {
    position: relative !important;
    background: #f5f5f5 !important;
    aspect-ratio: 3/4 !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

/* ===== SMOOTH FONT RENDERING GLOBALLY ===== */
body, .product-info-bw, .prod-name-bw, .prod-desc-bw,
.prod-price-bw, .prod-original-bw, .prod-off-bw,
.prod-bulk-bw, .add-to-bag-btn {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}