:root {
            --primary: #1a1a1a;
            --secondary: #1a1a1a;
            --accent: #1a1a1a;
            --light: #ffffff;
            --dark: #111111;
            --gray-100: #f5f5f7;
            --gray-200: #e5e5e5;
            --gray-300: #d2d2d7;
            --gray-700: #86868b;
            --gradient: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.15s ease-in-out;
        }


        h1, h2, h3, h4 {
            font-weight: 600;
            color: var(--dark);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            transition: var(--transition-fast);
        }

       

           .btn {
            background:#222;
            border: 2px solid white;
            color: white;
            cursor: pointer;
        }

         .btn:hover {
            background: white;
            color: #111;
          
        }

        .btn {
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--light);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }


.contentS{
    margin-top: 110px;
}

     /* Store Banner - Enhanced Version */

.store-banner {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 30, 48, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.banner-content {
    width: 100%;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 600px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease both, glow 2s infinite alternate;
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.9;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s 0.5s ease both;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #222 0%, #2222 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(179, 179, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(179, 179, 179, 0.3);
    
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(179, 179, 179, 0.3);
}

.btn-outline:hover {
    background: rgba(179, 179, 179, 0.3);
    border-color: rgba(255,255,255,0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

.breadcrumb {
    font-size: 14px;
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    align-items: center;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* Animated tech elements */
.tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.tech-elements div {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 0%, transparent 70%);
    top: 20%;
    left: 70%;
    animation-delay: 0s;
}

.square {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #222 0%, transparent 70%);
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(79, 172, 254, 0.3);
    top: 30%;
    left: 30%;
    animation-delay: 4s;
}

.hexagon {
    width: 50px;
    height: 28.87px;
    background-color: rgba(43, 43, 43, 0.2);
    position: relative;
    top: 70%;
    left: 80%;
    animation-delay: 6s;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 14.43px solid rgba(0, 242, 254, 0.2);
}

.hexagon:after {
    top: 100%;
    border-top: 14.43px solid rgba(0, 242, 254, 0.2);
}

/* Brand logos marquee */
.brand-logos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0,0,0,0.3);
    overflow: hidden;
    z-index: 2;
}

.logos-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.logos-track img {
    height: 30px;
    margin: 0 30px;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.3s ease;
}

.logos-track img:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 172, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(12, 12, 12, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(27, 27, 27, 0.8);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-banner {
        height: 400px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
        /* Filter Bar */
        .filter-section {
            background: var(--light);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 40px;
            padding: 25px;
        }

        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .filter-title {
            font-size: 18px;
            font-weight: 600;
        }

        .reset-filters {
            color: var(--gray-700);
            font-size: 14px;
            cursor: pointer;
        }

        .reset-filters:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-700);
        }

        .sort-selector select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            cursor: pointer;
            transition: var(--transition-fast);
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 16px;
        }

        .sort-selector select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
        }

        .price-filter {
            display: flex;
            flex-direction: column;
        }

        .price-range {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .price-input {
            width: 48%;
        }

        .price-input input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
        }

        .price-input input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .price-slider {
            width: 100%;
            height: 6px;
            background: var(--gray-200);
            border-radius: 3px;
            margin-top: 20px;
            position: relative;
        }

        .price-slider .progress {
            height: 100%;
            left: 25%;
            right: 25%;
            position: absolute;
            background: var(--primary);
            border-radius: 3px;
        }

        .range-input {
            position: relative;
        }

        .range-input input {
            position: absolute;
            top: -6px;
            width: 100%;
            height: 6px;
            background: none;
            pointer-events: none;
            -webkit-appearance: none;
        }

        .range-input input[type="range"]::-webkit-slider-thumb {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: var(--primary);
            pointer-events: auto;
            -webkit-appearance: none;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
        }

        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-pill {
            padding: 10px 18px;
            background: var(--gray-100);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .filter-pill i {
            font-size: 12px;
        }

        .filter-pill:hover, .filter-pill.active {
            background: var(--primary);
            color: var(--light);
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
            transition: opacity 0.3s ease;
        }

        .product-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: var(--light);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .product-card-img {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 500;
            line-height: 1.4;
        }

        .product-category {
            font-size: 14px;
            color: var(--gray-700);
            margin-bottom: 10px;
            display: block;
        }

        .pricing {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .current-price {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
        }

        .original-price {
            font-size: 16px;
            color: var(--gray-700);
            text-decoration: line-through;
        }

        .add-to-cart {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--light);
            border-radius: 6px;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
        }

        .add-to-cart:hover {
            background: var(--dark);
        }

        .add-to-cart i {
            transition: transform 0.3s ease;
        }

        .add-to-cart:hover i {
            transform: translateX(3px);
        }

        /* Product Actions */
        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
        }

        .product-card:hover .product-actions {
            opacity: 1;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light);
            border-radius: 50%;
            box-shadow: var(--shadow-sm);
            color: var(--primary);
            transition: var(--transition);
        }

        .action-btn:hover {
            background: var(--primary);
            color: var(--light);
            transform: scale(1.1);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 60px;
        }

        .page-item {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: var(--light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            font-weight: 500;
        }

        .page-item:hover, .page-item.active {
            background: var(--primary);
            color: var(--light);
        }

        /* Categories Section */
        .categories {
            margin-bottom: 60px;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }

        .category-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .category-img {
            height: 180px;
            overflow: hidden;
        }

        .category-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-img img {
            transform: scale(1.05);
        }

        .category-info {
            padding: 20px;
            text-align: center;
        }

        .category-name {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .category-count {
            font-size: 14px;
            color: var(--gray-700);
        }

        /* Top Rated Products */
        .top-rated {
            margin-bottom: 60px;
        }

        .top-rated-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .view-all {
            color: var(--primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .top-rated-carousel {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            padding-bottom: 25px;
            scroll-snap-type: x mandatory;
        }

        .top-rated-carousel::-webkit-scrollbar {
            height: 6px;
        }

        .top-rated-carousel::-webkit-scrollbar-track {
            background: var(--gray-200);
            border-radius: 10px;
        }

        .top-rated-carousel::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .featured-card {
            min-width: 320px;
            scroll-snap-align: start;
        }

        .top-rated-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: var(--light);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ratings {
            color: #FFD600;
            margin-bottom: 10px;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .review-count {
            font-size: 13px;
            color: var(--gray-700);
            margin-left: 5px;
        }

        /* Deals Section */
        .deals-section {
            margin-bottom: 60px;
        }

        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .deal-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .deal-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .deal-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e53935;
            color: var(--light);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .deal-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .deal-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .deal-card:hover .deal-img img {
            transform: scale(1.05);
        }

        .deal-info {
            padding: 20px;
        }

        .deal-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .deal-desc {
            font-size: 14px;
            color: var(--gray-700);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .deal-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .deal-current {
            font-size: 20px;
            font-weight: 600;
            color: #e53935;
        }

        .deal-original {
            font-size: 16px;
            color: var(--gray-700);
            text-decoration: line-through;
        }

        .deal-timer {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }

        .timer-item {
            background: var(--gray-100);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
        }

        .timer-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            display: block;
        }

        .deal-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: var(--light);
            border-radius: 6px;
            font-weight: 500;
            transition: var(--transition);
            text-align: center;
        }

        .deal-btn:hover {
            background: var(--dark);
        }

        /* Featured Deal */
        .featured-deal {
            background: var(--gradient);
            border-radius: 10px;
            padding: 40px;
            color: var(--light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .featured-deal::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
        }

        .featured-content {
            position: relative;
            z-index: 1;
            max-width: 60%;
        }

        .featured-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            opacity: 0.9;
            font-weight: 400;
            color: white;
            background-color: red;
            width: 150px;
            padding: 10px;
        }

        .featured-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.2;
            color: white;
        }

        .featured-content p {
            margin-bottom: 25px;
            opacity: 0.9;
            max-width: 500px;
        }

        .featured-timer {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .featured-timer-item {
            text-align: center;
        }

        .featured-timer-value {
            font-size: 24px;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }

        .featured-timer-label {
            font-size: 12px;
            opacity: 0.8;
        }

        .featured-btn {
            padding: 14px 28px;
            background: var(--light);
            color: var(--primary);
            border-radius: 6px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
        }

        .featured-btn:hover {
            background: var(--gray-100);
            transform: translateX(5px);
        }

        .featured-image {
            position: relative;
            z-index: 1;
            width: 35%;
            animation: float 3s ease-in-out infinite;
        }

        .featured-image img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }

        /* Loading State */
        .loading .product-grid {
            opacity: 0.5;
            pointer-events: none;
        }

        .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .loading-overlay.active {
            display: flex;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .featured-deal {
                flex-direction: column;
                text-align: center;
            }
            
            .featured-content {
                max-width: 100%;
                margin-bottom: 30px;
            }
            
            .featured-image {
                width: 60%;
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                padding: 15px;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner-content h1 {
                font-size: 42px;
            }
            
            .filter-bar {
                flex-direction: column;
            }
            
            .filter-group {
                width: 100%;
            }
            
            .category-grid, .deals-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 480px) {
            .banner-content h1 {
                font-size: 32px;
            }
            
            .banner-content p {
                font-size: 16px;
            }
            
            .banner-buttons {
                flex-direction: column;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .featured-content h2 {
                font-size: 28px;
            }
            
            .featured-timer {
                gap: 5px;
            }
            
            .featured-timer-value {
                font-size: 20px;
            }
        }

        /* 3D Tilt Effect */
        .tilt-element {
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            transform-style: preserve-3d;
        }

        /* Glowing Border */
        .glow-border {
            position: relative;
        }

        .glow-border::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient);
            z-index: -1;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow-border:hover::after {
            opacity: 1;
        }
        


        /* Cart Popup Styles */
.cart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-popup.active {
    right: 0;
}

.cart-popup-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-popup-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.close-cart-btn:hover {
    color: #333;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
}

.empty-cart-message i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart-message p {
    margin-bottom: 20px;
    color: #666;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.cart-item-price {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.quantity-input {
    width: 40px;
    height: 28px;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.remove-item-btn i {
    margin-right: 5px;
}

.remove-item-btn:hover {
    color: #e74c3c;
}

.cart-summary {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-totals div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-totals .total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cart-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px;
}

.btn-outline {
    background: white;
    border: 1px solid #ddd;
    color: #333;
}

.btn-outline:hover {
    background: #f5f5f5;
}

/* Floating cart styles */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.2s, background-color 0.2s;
}

.floating-cart:hover {
    transform: translateY(-3px);
    background-color: #222;
}

.floating-cart .notification-bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Add to cart notification */
.add-to-cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #2ecc71;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s ease;
}

.add-to-cart-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.add-to-cart-notification i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cart-popup {
        max-width: 100%;
    }
    
    .floating-cart {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cart .notification-bubble {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-img {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
}




/* Search results dropdown */
.search {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.search-result-info {
    flex: 1;
}

.search-result-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 500;
}

.search-result-price {
    margin: 0;
    font-size: 14px;
    color: #e53935;
    font-weight: bold;
}

.search-result-price span {
    text-decoration: line-through;
    color: #777;
    font-size: 12px;
    margin-left: 5px;
    font-weight: normal;
}




/* Wishlist button active state */
.wishlist-btn.active {
    color: #ff4757;
}

/* Notification styles */
.add-to-cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.add-to-cart-notification.show {
    opacity: 1;
}

.add-to-cart-notification i {
    font-size: 18px;
}