  .hero {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100vh;
            padding: 0 100px;
            position: relative;
            color: white;
            overflow: hidden;
            text-align: left;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .hero-content {
            max-width: 500px;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #667eea, #764ba2); 
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.95;
            color: #666;
            animation: fadeInUp 1s ease 0.2s both;
        }

        

       

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(76, 205, 196, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Featured Products */
        .featured {
            padding: 100px 50px 100px;
            background: #f8f9fa;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #667eea, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

            .new-arrivals-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #000000;
            text-align: left;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            font-weight: 700;
            margin-left: 23px;

            }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Reduced gap for better fit */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px; /* Add padding to avoid edge clipping */
}

        .product-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
            z-index: 2;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            z-index: 3;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(76, 205, 196, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .product-card:hover::before {
            left: 100%;
        }

        .product-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .wishlist-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ccc;
            transition: all 0.3s ease;
            padding: 5px;
        }

        .wishlist-btn:hover {
            color: #ef4444;
            transform: scale(1.2);
        }

        .wishlist-btn.active {
            color: #ef4444;
        }

        .product-image {
    width: 100%;
    height: 200px; /* Adjusted height for better fit */
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images scale while maintaining aspect ratio */
    border-radius: 15px;
}

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

        .product-info {
            position: relative;
        }

        .product-name {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .product-category {
            color: #757575;
            margin-bottom: 12px;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: black;
            margin-bottom: 15px;
        }

        .product-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .star {
            color: #ffd700;
            font-size: 1.2rem;
        }

        .add-to-cart {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
        }

        .add-to-cart:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
            
        }

.banner-section {
    padding: 50px 20px;
    background: #f8f9fa;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.banner-card {
    flex: 1;
    padding: 0; /* No padding to make image full inside */
    border-radius: 15px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    width: 50%;
    box-sizing: border-box;
    cursor: pointer;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 15px;
}

/* Zoom effect on hover */
.banner-card:hover img {
    transform: scale(1.1);
}

.banner-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #1a2a44;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.banner-button:hover {
    background: #e0e0e0;
    transform: translateX(-50%) scale(1.05);
    color: #0d1b2a;
}





       .slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.fade {
  animation: fade 4s ease-in-out infinite;
}

@keyframes fade {
  from {opacity: 0.6;}
  to {opacity: 1;}
}

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
                padding: 0 15px;
            }

            .featured {
                padding: 60px 30px;
            }

            .new-arrivals-title {
                margin-left: 15px;
                font-size: 1.8rem;
            }

            /* Video optimization for tablets */
            .hero video {
                transform: scale(0.95);
                
                object-fit: cover;
            }

            .hero {
                height: 85vh;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-actions {
                gap: 10px;
            }
            
            .wishlist-icon, .cart-icon {
                padding: 10px 15px;
                font-size: 0.9rem;
            }

            .hero {
                padding: 0 20px;
                justify-content: center;
                text-align: center;
                height: 75vh;
            }

            /* Enhanced video responsiveness for mobile */
            .hero video {
                transform: scale(0.85);
                opacity: 0.7;
                object-fit: cover;
                object-position: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .featured {
                padding: 40px 15px;
            }

            .section-title {
                font-size: 2rem;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 0 10px;
            }

            .product-card {
                padding: 20px;
                border-radius: 15px;
            }

            .product-image {
                height: 160px;
                margin-bottom: 15px;
            }

            .product-name {
                font-size: 1.2rem;
                margin-bottom: 8px;
            }

            .product-price {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }

            .add-to-cart {
                padding: 12px;
                font-size: 0.9rem;
            }

            .new-arrivals-title {
                margin-left: 10px;
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }

            .container {
                padding: 0 10px;
            }

            .banner-container {
                flex-direction: column;
                gap: 15px;
                padding: 0 10px;
            }

            .banner-card {
                margin-bottom: 15px;
                min-height: 250px;
                width: 100%;
            }

            .banner-button {
                padding: 8px 16px;
                font-size: 0.9rem;
                bottom: 15px;
            }

            .collection-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .collection-card {
                height: 200px;
            }

            .collection-title {
                font-size: 1.5rem;
            }

            .search-box {
                width: 120px;
                font-size: 14px;
                padding: 6px 12px;
            }

            .slideshow-container {
                margin: 20px 10px;
            }

            .slide img {
                border-radius: 8px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 65vh;
                padding: 0 15px;
            }

            /* Further video optimization for small mobile */
            .hero video {
                transform: scale(0.8);
                opacity: 0.6;
                object-fit: cover;
                object-position: center;
                filter: blur(0.3px);
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .featured {
                padding: 30px 10px;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 5px;
            }

            .product-card {
                padding: 15px;
                margin: 0 5px;
            }

            .product-image {
                height: 180px;
                margin-bottom: 12px;
            }

            .product-name {
                font-size: 1.1rem;
                margin-bottom: 6px;
            }

            .product-price {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .add-to-cart {
                padding: 10px;
                font-size: 0.85rem;
            }

            .new-arrivals-title {
                margin-left: 5px;
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }

            .container {
                padding: 0 5px;
            }

            .banner-section {
                padding: 30px 10px;
            }

            .banner-container {
                gap: 10px;
                padding: 0 5px;
            }

            .banner-card {
                margin-bottom: 10px;
                min-height: 200px;
                border-radius: 10px;
            }

            .banner-card img {
                border-radius: 10px;
            }

            .banner-button {
                padding: 6px 12px;
                font-size: 0.8rem;
                bottom: 10px;
                border-radius: 20px;
            }

            .search-box {
                width: 100px;
            }

            .nav-actions {
                gap: 8px;
            }

            .slideshow-container {
                margin: 15px 5px;
            }

            .slide img {
                border-radius: 6px;
            }

            /* Swiper adjustments for mobile */
            .newArrivalsSwiper {
                padding: 15px 0;
                margin: 0 -5px;
            }

            .swiper-slide {
                padding: 0 5px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
        }

        @media (max-width: 320px) {
            .hero {
                height: 55vh;
                padding: 0 10px;
            }

            /* Maximum video optimization for very small screens */
            .hero video {
                transform: scale(0.7);
                opacity: 0.5;
                object-fit: cover;
                object-position: center;
                filter: blur(0.5px);
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .hero p {
                font-size: 0.8rem;
            }

            .featured {
                padding: 25px 5px;
            }

            .product-card {
                padding: 12px;
                margin: 0 2px;
            }

            .product-image {
                height: 150px;
                margin-bottom: 10px;
            }

            .product-name {
                font-size: 1rem;
            }

            .product-price {
                font-size: 0.9rem;
            }

            .add-to-cart {
                padding: 8px;
                font-size: 0.8rem;
            }

            .new-arrivals-title {
                font-size: 1.2rem;
                margin-left: 2px;
            }

            .banner-card {
                min-height: 180px;
            }

            .banner-button {
                padding: 5px 10px;
                font-size: 0.75rem;
            }
        }
    .swiper-slide {
  display: flex;
  justify-content: center;
}
.newArrivalsSwiper {
  padding: 20px 0;
}