* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(250 247 220);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B4513;
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #CD853F;
}

.logo img {
    height: 50px;
    /* adjust size */
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-item a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #CD853F;
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item a:hover {
    color: #8B4513;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    /* margin-top: 10px; */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f8f8;
    color: #8B4513;
    padding-left: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Delay classes */
.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.7s;
}

.delay-3 {
    animation-delay: 1.1s;
}

.delay-4 {
    animation-delay: 1.5s;
}

/* Animation keyframe */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
/* ===============================
   PREMIUM HERO BANNER
================================= */

.hero-banner {
    position: relative;
    height: 100vh;
    background: url("../image/banner.png") top center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay for luxury look */
.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #8B4513;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #CD853F;
    color: #fff;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* Section Styles */
.section {
    padding: 25px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-top: 30px;
    color: #8B4513;
    letter-spacing: 3px;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 0;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 10px;
}

.about-text {
    line-height: 1.9;
    color: #000000;
    font-weight: 300;
}

.highlight {
    color: #8B4513;
    font-weight: 700;
}

.about-image {
    background: linear-gradient(135deg, #CD853F, #DEB887);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 8rem; */
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 10px 12px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 34px;
    color: #8B4513;
    margin-bottom: 4px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
    color: #8B4513;
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Product Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    transition: 0.4s ease;
}

.hide-product {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* ===== PRODUCT CAROUSEL ===== */

.product-slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

/* Zoom effect */
.slides img:hover {
    transform: scale(1.2);
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 2;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.coming-soon-box {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f5f2, #fff);
    border-radius: 16px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.coming-soon-box h2 {
    font-size: 36px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
}

.coming-soon-box h3 {
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 20px;
}

.coming-soon-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.notify-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #8B4513;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.notify-btn:hover {
    background-color: #5e2f0d;
    transform: translateY(-3px);
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .slides img {
        height: 350px;
    }
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px
}

.dots label {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc
}

.product-info {
    text-align: center;
    padding: 18px
}

.product-price {
    font-weight: 700;
    font-size: 20px;
    margin: 10px 0
}

.order-button {
    background: #8B4513;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer
}


/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 20px;
}

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #CD853F;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #8B4513;
    letter-spacing: 1px;
}

.contact-details p,
.contact-details a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 300;
}

.contact-details a:hover {
    color: #8B4513;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #8B4513;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #CD853F;
    box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8B4513, #CD853F);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 10%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.newsletter {
    display: flex;
    margin-bottom: 15px;
}

.newsletter input {
    padding: 8px;
    width: 70%;
    border: none;
    outline: none;
}

.newsletter button {
    padding: 8px 12px;
    background-color: #c59d5f;
    border: none;
    color: #fff;
    cursor: pointer;
}

.social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 20px;
    transition: 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a:hover {
    color: #CD853F;
    transform: translateY(-3px);
}


.footer-bottom {
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #8B4513;
    letter-spacing: 1px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.policy-content strong {
    color: #8B4513;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    cursor: pointer;
    color: #8B4513;
    transition: 0.3s;
}

.faq-question:hover {
    color: #CD853F;
}

.faq-answer {
    display: none;
    padding-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.skin-tone-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tone {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.3s ease;
}

.tone:hover {
    transform: scale(1.1);
}

.tone.active {
    border: 3px solid #8B4513;
    transform: scale(1.15);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #333;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: #CD853F;
}

.toast.error {
    background: #dc3545;
}


/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-top: 50px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

#handloom .about-image img {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* ===============================
   GLOBAL RESPONSIVE IMPROVEMENTS
================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Improve container padding */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .section {
        padding: 25px 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================
   MOBILE RESPONSIVE (768px)
================================= */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #8B4513;
}

@media (max-width: 768px) {

    /* Section spacing */
    .section {
        padding: 25px 20px;
    }

    /* Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        /* important */
        top: 0;
        right: -100%;
        /* hidden to right */
        width: 75%;
        height: 100vh;
        background: rgb(250, 247, 220);
        flex-direction: column;
        padding-top: 120px;
        /* space below header */
        display: flex;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
        /* slide in */
    }

    .nav-item {
        text-align: center;
        padding: 15px 0;
    }

    .nav-item a:hover {
        color: #8B4513;
    }
    .dropdown .arrow {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }
    
    /* Rotate when active */
    .dropdown.active .arrow {
        transform: rotate(180deg);
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        display: none;
        padding: 0;
        background: rgb(250, 247, 220);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .dropdown-content a:hover {
        color: #8B4513;
        background: transparent;
        padding-left: 0;
    }

    /* Hero Section */
    .hero {
        height: 85vh;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.8rem;
    }

    /* About + Contact Grid */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: auto;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }


    /* Contact Form */
    .contact-form {
        padding: 25px;
    }

    .contact-item {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   EXTRA SMALL DEVICES (480px)
================================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-top: 50px;
    }

    .product-price {
        font-size: 18px;
    }

    .order-button {
        width: 100%;
    }
}