/* 🎬 Video Banner */
body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fafafa;
    color: #333;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}


.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;  Full screen 
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;  Video ko back pe le jaane ke liye 
}

 Overlay Content 
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

    .video-overlay h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .video-overlay p {
        font-size: 18px;
        margin-bottom: 20px;
    }

.shop-now-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background: #f4b400;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

    .shop-now-btn:hover {
        background: #d49900;
    }

 ✅ Mobile Responsive 
@media (max-width: 768px) {
    .video-banner {
        height: 100vh;
    }

    .video-overlay {
        width: 90%;
        padding: 15px;
    }

        .video-overlay h1 {
            font-size: 24px;
        }

        .video-overlay p {
            font-size: 16px;
        }

    .shop-now-btn {
        padding: 8px 16px;
    }
}

/* ✅ Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 80px;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* 🎯 Grid for Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive cards */
    gap: 20px; /* Space kam karne ke liye */
    width: 75%;
    margin: auto;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cards per row */
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr); /* Mobile: 1 card per row */
    }
}

/* 🎨 Product Card Styling */
.product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    /* width: 70%; */
}

    .product-card:hover {
        transform: scale(1.05);
    }

    .product-card img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

/* 🏷️ Badges */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff8c00;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

    .badge.discount {
        top: 35px;
        background: #4caf50;
    }

    .badge.offer {
        top: 60px;
        background: #d32f2f;
    }

/* 📌 Product Info */
.product-info {
    margin-top: 10px;
}

    .product-info .category {
        font-size: 12px;
        color: #777;
        text-transform: uppercase;
    }

    .product-info h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 5px 0;
    }

    .product-info .rating {
        font-size: 14px;
        color: #ff9800;
    }

    .product-info .price {
        font-size: 16px;
        font-weight: bold;
        margin: 5px 0;
    }
    .product-info a{
        text-decoration:none;
    }
    .old-price {
        text-decoration: line-through;
        color: #999;
    }

/* 🛒 Add to Cart Button */
.add-to-cart {
    display: block;
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}


    .add-to-cart:hover {
        background: #444;
    }

/* 🔗 View All Button */
.view-all {
    text-align: center;
    margin-top: 30px;
}
.view-all button{
    border:none;
}
    .view-all button a {
        text-decoration: none;
        padding: 10px 20px;
        border: 1px solid black;
        background: white;
        color: black;
        cursor: pointer;
        font-size: 16px;
        font-weight: normal;
        border-radius: 5px;
        width: 250px !important;
    }

        .view-all button a:hover {
            background: black;
            color: white;
        }
        a{
            text-decoration:none;
        }



.premium-perfume-showcase {
    width: 100%;
    background: #452112;
    background: linear-gradient(90deg, rgba(69, 33, 18, 1) 0%, rgba(29, 20, 13, 1) 100%);
    padding: 40px 0;
    margin:80px 0;
}

.perfume-flex-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

.perfume-image-side, .perfume-content-side {
    flex: 1;
    min-width: 300px;
}

    .perfume-image-side img {
        width: 80%;
        border-radius: 16px;
/*        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);*/
    }

    .perfume-content-side h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: #937416;
        font-family: 'Playfair Display', serif;
    }

    .perfume-content-side p {
        color: white;
        font-family: 'Libre Baskerville', serif;
        font-weight: 400;
        line-height: 1.6;
        font-size: 16px;
    }

.perfume-shop-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background-color: #937416;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .perfume-shop-btn:hover {
        background-color: #333;
        transform: scale(1.05);
    }

.banner-link img {
    width: 100%;
    height: auto;
    display: block;
    background-size:cover;
    padding:50px 0px;
}
/*Categories CSS Style*/
.category-section {
    padding: 0px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.category-flex {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.category-card {
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px;
    flex-shrink: 0;
}
.category-card a{
    text-decoration:none;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    padding: 15px 0;
}

/*Two Banner Style code*/
.banner-image-section {
    display: flex;
    gap: 20px;
    padding: 40px;
    justify-content: center;
    align-items: center;
    background: #fafafa;
}

.banner-img {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

    .banner a {
        display: block;
    }

.banner-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.banner-img:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-image-section {
        flex-direction: column;
    }

    .banner-img img {
        height: 300px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Libre+Baskerville&display=swap');

.luxury-why-heart {
    padding: 50px 20px;
    color: black;
    position: relative;
    overflow: hidden;
}

    .luxury-why-heart::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
        opacity: 0.05;
        z-index: 0;
    }

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #D4AF37; /* Gold color */
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.luxury-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.luxury-feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 16px;
    max-width: 250px;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

    .luxury-feature-box:hover {
        transform: translateY(-12px);
        background: rgba(255, 255, 255, 0.08);
        border-color: #D4AF37;
    }

    .luxury-feature-box .icon {
        font-size: 40px;
        margin-bottom: 15px;
        display: inline-block;
        color: #D4AF37;
    }

    .luxury-feature-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        margin-bottom: 10px;
        color: black;
    }

    .luxury-feature-box p {
        font-family: 'Libre Baskerville', serif;
        font-size: 12px;
        color: #ccc;
    }

/* Responsive */
@media (max-width: 768px) {
    .luxury-features {
        flex-direction: column;
        align-items: center;
    }
}

/*Combo Style Code*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Libre+Baskerville&display=swap');

.combo-offers-section {
    padding: 10px 20px;
    background: #fafafa;
}

.combo-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
}

    .combo-heading::after {
        content: "";
        width: 60px;
        height: 3px;
        background: #D4AF37;
        display: block;
        margin: 15px auto 0;
        border-radius: 2px;
    }

.combo-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.combo-card {
    text-align: center;
    max-width: 250px;
    transition: all 0.4s ease;
}

.combo-image {
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

    .combo-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.4s ease;
    }

.combo-card:hover img {
    transform: scale(1.05);
}

.combo-title {
    margin-top: 15px;
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .combo-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* meet founder code*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Libre+Baskerville&display=swap');

.founder-section {
    padding: 100px 20px;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.founder-content {
    display: flex;
    align-items:flex-start;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.founder-text {
    flex: 1;
    text-align:start;
}

    .founder-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 35px;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .founder-text p {
        font-family: 'Libre Baskerville', serif;
        font-size: 14px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

.founder-signature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

    .founder-signature img {
        width: 80px;
        height: auto;
    }

    .founder-signature p {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        color: #777;
    }

.founder-button {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s;
}

    .founder-button:hover {
        background: #c7a029;
    }

.founder-image-frame {
    flex: 1;
    max-width: 500px;
    background: linear-gradient(135deg, #D4AF37, #ffffff);
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .founder-image-frame img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
    }

    .founder-image-frame:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

/* Scroll Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
    }
}