
        .gallery-section {
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 60px;
            
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 400;
            color: #333;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .title-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
            position:relative;
        }

        .title-divider::before,
        .title-divider::after {
            content: '';
            width: 60px;
            height: 1px;
            background: #ddd;
        }

        .stars {
            display: flex;
            gap: 8px;
            color: #202020;
            font-size: 16px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .product-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 300px;
            background: #f5f5f5;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: translateY(-20px) scale(1.05);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-actions {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            gap: 15px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translate(-50%, -50%) translateY(-10px);
        }

        .action-btn {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #333;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .action-btn:hover {
            background: #d4af37;
            color: #fff;
            transform: scale(1.1);
        }

        .product-info {
            padding-top: 0px ;
            padding-bottom: 10px;
            padding-left:  20px;
            padding-right:  20px;
            text-align: center;
        }

        .product-name {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .product-card:hover .product-name {
            color: #d4af37;
        }

        .product-price {
            font-size: 16px;
            color: #666;
            font-weight: 400;
        }

        .product-rating {
            display: flex;
            justify-content: center;
            gap: 3px;
            margin: 10px 0;
            color: #d4af37;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .product-image {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                padding: 30px 15px;
            }
        }

        /* Additional hover animations */
        .product-card {
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .product-card:hover::before {
            left: 100%;
        }

        .quick-view {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            background: #d4af37;
            color: #fff;
            padding: 10px 25px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .product-card:hover .quick-view {
            bottom: 20px;
            opacity: 1;
        }

        .quick-view:hover {
            background: #333;
            transform: translateX(-50%) scale(1.05);
        }

        .section-title {
            text-align: center;
            margin: 40px 0 20px;
            font-size: 24px;
            font-weight: bold;
            position: relative;
        }

        .collections {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
        }

        .flip-card {
            background-color: transparent;
            width: 250px;
            height: 250px;
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 8px;
            overflow: hidden;
        }

        .flip-card-front img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .flip-card-back {
            background-color: #eee;
            color: black;
            transform: rotateY(180deg);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            padding: 20px;
            text-align: center;
        }
   

.hover-efect {
    transition: transform 0.4s ease;
}

.hover-efect:hover {
    transform: scale(1.1);
}

