﻿/* Reset & base */
body {
   background: linear-gradient(135deg, #f5dad9, #f2c5c4, #f3ede6, #fef7f1);
    background-image: url('images/pastel-texture.png'); /* Add a soft pastel or watercolor texture image */
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #ffeaf4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .navbar h1 {
        font-size: 1.6rem;
        color: #d36c9d;
    }

    .navbar ul {
        list-style: none;
        display: flex;
        gap: 1.5rem;
    }

        .navbar ul li a {
            text-decoration: none;
            color: #444;
            font-weight: 500;
        }

            .navbar ul li a.active,
            .navbar ul li a:hover {
                color: #d36c9d;
            }

/* Hero section */
.hero {
    background: linear-gradient(to bottom, #ffeaf4 60%, #fff7f9 100%);
    text-align: center;
    padding: 5rem 2rem 3rem;
    position: relative;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #9f5f80;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.btn {
    background-color: #d36c9d;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn:hover {
        background-color: #b64e7a;
    }

/* Intro Section */
.intro {
    padding: 3rem 2rem;
    text-align: center;
}

    .intro h3 {
        font-size: 1.8rem;
        color: #9f5f80;
    }

    .intro p {
        max-width: 600px;
        margin: 0.8rem auto 0;
        font-size: 1.1rem;
        color: #555;
    }

/* Optional background wave (if you want to get fancy later) */
/* .hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('your-wave.svg') no-repeat center bottom;
  background-size: cover;
} */
.categories, .instagram, .cta {
    padding: 3rem 2rem;
    text-align: center;
}

    .categories h3,
    .instagram h3,
    .cta h3 {
        color: #9f5f80;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cat-card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .cat-card:hover {
        transform: translateY(-5px);
    }

    .cat-card img {
        width: 100%;
        border-radius: 8px;
    }

    .cat-card p {
        margin-top: 0.5rem;
        font-weight: 500;
        color: #555;
    }

/* Instagram */
.insta-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

    .insta-grid img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .insta-grid img:hover {
            transform: scale(1.05);
        }

.instagram p a {
    color: #d36c9d;
    text-decoration: none;
}

    .instagram p a:hover {
        text-decoration: underline;
    }

/* CTA */
.cta {
    background: #fff0f6;
    border-radius: 12px;
    margin: 2rem;
}

    .cta p {
        max-width: 600px;
        margin: 1rem auto;
        font-size: 1.1rem;
        color: #444;
    }

    .hero-content h2,
    .intro h3,
    .categories h3,
    .instagram h3,
    .cta h3 {
       font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        color: #b84e75;
    }
    
    /* Apply Poppins to the entire header and nav */
.elegant-header,
.elegant-header a,
.main-nav ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500; /* Adjust 300, 500, or 700 as needed */
}

.main-nav ul li a {
  text-decoration: none;
  color: #333; /* or your preferred color */
  font-size: 16px;
  padding: 8px 15px;
  display: inline-block;
}


.quote {
    text-align: center;
    font-style: italic;
    padding: 2rem;
    font-size: 1.2rem;
    color: #5e4b56;
}

    .quote span {
        display: block;
        margin-top: 0.5rem;
        font-weight: bold;
        font-size: 1rem;
        color: #9f5f80;
    }

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    [data-animate].visible {
        opacity: 1;
        transform: translateY(0);
    }

.elegant-header {
    background-color: #fff7f9;
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
    border-bottom: 2px solid #ffeaf4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-logo {
    max-height: 70px;
    width: auto;
}

.main-nav {
    margin-top: 0.5rem;
}

    .main-nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .main-nav ul li a {
            text-decoration: none;
            font-weight: 500;
            color: #444;
            font-size: 1rem;
            position: relative;
            padding-bottom: 4px;
        }

            .main-nav ul li a:hover,
            .main-nav ul li a.active {
                color: #d36c9d;
            }

            .main-nav ul li a::after {
                content: "";
                display: block;
                height: 2px;
                background-color: #d36c9d;
                width: 0%;
                transition: width 0.3s ease;
                margin-top: 4px;
            }

            .main-nav ul li a:hover::after {
                width: 100%;
            }

/* Hamburger for mobile */
.hamburger {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #b84e75;
        border-radius: 2px;
    }

/* Mobile View */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

        .main-nav.active {
            display: block;
            background-color: #fff;
            margin-top: 1rem;
            animation: fadeIn 0.3s ease;
        }

        .main-nav ul {
            flex-direction: column;
            gap: 1rem;
        }

    .hamburger {
        display: flex;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.category-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

    .category-scroll::-webkit-scrollbar {
        display: none;
    }

.cat-card {
    flex: 0 0 calc(25% - 1rem); /* 4 cards visible */
    scroll-snap-align: start;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    min-width: 160px;
}

    .cat-card img {
        width: 100%;
        border-radius: 8px;
    }

    .cat-card p {
        margin-top: 0.5rem;
        font-weight: 500;
        color: #555;
    }

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 1.8rem;
    color: #b84e75;
    padding: 0.4rem 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

    .scroll-btn:hover {
        background-color: #ffeaf4;
    }

    .scroll-btn.left {
        left: 5px;
    }

    .scroll-btn.right {
        right: 5px;
    }

@media (max-width: 992px) {
    .cat-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards visible on tablet */
    }
}

@media (max-width: 600px) {
    .cat-card {
        flex: 0 0 80%; /* 1 card visible on mobile */
    }

    .scroll-btn {
        display: none;
    }

    .category-scroll-wrapper {
        padding: 0;
    }
}

.instagram {
    background: linear-gradient(135deg, #fff0f5, #fceff1);
    padding: 4rem 1rem;
    border-radius: 16px;
    margin: 3rem 1rem;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.insta-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.insta-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

    .insta-scroll::-webkit-scrollbar {
        display: none;
    }

.instagram blockquote.instagram-media {
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 340px;
    scroll-snap-align: start;
    border-radius: 10px;
    background: #fff;
}

/* Scroll Arrows */
.scroll-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.8rem;
    color: #b84e75;
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

    .scroll-btn:hover {
        background-color: #ffeaf4;
    }

    .scroll-btn.left {
        left: 10px;
    }

    .scroll-btn.right {
        right: 10px;
    }


/* Responsive behavior */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }

    .insta-scroll {
        padding: 1rem 0.5rem;
    }

    .instagram blockquote.instagram-media {
        min-width: 280px;
    }
}


.visual-intro .intro-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .feature-card i {
        font-size: 2rem;
        color: #d36c9d;
        margin-bottom: 1rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #9f5f80;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #555;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

.footer {
    background-color: #fff0f6;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid #ffeaf4;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

    .footer-content p {
        margin: 0;
        font-size: 0.95rem;
        color: #555;
    }

.social-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

    .social-icons a {
        color: #b84e75;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #d36c9d;
        }
/* Loader overlay */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff7f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

    #loader p {
        margin-top: 1rem;
        color: #b84e75;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
    }

/* Elegant spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ffeaf4;
    border-top: 4px solid #d36c9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll to Top - Brush Style */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffeaf4;
    color: #b84e75;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    #scrollToTopBtn:hover {
        background-color: #fdd9e7;
        transform: scale(1.05) rotate(-10deg);
    }

    #scrollToTopBtn i {
        pointer-events: none;
    }
