/* =========================================================
   ABAYYA THEME - MAIN CSS
   Brand : Abaya Vani
   Style : Pink, Modern, Simple
========================================================= */

/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff6fa;
    color:#4b2f39;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* ================= CONTAINER ================= */
.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* ================= HEADER ================= */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #f3d9e5;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#d94f8a;
    letter-spacing:.5px;
}

.logo span{
    color:#7a4358;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:32px;
}

.nav-menu a{
    font-weight:500;
    color:#4b2f39;
    transition:.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#d94f8a;
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:none;
    background:#ffe3ef;
    border-radius:12px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#7a4358;
    border-radius:2px;
}

/* ================= BUTTONS ================= */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:999px;
    font-weight:600;
    transition:all .3s ease;
    cursor:pointer;
}

.btn-primary{
    background:#d94f8a;
    color:#fff;
    box-shadow:0 12px 28px rgba(217,79,138,.28);
}

.btn-primary:hover{
    background:#c63f79;
    transform:translateY(-2px);
}

.btn-outline{
    border:2px solid #d94f8a;
    color:#d94f8a;
    background:transparent;
}

.btn-outline:hover{
    background:#d94f8a;
    color:#fff;
}

/* ================= HERO ================= */
.hero{
    padding:90px 0 70px;
}

.hero-wrap{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:56px;
    align-items:center;
}

.hero h1{
    font-size:60px;
    line-height:1.08;
    color:#7a4358;
    margin-bottom:22px;
}

.hero h1 span{
    color:#d94f8a;
}

.hero p{
    font-size:18px;
    color:#6f5a64;
    margin-bottom:34px;
    max-width:560px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-image{
    position:relative;
}

.hero-image::before{
    content:'';
    position:absolute;
    inset:-16px;
    background:linear-gradient(135deg,#ffd8e8,#ffeef5);
    border-radius:34px;
    z-index:-1;
}

.hero-image img{
    border-radius:28px;
    box-shadow:0 20px 40px rgba(122,67,88,.12);
}

/* ================= SECTION TITLE ================= */
.section-title{
    text-align:center;
    margin-bottom:46px;
}

.section-title h2{
    font-size:42px;
    color:#7a4358;
    margin-bottom:10px;
}

.section-title p{
    color:#7a6870;
    max-width:640px;
    margin:0 auto;
}

/* ================= FEATURES ================= */
.features{
    padding:20px 0 80px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.feature-card{
    background:#fff;
    border:1px solid #f3d9e5;
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 12px 30px rgba(122,67,88,.06);
    transition:all .3s ease;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-icon{
    width:74px;
    height:74px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#ffe3ef;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.feature-card h3{
    color:#7a4358;
    margin-bottom:10px;
    font-size:22px;
}

.feature-card p{
    color:#7a6870;
}

/* ================= PRODUCTS ================= */
.products{
    padding:10px 0 90px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.product-card{
    background:#fff;
    border:1px solid #f3d9e5;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 16px 36px rgba(122,67,88,.08);
    transition:all .3s ease;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:360px;
    object-fit:cover;
}

.product-info{
    padding:24px;
}

.product-info h3{
    font-size:24px;
    color:#7a4358;
    margin-bottom:8px;
}

.product-info p{
    color:#7a6870;
    margin-bottom:14px;
}

.price{
    font-size:28px;
    font-weight:700;
    color:#d94f8a;
    margin-bottom:20px;
}

/* ================= ABOUT ================= */
.about{
    padding:10px 0 90px;
}

.about-box{
    background:#fff;
    border:1px solid #f3d9e5;
    border-radius:32px;
    padding:48px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    box-shadow:0 18px 40px rgba(122,67,88,.06);
}

.about-box img{
    border-radius:24px;
}

.about-box h2{
    font-size:40px;
    color:#7a4358;
    margin-bottom:18px;
}

.about-box p{
    color:#6f5a64;
    margin-bottom:14px;
}

/* ================= CTA ================= */
.cta{
    padding-bottom:100px;
}

.cta-box{
    background:linear-gradient(135deg,#d94f8a,#f39abc);
    color:#fff;
    border-radius:36px;
    padding:60px;
    text-align:center;
    box-shadow:0 24px 48px rgba(217,79,138,.28);
}

.cta-box h2{
    font-size:42px;
    margin-bottom:14px;
}

.cta-box p{
    max-width:720px;
    margin:0 auto 26px;
    color:#fff6fa;
}

.cta-box .btn{
    background:#fff;
    color:#d94f8a;
}

.cta-box .btn:hover{
    transform:translateY(-2px);
}

/* ================= FOOTER ================= */
.site-footer{
    background:#7a4358;
    color:#fff;
    padding:28px 0;
}

.footer-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.footer-brand{
    font-size:24px;
    font-weight:700;
}

.footer-brand span{
    color:#ffd7e8;
}

.footer-links{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.footer-links a{
    opacity:.9;
    transition:.3s;
}

.footer-links a:hover{
    opacity:1;
    color:#ffd7e8;
}

.copyright{
    width:100%;
    text-align:center;
    padding-top:16px;
    border-top:1px solid rgba(255,255,255,.15);
    opacity:.9;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){

    .hero-wrap,
    .about-box{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:48px;
    }

    .feature-grid,
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#fff;
        border-bottom:1px solid #f3d9e5;
        flex-direction:column;
        align-items:flex-start;
        padding:20px 5%;
        gap:18px;
        display:none;
    }

    .nav-menu.active{
        display:flex;
    }

    .hero{
        padding-top:56px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .section-title h2,
    .about-box h2,
    .cta-box h2{
        font-size:30px;
    }

    .feature-grid,
    .product-grid{
        grid-template-columns:1fr;
    }

    .about-box,
    .cta-box{
        padding:30px;
    }

    .footer-wrap{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:32px;
    }

    .btn{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
    }
}