/*========================================
PRODUCT PAGE
========================================*/

.page-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    padding:20px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.page-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    text-decoration:none;
}

.logo h2{
    color:var(--primary);
    font-size:32px;
    font-weight:700;
}

.page-header nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

.page-header nav a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:.3s;
}

.page-header nav a:hover,
.page-header nav a.active{
    color:var(--primary);
}

/*========================================
HERO
========================================*/

.product-hero{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fbff,
        #edf5ff
    );

}

.hero-content{

    max-width:800px;
    margin:auto;
    text-align:center;

}

.hero-content .tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:#eaf3ff;

    color:var(--primary);

    font-weight:700;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:56px;

    margin-bottom:25px;

    color:var(--dark);

}

.hero-content p{

    font-size:18px;

    color:var(--gray);

    line-height:1.8;

}

/*========================================
SECTION HEADER
========================================*/

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-header .tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:999px;

    background:#eef5ff;

    color:var(--primary);

    font-weight:700;

    margin-bottom:18px;

}

.section-header h2{

    font-size:42px;

    color:var(--dark);

}

.section-header p{

    max-width:700px;

    margin:20px auto 0;

    color:var(--gray);

    line-height:1.7;

}

/*========================================
FEATURED PRODUCT
========================================*/

.featured-product{

    padding:110px 0;

    background:#fff;

}

.product-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.product-image{

    text-align:center;

}

.product-image img{

    width:100%;

    max-width:420px;

}

.product-info h2{

    font-size:38px;

    margin-bottom:20px;

    color:var(--dark);

}

.product-info p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:30px;

}

.product-features{

    list-style:none;

    margin-bottom:40px;

}

.product-features li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:var(--dark);

    font-weight:500;

}

.product-features i{

    color:#16a34a;

}

.product-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}
/*========================================
COMING SOON
========================================*/

.coming-soon{
    padding:110px 0;
    background:#f8fbff;
}

.coming-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.coming-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.coming-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.coming-card i{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    font-size:30px;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.coming-card h3{
    margin-bottom:15px;
    color:var(--dark);
}

.coming-card span{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#eef5ff;
    color:var(--primary);
    font-weight:600;
}

/*========================================
WHY CHOOSE US
========================================*/

.why-section{
    padding:110px 0;
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    font-size:30px;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.why-card h3{
    margin-bottom:15px;
    color:var(--dark);
}

.why-card p{
    color:var(--gray);
    line-height:1.7;
}

/*========================================
CTA
========================================*/

.product-cta{
    padding:110px 0;
    background:#f8fbff;
}

.cta-card{
    max-width:850px;
    margin:auto;
    padding:70px 50px;
    text-align:center;
    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.cta-card h2{
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
}

.cta-card p{
    max-width:650px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.cta-card .btn{
    background:#fff;
    color:var(--primary);
    font-weight:700;
}

.cta-card .btn:hover{
    transform:translateY(-3px);
}

/*========================================
FOOTER
========================================*/

.page-footer{
    padding:35px 0;
    background:#fff;
    border-top:1px solid #e7edf6;
}

.page-footer p{
    text-align:center;
    color:var(--gray);
    font-size:15px;
}

/*========================================
ANIMATIONS
========================================*/

.product-card,
.coming-card,
.why-card,
.cta-card{
    transition:all .35s ease;
}

/*========================================
TABLET
========================================*/

@media (max-width:992px){

.hero-content h1{
    font-size:46px;
}

.section-header h2{
    font-size:36px;
}

.product-card{
    grid-template-columns:1fr;
    text-align:center;
}

.product-image{
    order:-1;
}

.product-features li{
    justify-content:center;
}

.product-buttons{
    justify-content:center;
}

.cta-card h2{
    font-size:34px;
}

}

/*========================================
MOBILE
========================================*/

@media (max-width:768px){

.page-header .container{
    flex-direction:column;
    gap:20px;
}

.page-header nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.product-hero{
    padding:80px 0;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:16px;
}

.featured-product,
.coming-soon,
.why-section,
.product-cta{
    padding:80px 0;
}

.product-card{
    padding:35px 25px;
}

.product-info h2{
    font-size:30px;
}

.cta-card{
    padding:50px 30px;
}

.cta-card h2{
    font-size:30px;
}

.cta-card p{
    font-size:16px;
}

}

/*========================================
SMALL MOBILE
========================================*/

@media (max-width:576px){

.logo h2{
    font-size:28px;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:15px;
}

.section-header h2{
    font-size:26px;
}

.coming-grid,
.why-grid{
    grid-template-columns:1fr;
}

.product-buttons{
    flex-direction:column;
}

.product-buttons .btn{
    width:100%;
    justify-content:center;
}

.cta-card{
    padding:40px 20px;
}

.cta-card h2{
    font-size:26px;
}

.cta-card p{
    font-size:15px;
}

.page-footer{
    padding:25px 0;
}

.page-footer p{
    font-size:14px;
}

}