.artist-hero {
    background: linear-gradient(135deg, #fff0f5, #ffeaf4);
    padding: 4rem 1rem 3rem;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.artist-hero-inner h1 {
    font-size: 2.2rem;
    color: #b84e75;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artist-hero-inner p {
    font-size: 1.1rem;
    color: #555;
}

.artist-about {
    padding: 3rem 2rem;
    text-align: center;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-image img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.about-text {
    max-width: 700px;
    color: #444;
}

    .about-text h2 {
        font-size: 1.5rem;
        color: #9f5f80;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

.artist-quote {
    text-align: center;
    font-style: italic;
    background: #fff7f9;
    padding: 2.5rem 1.5rem;
    margin: 2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

    .artist-quote blockquote {
        font-size: 1.2rem;
        color: #5e4b56;
        margin-bottom: 0.5rem;
    }

    .artist-quote span {
        display: block;
        font-weight: bold;
        color: #b84e75;
        font-size: 1rem;
    }
/* Contact Form Section */
/* Contact Form Section */
.contact-form {
    width: 60%; /* Adjust the width to make it smaller */
    max-width: 600px; /* Set a maximum width to prevent it from becoming too wide */
    padding: 2rem; /* Add padding for better structure */
    text-align: left; /* Align text to the left */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 3rem auto; /* Center the form horizontally */
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Add space between each section */
}

    /* Form heading */
    .contact-form h2 {
        font-size: 2rem;
        color: #9f5f80;
        margin-bottom: 1rem;
    }

/* Form fields container */
.form-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

    /* Label styles */
    .form-field label {
        font-size: 1rem;
        color: #444;
        margin-right: 1rem; /* Add some space between label and input */
        width: 30%; /* Limit width of label for alignment */
    }

    /* Input and Textarea styles */
    .form-field input,
    .form-field textarea {
        width: 65%; /* Adjust width of input fields to take more space */
        padding: 1rem;
        font-size: 1rem;
        border: 2px solid #e6e6e6;
        border-radius: 8px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Ensure text area grows vertically */
    .form-field textarea {
        resize: vertical;
        min-height: 150px;
    }

/* Submit button styling */
button.btn {
    background-color: #d36c9d;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start; /* Align button to the left */
}

    /* Button hover effect */
    button.btn:hover {
        background-color: #b64e7a;
    }

/* Contact Information Section */
.contact-info {
    padding: 3rem 2rem;
    background-color: #fff0f6;
    text-align: center;
    border-radius: 12px;
    margin-top: 3rem;
}

    .contact-info h3 {
        font-size: 2rem;
        color: #9f5f80;
        margin-bottom: 1rem;
    }

.info-item {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #555;
}

    .info-item i {
        color: #d36c9d;
        margin-right: 0.8rem;
        font-size: 1.5rem;
    }

    .info-item a {
        text-decoration: none;
        color: #9f5f80;
    }

        .info-item a:hover {
            text-decoration: underline;
        }
.header-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .header-icons a {
        color: #b84e75;
        font-size: 1.4rem;
        transition: color 0.3s ease;
    }

        .header-icons a:hover {
            color: #d36c9d;
        }
@media (max-width: 768px) {
    .header-icons {
        display: none;
    }
}


.category-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #fff0f6, #ffeaf4);
}

    .category-hero h1 {
        font-size: 2.2rem;
       font-family: 'Poppins', sans-serif;
        color: #b84e75;
    }

    .category-hero p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0.5rem auto;
        color: #666;
    }

.category-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
}

.category-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .category-block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 247, 249, 0.3), rgba(0, 0, 0, 0.4));
        z-index: 0;
    }

