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

        :root {
            --primary-pink: #e83e8c;
            --primary-purple: #9b4dff;
            --deep-purple: #6f42c1;
            --dark-bg: #0a0a12;
            --card-white: #ffffff;
            --gold-accent: #d4af37;
            --soft-gray: #f8f9fa;
            --text-muted: #6c757d;
            --transition: all 0.25s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f2ff;
            padding-top: 0;
        }

        /* ========== FIXED HEADER ========== */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            background: #0a0a12;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        /* SECTION 1: MARQUEE */
        .offer-marquee {
            background: linear-gradient(95deg, #e83e8c, #9b4dff, #3f2b68);
            background-size: 200% auto;
            color: white;
            padding: 6px 0;
            font-size: 0.8rem;
            font-weight: 600;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-track {
            display: inline-flex;
            gap: 2.5rem;
            animation: scrollMarquee 22s linear infinite;
        }
        @keyframes scrollMarquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* SECTION 2: MAIN NAVBAR (Hamburger + Logo + Search + Cart + Sign in) */
        .main-navbar {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .nav-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }
        /* Left group: hamburger + logo */
        .nav-left-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-shrink: 0;
        }
        .hamburger-icon {
            background: transparent;
            border: none;
            width: 28px;
            height: 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }
        .hamburger-icon span {
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 10px;
            transition: 0.2s;
        }
        .brand-link {
            transition: transform 0.2s ease;
            gap: 0.75rem;
        }
        .brand-link:hover {
            transform: scale(1.02);
        }
        .logo-img {
            height: 62px;
            width: 62px;
            min-width: 62px;
            border-radius: 50%;
            object-fit: cover;
            background: #ffffff;
            border: 2px solid #dfb15b;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 14px rgba(223, 177, 91, 0.35);
            transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
            display: inline-block;
            vertical-align: middle;
        }
        .logo-img:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 18px rgba(232, 62, 140, 0.45), 0 0 20px rgba(223, 177, 91, 0.6);
        }
        @media (max-width: 576px) {
            .logo-img {
                height: 48px;
                width: 48px;
                min-width: 48px;
            }
        }
        /* Search bar - middle position, grows on desktop */
        .search-wrapper-desktop {
            flex: 1;
            max-width: 600px;
            min-width: 180px;
            margin: 0 0.5rem;
        }
        .search-container {
            background: #1c1c28;
            border-radius: 50px;
            display: flex;
            align-items: center;
            padding: 0 8px 0 18px;
            border: 1px solid #33334a;
            transition: 0.2s;
        }
        .search-container input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px 8px;
            color: white;
            font-size: 0.9rem;
            outline: none;
        }
        .search-container button {
            background: var(--primary-pink);
            border: none;
            border-radius: 40px;
            padding: 6px 16px;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
        }
        /* Right group: Cart + Sign in */
        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }
        .icon-action {
            background: transparent;
            border: none;
            color: #f0f0f0;
            font-size: 1.3rem;
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none !important;
        }
        .icon-action:hover,
        .icon-action:focus {
            color: #ffffff;
            text-decoration: none !important;
        }
        .icon-action span:not(.cart-badge) {
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
            text-decoration: none !important;
        }
        .cart-badge {
            position: absolute;
            top: -10px;
            right: -14px;
            background: #ff3366;
            font-size: 0.65rem;
            font-weight: bold;
            padding: 0.2rem 0.45rem;
            border-radius: 30px;
            color: white;
            min-width: 20px;
            text-align: center;
            text-decoration: none !important;
        }
        .btn-outline-light-sm {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.4);
            color: white;
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: 0.2s;
            text-decoration: none !important;
        }
        .btn-outline-light-sm:hover,
        .btn-outline-light-sm:focus {
            background: var(--primary-pink);
            border-color: var(--primary-pink);
            color: white;
            text-decoration: none !important;
        }

        /* SECTION 3: CATEGORY BADGES (Movable left-to-right / right-to-left) */
        .category-bar {
            background: #ff99c9;
            padding: 0.6rem 1rem;
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
            border-bottom: 1px solid #262636;
            touch-action: pan-x;
            cursor: grab;
            user-select: none;
        }
        .category-bar::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }
        .category-bar.active,
        .category-bar:active {
            cursor: grabbing;
        }
        .category-badge {
            display: inline-flex;
            align-items: center;
            background: #1f1f2e;
            color: #ddd;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 10px;
            flex-shrink: 0;
            transition: 0.2s;
            cursor: pointer;
            text-decoration: none !important;
        }
        .category-badge i {
            margin-right: 6px;
            font-size: 0.8rem;
        }
        .category-badge:hover,
        .category-badge:focus {
            background: var(--primary-pink);
            color: white;
            text-decoration: none !important;
        }

        /* OFFSET FOR FIXED HEADER (3 sections) */
        .header-offset {
            height: 156px;
        }

        /* Mobile Search Toggle Button (visible on small devices) */
        .mobile-search-toggle-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .mobile-search-toggle-btn:hover,
        .mobile-search-toggle-btn:focus,
        .mobile-search-toggle-btn.active {
            background: var(--primary-pink);
            border-color: var(--primary-pink);
            color: white;
            transform: scale(1.05);
        }

        /* Mobile Expandable Search Bar */
        .mobile-search-expand {
            display: none;
            padding-top: 0.4rem;
            width: 100%;
        }
        .mobile-search-expand.show {
            display: block;
            animation: searchFadeInDown 0.22s ease-out forwards;
        }
        @keyframes searchFadeInDown {
            from { opacity: 0; transform: translateY(-6px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-search-form {
            width: 100%;
        }

        /* Mobile Bottom Navigation Bar (Small devices only: < 768px) */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(18, 16, 42, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid rgba(223, 177, 91, 0.25);
            z-index: 1050;
            box-shadow: 0 -4px 22px rgba(0, 0, 0, 0.45);
            align-items: center;
            justify-content: space-around;
            padding: 0 4px;
        }
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            height: 100%;
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none !important;
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
            user-select: none;
        }
        .mobile-nav-item i {
            font-size: 1.18rem;
            margin-bottom: 2px;
            transition: transform 0.2s ease, color 0.2s ease;
        }
        .mobile-nav-item:hover,
        .mobile-nav-item:focus {
            color: #dfb15b;
            text-decoration: none !important;
        }
        .mobile-nav-item.active {
            color: var(--primary-pink);
            font-weight: 600;
        }
        .mobile-nav-item.active i {
            transform: translateY(-2px);
            color: var(--primary-pink);
            filter: drop-shadow(0 2px 6px rgba(232, 62, 140, 0.6));
        }
        .mobile-nav-badge {
            position: absolute;
            top: 4px;
            right: calc(50% - 17px);
            background: #ff3366;
            color: white;
            font-size: 0.62rem;
            font-weight: bold;
            border-radius: 20px;
            padding: 1px 5px;
            min-width: 17px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

        /* Small device adjustments */
        @media (max-width: 767.98px) {
            body {
                padding-bottom: 64px;
            }
            .header-offset {
                height: 145px;
            }
            .main-navbar {
                padding: 0.5rem 0.8rem;
            }
        }
        @media (max-width: 576px) {
            .logo-img {
                height: 44px;
                width: 44px;
                min-width: 44px;
            }
        }
		
		/* Smooth transition */
		.offer-marquee {
			transition: all 0.3s ease;
			overflow: hidden;
		}

		.category-bar {
			transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
		}

		/* Hide top & bottom sections on scroll */
		.fixed-header.scrolled .offer-marquee {
			max-height: 0;
			padding: 0;
			opacity: 0;
		}

		.fixed-header.scrolled .category-bar {
			max-height: 0;
			padding-top: 0;
			padding-bottom: 0;
			opacity: 0;
			border: none;
			pointer-events: none;
		}

		/* Optional: reduce empty space */
		.fixed-header.scrolled + .header-offset {
			height: 80px;
		}

        /* Hero banner carousel */
        .hero-banner-img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: transform 6s ease;
        }
        .carousel-item.active .hero-banner-img {
            transform: scale(1.03);
        }
        @media (max-width: 992px) {
            .hero-banner-img { height: 420px; }
        }
        @media (max-width: 768px) {
            .hero-banner-img { height: 320px; }
        }
        @media (max-width: 576px) {
            .hero-banner-img { height: 220px; }
        }

        /* Product cards */
        .product-card {
            border-radius: 18px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            background: white;
            border: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
        }
        .product-price {
            color: var(--primary-pink);
            font-weight: 800;
            font-size: 1.1rem;
        }
        .add-cart-btn-responsive {
            display: inline-block;
        }

        /* Flash sale / Eid section styling */
        .section-header-custom {
            border-left: 6px solid var(--primary-pink);
            padding-left: 15px;
            font-weight: 800;
        }
        .sale-badge {
            background: #ff4d6d;
            color: white;
            font-size: 0.7rem;
            padding: 0.3rem 0.8rem;
            border-radius: 40px;
        }

        /* info cards */
        .info-card {
            background: white;
            border-radius: 20px;
            padding: 1.2rem;
            text-align: center;
            box-shadow: 0 5px 12px rgba(0,0,0,0.03);
            transition: 0.2s;
        }

        /* footer professional black */
        .footer-pro {
            background: #07070e;
            color: #ccc;
            padding-top: 3rem;
            padding-bottom: 2rem;
            border-top: 1px solid #222;
        }
        .footer-pro a {
            color: #aaa;
            text-decoration: none;
            transition: 0.2s;
        }
        .footer-pro a:hover {
            color: var(--primary-pink);
        }

        /* side menu */
        .side-menu-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100%;
            background: #0b0b14;
            z-index: 3000;
            transition: left 0.3s ease;
            padding: 2rem 1.5rem;
            overflow-y: auto;
        }
        .side-menu-overlay.open {
            left: 0;
        }
        .menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2999;
            display: none;
        }
        .menu-backdrop.show {
            display: block;
        }
        .close-side {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            float: right;
        }
        .side-menu-list {
            margin-top: 3rem;
            list-style: none;
        }
        .side-menu-list li {
            margin: 1.4rem 0;
        }
        .side-menu-list a {
            color: #eee;
            font-weight: 500;
            font-size: 1.1rem;
            text-decoration: none;
        }

