 
        body {
            font-family: 'Inter', sans-serif;
            background: radial-gradient(circle at 10% 20%, rgb(0, 0, 0) 0%, rgb(20, 10, 30) 90%);
            color: #eee;
            overflow-x: hidden;
            position: relative;
        }

        /* Floating Icons Background Animation */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: floatAround 20s linear infinite;
            color: #ff6a88;
        }

        @keyframes floatAround {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Glassmorphism + 3D effects */
        .glass-card {
            background: rgba(20, 20, 40, 0.45);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 28px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            position: relative;
            z-index: 1;
        }

        .glass-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(255, 80, 120, 0.5);
            box-shadow: 0 30px 50px rgba(0,0,0,0.5), 0 0 20px rgba(255, 60, 100, 0.3);
        }

        /* 3D Floating Animation */
        @keyframes float3d {
            0% { transform: translateY(0px) rotateX(0deg); }
            50% { transform: translateY(-12px) rotateX(2deg); }
            100% { transform: translateY(0px) rotateX(0deg); }
        }

        .float-3d {
            animation: float3d 5s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        /* Premium gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #FFB88C, #FF6A88, #A74CF2);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        /* Navbar 3D style */
        .navbar-3d {
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1001;
        }

        .btn-premium {
            background: linear-gradient(95deg, #FF3D6C, #B721FF);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 50px;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(183,33,255,0.3);
        }

        .btn-premium:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255,61,108,0.5);
            color: white;
        }

        /* Swiper 3D Coverflow Styles */
        .swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 70px;
        }

        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            background: rgba(30,30,50,0.8);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }

        .swiper-slide:hover {
            transform: scale(1.05);
            border-color: #ff4d7a;
            box-shadow: 0 25px 45px rgba(255,77,122,0.3);
        }

        .swiper-slide img {
            width: 100%;
            border-radius: 24px;
            margin-bottom: 15px;
            box-shadow: 0 20px 30px -10px black;
            object-fit: cover;
            height: 250px;
        }

        .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            background: #ff4d7a;
            opacity: 1;
        }

        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
            border-radius: 48px;
            min-height: 500px;
        }

        .hero-slider-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .hero-slide {
            flex-shrink: 0;
            width: 100%;
            position: relative;
        }

        .hero-slide-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            object-fit: cover;
            border-radius: 32px;
            box-shadow: -20px 0 40px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }

        .hero-slide-content {
            position: relative;
            z-index: 2;
            padding: 3rem;
            width: 55%;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .slider-btn:hover {
            background: #ff4d7a;
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 30px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            width: 30px;
            border-radius: 10px;
            background: #ff4d7a;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-animation {
            animation: slideIn 0.6s ease forwards;
        }

        /* Product Styles */
        .product-3d {
            transition: transform 0.3s ease-out, box-shadow 0.3s;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .product-3d:hover {
            transform: translateY(-12px) rotateY(5deg) rotateX(3deg);
            box-shadow: 0 35px 45px -15px rgba(0,0,0,0.5);
        }

        .product-img-fixed {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 20px;
            background: linear-gradient(135deg, #2a1e3c, #1a0f2a);
        }

        .product-title {
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .product-title:hover {
            color: #ff6a88;
        }

        .cart-count {
            transition: all 0.3s ease;
        }
        
        .cart-count-updated {
            animation: bounce 0.5s ease;
        }
        
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); background-color: #ff4d7a; }
        }
        
        .search-highlight {
            animation: highlightPulse 0.6s ease;
        }
        
        @keyframes highlightPulse {
            0% { box-shadow: 0 0 0 0 rgba(255,77,122,0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255,77,122,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,77,122,0); }
        }

        .search-match-highlight {
            animation: glowMatch 0.8s ease;
            border: 2px solid #ff4d7a;
            box-shadow: 0 0 20px rgba(255,77,122,0.5);
        }
        
        @keyframes glowMatch {
            0% { border-color: rgba(255,77,122,0); box-shadow: 0 0 0 0 rgba(255,77,122,0); }
            50% { border-color: #ff4d7a; box-shadow: 0 0 30px rgba(255,77,122,0.8); }
            100% { border-color: rgba(255,77,122,0.3); box-shadow: 0 0 10px rgba(255,77,122,0.3); }
        }

        .container, .navbar, footer, .hero-slider, .glass-card {
            position: relative;
            z-index: 2;
        }

        @media (max-width: 992px) {
            .hero-slide-image {
                width: 100%;
                opacity: 0.4;
            }
            .hero-slide-content {
                width: 100%;
                text-align: center;
            }
            .slider-nav, .slider-dots {
                bottom: 15px;
            }
            .swiper-slide {
                width: 260px;
            }
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1e1a2f;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff4d7a;
            border-radius: 10px;
        }
        
        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: rgba(20,20,40,0.4);
            border-radius: 28px;
        }
        
        .no-results i {
            font-size: 60px;
            margin-bottom: 20px;
            opacity: 0.5;
        }
      
    

        /* 3D Canvas Background */
        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            pointer-events: none;
        }

        /* Floating particles overlay (additional depth) */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.4;
        }

        /* Glassmorphic / 3D Card Effects */
        .glass-card {
            background: rgba(10, 15, 25, 0.65);
            backdrop-filter: blur(12px);
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 55px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
        }

        .table-glossy {
            background: rgba(15, 20, 32, 0.7);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            overflow: hidden;
            border-collapse: separate;
            border-spacing: 0;
            box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.4);
        }

        .table-glossy th, .table-glossy td {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            vertical-align: middle;
            color: #f5f5f5;
            background: transparent;
        }

        .table-glossy thead th {
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid rgba(255, 80, 40, 0.6);
        }

        /* ENLARGED PRODUCT IMAGE STYLES - Size increased */
        .product-img-cell {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .product-thumb {
            width: 85px;
            height: 85px;
            object-fit: cover;
            border-radius: 20px;
            background: rgba(0,0,0,0.4);
            box-shadow: 0 6px 16px rgba(0,0,0,0.4);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: 1.5px solid rgba(255,255,255,0.25);
        }
        .product-thumb:hover {
            transform: scale(1.08);
            box-shadow: 0 10px 24px rgba(255, 59, 46, 0.3);
            border-color: #ff5e3a;
        }
        
        /* Placeholder text styling - WHITE color for inputs */
        ::-webkit-input-placeholder { /* Chrome/Edge/Safari */
            color: rgba(255, 255, 255, 0.7) !important;
            opacity: 1;
        }
        :-moz-placeholder { /* Firefox 18- */
            color: rgba(255, 255, 255, 0.7) !important;
            opacity: 1;
        }
        ::-moz-placeholder {  /* Firefox 19+ */
            color: rgba(255, 255, 255, 0.7) !important;
            opacity: 1;
        }
        :-ms-input-placeholder {  
            color: rgba(255, 255, 255, 0.7) !important;
        }
        
        input, .form-control {
            color: white !important;
        }
        .form-control:focus {
            color: white !important;
            background: rgba(30,35,55,0.9);
        }
        
        .btn-3d {
            background: linear-gradient(135deg, #ff3b2e, #d62c1a);
            border: none;
            border-radius: 60px;
            box-shadow: 0 8px 20px rgba(255, 59, 46, 0.3);
            transition: all 0.2s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .btn-3d:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 28px rgba(255, 59, 46, 0.5);
            background: linear-gradient(135deg, #ff5548, #e63a28);
        }

        .btn-outline-3d {
            border: 1px solid rgba(255,255,255,0.4);
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(4px);
            border-radius: 60px;
            transition: 0.2s;
        }

        .btn-outline-3d:hover {
            background: rgba(255,255,255,0.15);
            border-color: #ff4a2a;
            box-shadow: 0 0 12px rgba(255, 74, 42, 0.4);
        }

        .quantity-input-3d {
            background: rgba(20, 25, 40, 0.8);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            text-align: center;
            font-weight: 500;
        }

        .badge-3d {
            background: #ff3b2e;
            box-shadow: 0 0 8px #ff3b2e;
        }

        .gradient-text {
            background: linear-gradient(135deg, #FF4A2A, #FF8C42);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }

        .navbar-3d {
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .breadcrumb-3d {
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
            border-radius: 60px;
            padding: 12px 24px;
        }

        .breadcrumb-3d .breadcrumb-item a, .breadcrumb-3d .breadcrumb-item.active {
            color: #f0f0f0;
            text-decoration: none;
        }

        .breadcrumb-3d .breadcrumb-item + .breadcrumb-item::before {
            color: #ff8c42;
        }

        .coupon-input-3d {
            background: rgba(20,25,40,0.7);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 60px 0 0 60px;
        }
        
        .coupon-input-3d::placeholder {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .coupon-input-3d:focus {
            background: rgba(30,35,55,0.9);
            border-color: #ff5e3a;
            box-shadow: none;
        }

        .summary-card {
            background: linear-gradient(145deg, rgba(12, 18, 28, 0.8), rgba(8, 12, 20, 0.9));
            backdrop-filter: blur(12px);
            border-radius: 32px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        footer {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ff3b2e;
            border-radius: 60px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.2s;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            background: #ff5e3a;
        }

        .remove-item-btn {
            background: rgba(255, 70, 50, 0.2);
            border: 1px solid rgba(255, 80, 50, 0.5);
            border-radius: 50px;
            transition: 0.2s;
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .remove-item-btn:hover {
            background: #ff3b2e;
            transform: scale(1.05);
        }
        
        /* Search input placeholder white */
        #searchInput::placeholder {
            color: rgba(255, 255, 255, 0.7) !important;
        }
        
        /* Newsletter input placeholder white */
        footer input::placeholder {
            color: rgba(255, 255, 255, 0.6) !important;
        }
        
        /* Dark input text always white */
        input, .form-control, .input-group-text {
            color: white !important;
        }
        .bg-transparent {
            background-color: transparent !important;
        }

        @media (max-width: 992px) {
            .table-glossy td, .table-glossy th {
                font-size: 0.85rem;
            }
            .product-thumb {
                width: 65px;
                height: 65px;
            }
            .product-img-cell {
                gap: 12px;
            }
        }
        @media (max-width: 768px) {
            .product-thumb {
                width: 55px;
                height: 55px;
            }
        }
        /* smooth scroll */
        html {
            scroll-behavior: smooth;
        }
   