.category-info {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: left;
}

    .category-info h2 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #fff;
    }

    .category-info p {
        margin: 0.8rem 0 1.2rem;
        font-size: 1rem;
        color: #fce4ec;
    }
/* Optional: Fine-tune specific block if needed */
.category-block.custom-pos {
    background-position: top center;
}

/* Responsive */
/* Zoomed out on larger screens */
@media (min-width: 769px) {
    .category-block {
        background-size: contain; /* Zoomed out */
        background-repeat: no-repeat;
        background-position: center center;
    }
}

.designs-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #fff0f6, #ffeaf4);
}

    .designs-hero h1 {
        font-size: 2.2rem;
       font-family: 'Poppins', sans-serif;
        color: #b84e75;
    }

    .designs-hero p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0.5rem auto;
        color: #666;
    }

.design-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 2rem;
    padding: 2rem;
}

@media (max-width: 992px) {
    .design-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 on tablet */
    }
}

@media (max-width: 600px) {
    .design-gallery {
        grid-template-columns: 1fr; /* 1 on mobile */
    }
}

.design-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    max-width: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .design-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .design-card img {
        width: 100%;
        height: auto;
        display: block;
    }

.design-info {
    padding: 1.2rem 1rem;
    text-align: center;
    flex-grow: 1;
}

    .design-info h4 {
        color: #9f5f80;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .design-info p {
        font-size: 0.95rem;
        color: #555;
    }


.product-hero {
    background: linear-gradient(135deg, #fff0f5, #ffeaf4);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

    .product-hero h1 {
        font-size: 2rem;
        color: #b84e75;
        font-weight: 600;
    }

    .product-hero p {
        font-size: 1rem;
        color: #777;
        margin-top: 0.5rem;
    }

/* Slider */
.product-slider {
    padding: 2rem;
    overflow-x: auto;
}

.slider {
    display: flex;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

    .slider img {
        max-height: 350px;
        border-radius: 12px;
        scroll-snap-align: start;
        flex-shrink: 0;
        width: auto;
        max-width: 100%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

/* Reel section */
.product-reel {
    padding: 4rem 2rem;
    background-color: #fff7f9;
}
.reel-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.reel-embed {
    flex: 1;
    min-width: 320px;
    max-width: 340px;
}

.reel-text {
    flex: 1;
    max-width: 500px;
}

    .reel-text h3 {
        color: #b84e75;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .reel-text p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .reel-wrapper {
        flex-direction: column;
    }

    .reel-text {
        text-align: center;
    }
}

    .product-reel h3 {
        color: #9f5f80;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    .product-reel blockquote.instagram-media {
        border: 4px solid #ffeaf4;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 0.5rem;
        background: #fff;
    }
/* Details section */
.product-details {
    padding: 3rem 2rem;
    background: #fff;
}

    .product-details h2 {
        font-size: 1.6rem;
        color: #9f5f80;
        margin-bottom: 1rem;
        text-align: center;
    }

    .product-details ul {
        max-width: 600px;
        margin: 0 auto;
        list-style: disc;
        color: #555;
        padding-left: 1.2rem;
        line-height: 1.8;
    }

    .product-details .note {
        text-align: center;
        font-style: italic;
        color: #b84e75;
        margin-top: 1.5rem;
    }

/* Contact form reuse */
.product-contact {
    background: #fff0f6;
    padding: 3rem 2rem;
    text-align: center;
}

    .product-contact h3 {
        font-size: 1.6rem;
        color: #9f5f80;
        margin-bottom: 0.5rem;
    }

    .product-contact p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 1.5rem;
    }
/* Image Modal Popup */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

    .image-modal img {
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .image-modal.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .image-modal::after {
        content: '✖';
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #ff4f9d; /* or your preferred highlight */
  font-weight: 700;
}

.main-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 400%; /* 4 slides */
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto; /* NEW */
  max-height: 100vh; /* Optional: no more than screen height */
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 100vh; /* Prevents overly tall images */
  object-fit: contain; /* Show full image inside the box */
  display: block;
}


.slider-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.dot.active {
  opacity: 1;
}