/* ============================================================
   SHARED PAGE ELEMENTS (breadcrumb, page header)
   ============================================================ */
.page-hero {
    background: linear-gradient(105deg, #1e1a3a, #3f2b68, #6f42c1);
    color: #fff;
    padding: 2.2rem 0 1.6rem;
    margin-bottom: 2rem;
    border-radius: 0 0 1.5rem 1.5rem;
}
.page-hero h1 { font-weight: 800; margin-bottom: .25rem; }
.breadcrumb-custom { font-size: .85rem; color: rgba(255,255,255,.75); }
.breadcrumb-custom a { color: #fff; text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--gold-accent); }

/* ============================================================
   CATEGORY / LISTING PAGE
   ============================================================ */
.filter-panel {
    background: #fff;
    border-radius: 18px;
    padding: 1.3rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.filter-panel h6 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .05em;
    color: var(--deep-purple);
    margin-bottom: .8rem;
}
.filter-panel hr { margin: 1.1rem 0; }
.filter-swatch {
    width: 26px; height: 26px; border-radius: 50%;
    display: inline-block; border: 2px solid #fff;
    outline: 1px solid #ddd; cursor: pointer; margin: 2px;
}
.filter-swatch.active { outline: 2px solid var(--primary-pink); }
.sort-select {
    border-radius: 40px;
    border: 1px solid #ddd;
    padding: .5rem 1rem;
    font-size: .85rem;
}
.results-toolbar {
    background: #fff;
    border-radius: 14px;
    padding: .8rem 1.1rem;
    box-shadow: 0 5px 12px rgba(0,0,0,0.04);
}
.mobile-filter-btn { display: none; }
@media (max-width: 991px) {
    .filter-panel { display: none; }
    .filter-panel.mobile-open {
        display: block; position: fixed; top: 0; left: 0; z-index: 3100;
        width: 85%; max-width: 340px; height: 100%; overflow-y: auto;
        border-radius: 0; box-shadow: 0 0 30px rgba(0,0,0,.3);
    }
    .mobile-filter-btn { display: inline-flex; }
}

/* ============================================================
   PRODUCT DETAILS PAGE
   ============================================================ */
.pd-thumb-col { display: flex; flex-direction: column; gap: .6rem; }
.pd-thumb {
    width: 100%; aspect-ratio: 1/1; object-fit: cover;
    border-radius: 12px; cursor: pointer; border: 2px solid transparent;
    transition: .2s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--primary-pink); }
.pd-main-img {
    width: 100%; border-radius: 20px; object-fit: cover;
    aspect-ratio: 4/5; box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.pd-title { font-weight: 800; font-size: 1.7rem; }
.pd-price { color: var(--primary-pink); font-weight: 800; font-size: 1.6rem; }
.pd-price-old { color: #aaa; text-decoration: line-through; font-size: 1.05rem; margin-left: .5rem; }
.pd-rating i { color: var(--gold-accent); font-size: .9rem; }
.size-swatch, .color-swatch {
    border: 1.5px solid #ddd; border-radius: 40px; padding: .4rem 1rem;
    font-size: .85rem; font-weight: 600; background: #fff; cursor: pointer;
    transition: .2s;
}
.size-swatch.active, .color-swatch.active, .size-swatch:hover, .color-swatch:hover {
    background: var(--primary-pink); color: #fff; border-color: var(--primary-pink);
}
.qty-stepper { display: flex; align-items: center; border: 1.5px solid #ddd; border-radius: 40px; overflow: hidden; width: fit-content; }
.qty-stepper button {
    background: #f5f2ff; border: none; width: 38px; height: 38px; font-weight: 700; font-size: 1rem;
}
.qty-stepper input {
    width: 44px; text-align: center; border: none; font-weight: 700;
}
.qty-stepper input:focus { outline: none; }
.pd-tabs .nav-link {
    color: #333; font-weight: 600; border: none; border-bottom: 3px solid transparent;
}
.pd-tabs .nav-link.active { color: var(--primary-pink); border-bottom-color: var(--primary-pink); background: transparent; }
.trust-badge-row { border-top: 1px dashed #ddd; margin-top: 1.2rem; padding-top: 1.2rem; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-row {
    background: #fff; border-radius: 16px; padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04); margin-bottom: 1rem;
}
.cart-row img { width: 90px; height: 100px; object-fit: cover; border-radius: 12px; }
.cart-remove-btn { color: #ff3366; background: none; border: none; font-size: .85rem; font-weight: 600; }
.summary-card {
    background: #fff; border-radius: 18px; padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); position: sticky; top: 176px;
}
.summary-card h5 { font-weight: 800; margin-bottom: 1rem; }
.summary-line { display: flex; justify-content: space-between; margin-bottom: .6rem; font-size: .92rem; }
.summary-total { font-weight: 800; font-size: 1.2rem; border-top: 1px dashed #ddd; padding-top: .8rem; margin-top: .5rem; }
.coupon-box { display: flex; gap: .5rem; margin-bottom: 1.2rem; }
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state i { font-size: 4rem; color: #ddd; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-steps { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.checkout-step { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 700; color: #aaa; }
.checkout-step .step-circle {
    width: 28px; height: 28px; border-radius: 50%; background: #eee; color: #888;
    display: flex; align-items: center; justify-content: center; font-size: .8rem;
}
.checkout-step.active { color: var(--primary-pink); }
.checkout-step.active .step-circle { background: var(--primary-pink); color: #fff; }
.checkout-step.done .step-circle { background: #28a745; color: #fff; }
.checkout-card {
    background: #fff; border-radius: 18px; padding: 1.6rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05); margin-bottom: 1.5rem;
}
.checkout-card h5 { font-weight: 800; margin-bottom: 1.1rem; }
.payment-option {
    border: 1.5px solid #ddd; border-radius: 14px; padding: .9rem 1.1rem;
    cursor: pointer; transition: .2s; margin-bottom: .7rem;
}
.payment-option.active { border-color: var(--primary-pink); background: #fff5f9; }
.form-label-sm { font-size: .8rem; font-weight: 700; color: #555; margin-bottom: .3rem; }

/* ============================================================
   ORDER CONFIRMATION PAGE
   ============================================================ */
.confirm-wrap { text-align: center; padding: 3rem 1rem; }
.confirm-icon {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #7ee08a);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; box-shadow: 0 12px 25px rgba(40,167,69,.3);
}
.confirm-icon i { font-size: 2.6rem; color: #fff; }
.order-id-box {
    background: #fff; border-radius: 14px; padding: 1rem 1.6rem;
    display: inline-block; box-shadow: 0 5px 15px rgba(0,0,0,.05);
    font-weight: 800; color: var(--deep-purple); margin: 1rem 0;
}
.order-summary-table { background: #fff; border-radius: 16px; padding: 1.4rem; box-shadow: 0 8px 20px rgba(0,0,0,0.05); text-align: left; }

/* ============================================================
   AUTH PAGES (LOGIN / REGISTER)
   ============================================================ */
.auth-wrapper {
    min-height: calc(100vh - 320px);
    display: flex; align-items: center; justify-content: center;
    padding: 2.5rem 1rem;
}
.auth-card {
    background: #fff; border-radius: 22px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); max-width: 960px; width: 100%;
}
.auth-visual {
    background: linear-gradient(160deg, #1e1a3a, #6f42c1, #e83e8c);
    color: #fff; padding: 3rem 2rem;
    display: flex; flex-direction: column; justify-content: center; min-height: 100%;
}
.auth-form-side { padding: 2.8rem 2.2rem; }
.auth-form-side h3 { font-weight: 800; }
.social-auth-btn {
    border: 1.5px solid #ddd; border-radius: 40px; padding: .6rem 1rem;
    font-weight: 600; font-size: .88rem; background: #fff; width: 100%;
}
.divider-text { display: flex; align-items: center; gap: .8rem; color: #aaa; font-size: .8rem; margin: 1.2rem 0; }
.divider-text::before, .divider-text::after { content: ""; flex: 1; height: 1px; background: #eee; }
.input-icon-group { position: relative; }
.input-icon-group i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #aaa; }
.input-icon-group input { padding-left: 40px; }
.toggle-pass { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #aaa; cursor: pointer; background:none; border:none; }

/* ============================================================
   FORM CONTROL POLISH (shared)
   ============================================================ */
.form-control, .form-select {
    border-radius: 12px; border: 1.5px solid #e2e2e2; padding: .65rem .9rem; font-size: .92rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-pink); box-shadow: 0 0 0 .2rem rgba(232,62,140,0.15);
}
.btn-primary-brand {
    background: linear-gradient(95deg, var(--primary-pink), var(--primary-purple));
    border: none; color: #fff; font-weight: 700; border-radius: 40px; padding: .7rem 1.6rem;
    transition: .2s;
}
.btn-primary-brand:hover { filter: brightness(1.08); color: #fff; transform: translateY(-1px); }
.btn-outline-brand {
    border: 1.5px solid var(--primary-pink); color: var(--primary-pink); font-weight: 700;
    border-radius: 40px; padding: .65rem 1.5rem; background: #fff;
}
.btn-outline-brand:hover { background: var(--primary-pink); color: #fff; }

/* Pagination */
.page-link { color: var(--deep-purple); border-radius: 8px !important; margin: 0 3px; border: none; }
.page-item.active .page-link { background: var(--primary-pink); }

@media (max-width: 768px) {
    .auth-visual { display: none; }
    .summary-card { position: static; }
}

/* ============================================================
   BRAND STYLING UTILITIES & ENHANCEMENTS
   ============================================================ */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}
.brand-accent {
    color: var(--primary-pink);
    font-style: italic;
}
.font-serif {
    font-family: 'Playfair Display', serif;
}
.text-pink {
    color: var(--primary-pink) !important;
}
.bg-pink {
    background-color: var(--primary-pink) !important;
    color: #fff !important;
}
.border-pink {
    border-color: var(--primary-pink) !important;
}
.letter-spacing {
    letter-spacing: 1px;
}
.cursor-pointer {
    cursor: pointer;
}
.hero-glass-box {
    background: rgba(10, 10, 18, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    max-width: 750px;
}
.flash-sale-container {
    background: linear-gradient(135deg, #1b132f 0%, #2e1642 50%, #441a3d 100%);
}
.flash-tag {
    background: #ffc107;
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}
.category-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.category-scroll-container::-webkit-scrollbar {
    display: none;
}
.category-scroll-track {
    display: inline-flex;
    width: max-content;
    animation: categoryMarquee 28s linear infinite;
}
.category-scroll-track:hover {
    animation-play-state: paused;
}
@keyframes categoryMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.category-card {
    background: #fff;
    border: 1.5px solid rgba(232, 62, 140, 0.1);
    transition: all 0.25s ease;
}
.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12) !important;
}
.cat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 62, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/5;
    background: #f8f9fa;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}
.newsletter-section {
    background: linear-gradient(110deg, #1a1333, #431b57, #e83e8c);
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}
.social-icon:hover {
    background: var(--primary-pink);
    color: #fff;
    transform: translateY(-2px);
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-block;
    margin-bottom: 8px;
}
.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 4px;
}
.hover-danger:hover {
    color: #dc3545 !important;
}
.size-swatch-btn {
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 6px 16px;
    font-weight: 600;
}
.size-swatch-btn.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: #fff;
}
.pd-thumb.active {
    border-color: var(--primary-pink) !important;
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.25);
}

/* Clean Number Stepper Inputs (Remove browser spinners) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}


