/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ==========================
   HEADER
========================== */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:34px;
    font-weight:800;
    color:#222;
}

.logo span{
    color:#ff7a00;
}

.nav{
    display:flex;
    gap:35px;
}

.nav a{
    color:#444;
    font-weight:500;
    transition:.3s;
}

.nav a:hover{
    color:#ff7a00;
}

.header-btn{
    background:#ff7a00;
    color:#fff;
    padding:12px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.header-btn:hover{
    background:#e86d00;
    transform:translateY(-2px);
}

/* ==========================
   HERO
========================== */

.hero{
    padding:40px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
}

.hero-right img{

    width:100%;

    border-radius:30px;

    box-shadow:0 30px 60px rgba(0,0,0,.18);

    animation:float 4s ease-in-out infinite;

}
.sale-badge{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
}

.hero h1 span{
    color:#ff7a00;
}

.hero-text{
    font-size:21px;
    color:#666;
    margin-bottom:35px;
}

.price{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:35px;
}

.old-price{
    font-size:30px;
    color:#999;
    text-decoration:line-through;
}

.new-price{
    font-size:56px;
    color:#ff3b30;
    font-weight:800;
}

.hero-btn{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:18px 45px;
    border-radius:15px;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#e86d00;
    transform:translateY(-4px);
}

@media (max-width:768px){

    .new-price{
        font-size:52px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:992px){

.hero-content{
    flex-direction:column-reverse;
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.hero-text{
    font-size:18px;
}

.price{
    justify-content:center;
}

.nav{
    display:none;
}

.header-content{
    height:70px;
}

.hero-btn{
    width:100%;
}

}
/* ==========================
   HERO PREMIUM
========================== */

.rating{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:18px;

    margin-bottom:18px;

    color:#ffb400;

}

.rating span{

    color:#555;

    font-weight:500;

}

.hero-features{

    margin:35px 0;

}

.hero-features div{

    background:#fff;

    padding:15px 18px;

    border-radius:14px;

    margin-bottom:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    font-weight:500;

    transition:.3s;

}

.hero-features div:hover{

    transform:translateX(8px);

}
@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}
/* ==========================
   ADVANTAGES
========================== */

.advantages{

    padding:40px 0;

}

.section-head{

    text-align:center;

    margin-bottom:60px;

}

.section-head span{

    display:inline-block;

    background:#fff3e8;

    color:#ff7a00;

    padding:10px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.section-head h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;

}

.section-head p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:18px;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.adv-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.adv-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.adv-icon{

    width:80px;

    height:80px;

    margin:auto auto 20px;

    background:#fff3e8;

    color:#ff7a00;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

.adv-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.adv-card p{

    color:#666;

    line-height:1.7;

}

@media(max-width:992px){

.advantages-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.advantages{

    padding:70px 0;

}

.section-head h2{

    font-size:30px;

}

.advantages-grid{

    grid-template-columns:1fr;

}

}
/* ==========================
   USES
========================== */

.uses{

    padding:40px 0;

}

.uses-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.use-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.use-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.use-card:hover img{

    transform:scale(1.08);

}

.use-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15));

    display:flex;

    align-items:flex-end;

    padding:25px;

}

.use-overlay h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

}

@media(max-width:992px){

.uses-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.uses-grid{

    grid-template-columns:1fr;

}

.use-card img{

    height:260px;

}

}
/* ==========================
   PACKAGE
========================== */
.specs{

    padding:45px 0;

}

.specs-image{

    width:100%;
    max-width:720px;

    display:block;

    margin:0 auto 25px;

    border-radius:22px;

    overflow:hidden;

    border:2px solid #dcecff;

    box-shadow:0 15px 40px rgba(47,128,237,.10);

}

.specs-title{

    text-align:center;

    font-size:34px;

    font-weight:800;

    color:#173B74;

    margin-bottom:25px;

}

.specs-table{

    background:#fff;

    border:2px solid #dcecff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(47,128,237,.08);

}

.spec-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-bottom:1px solid #edf4ff;

    transition:.3s;

}

.spec-row:last-child{

    border-bottom:none;

}

.spec-row:hover{

    background:#f7fbff;

}

.spec-name{

    color:#173B74;

    font-weight:600;

    font-size:16px;

}

.spec-value{

    color:#2F80ED;

    font-weight:700;

}

@media(max-width:768px){

    .specs{

        padding:40px 15px;

    }

    .specs-image{

        margin-bottom:18px;

        border-radius:18px;

    }

    .specs-title{

        font-size:26px;

    }

    .spec-row{

        padding:14px 16px;

    }

    .spec-name{

        width:65%;
        font-size:14px;
        line-height:1.4;

    }

    .spec-value{

        width:35%;
        text-align:right;
        font-size:14px;

    }

}

/* ==========================
   SPECIFICATIONS
========================== */

.specs{

    padding:45px 0;

}

.specs-image{

    width:100%;
    max-width:720px;

    display:block;

    margin:0 auto 25px;

    border-radius:22px;

    overflow:hidden;

    border:2px solid #dcecff;

    box-shadow:0 15px 40px rgba(47,128,237,.10);

}

.specs-title{

    text-align:center;

    font-size:34px;

    font-weight:800;

    color:#173B74;

    margin-bottom:25px;

}

.specs-table{

    background:#fff;

    border:2px solid #dcecff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(47,128,237,.08);

}

.spec-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-bottom:1px solid #edf4ff;

    transition:.3s;

}

.spec-row:last-child{

    border-bottom:none;

}

.spec-row:hover{

    background:#f7fbff;

}

.spec-name{

    color:#173B74;

    font-weight:600;

    font-size:16px;

}

.spec-value{

    color:#2F80ED;

    font-weight:700;

}

@media(max-width:768px){

    .specs{

        padding:40px 15px;

    }

    .specs-image{

        margin-bottom:18px;

        border-radius:18px;

    }

    .specs-title{

        font-size:26px;

    }

    .spec-row{

        padding:14px 16px;

    }

    .spec-name{

        width:65%;
        font-size:14px;
        line-height:1.4;

    }

    .spec-value{

        width:35%;
        text-align:right;
        font-size:14px;

    }

}

/* =====================================
            REVIEWS
===================================== */

.reviews{
    padding:40px 20px;
    background:#f5f9ff;
    overflow:hidden;
}

.reviews .container{
    max-width:1200px;
    margin:auto;
}

.reviews-header{
    text-align:center;
    margin-bottom:55px;
}

.reviews-rating{
    display:inline-block;
    background:#fff;
    border-radius:20px;
    padding:18px 35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.reviews-stars{
    font-size:28px;
    color:#ff9800;
    letter-spacing:4px;
}

.reviews-score{
    font-size:34px;
    font-weight:800;
    color:#183153;
    margin-top:8px;
}

.reviews-count{
    color:#7d8ea6;
    margin-top:8px;
    font-size:15px;
}

.reviews-header h2{
    font-size:42px;
    font-weight:800;
    color:#183153;
    margin-bottom:12px;
}

.reviews-header p{
    color:#72839b;
    font-size:18px;
    max-width:650px;
    margin:auto;
}

/* ========================= */

.reviews-wrapper{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

}

/* ========================= */

.review-card{

    width:500px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);

}

.review-image{

    overflow:hidden;

}

.review-image img{

    width:100%;

    height:330px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.review-card:hover img{

    transform:scale(1.05);

}

.review-content{

    padding:28px;

}

.review-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

}

.review-top h3{

    margin:0;

    font-size:24px;

    color:#183153;

}

.review-top span{

    color:#7c8da4;

}

.verified{

    background:#eaf8ef;

    color:#2ba84a;

    padding:8px 15px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    white-space:nowrap;

}

.review-stars{

    margin:20px 0;

    color:#ff9800;

    font-size:22px;

    letter-spacing:3px;

}

.review-content p{

    line-height:1.9;

    color:#536377;

    font-size:17px;

}
/* ==========================
   OFFER
========================== */

.offer{

    padding:40px 0;

}

.offer-box{

    background:linear-gradient(135deg,#ff7a00,#ff5b00);

    border-radius:30px;

    color:white;

    padding:50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    box-shadow:0 20px 50px rgba(255,122,0,.35);

}

.offer-badge{

    display:inline-block;

    background:white;

    color:#ff7a00;

    padding:10px 20px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.offer h2{

    font-size:42px;

    margin-bottom:15px;

}

.offer h2 span{

    color:#ffe066;

}

.offer p{

    font-size:20px;

}

.countdown{

    display:flex;

    align-items:center;

    gap:15px;

}

.time-box{

    background:white;

    color:#222;

    width:95px;

    height:95px;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.time-box span{

    font-size:38px;

    font-weight:800;

}

.time-box small{

    color:#777;

}

.dots{

    font-size:34px;

    font-weight:bold;

}

@media(max-width:992px){

.offer-box{

    flex-direction:column;

    text-align:center;

}

.offer h2{

    font-size:32px;

}

.time-box{

    width:80px;

    height:80px;

}

.time-box span{

    font-size:30px;

}

}
/* ==========================
   BEFORE / AFTER
========================== */

.before-after{

    padding:40px 0;

}

.before-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

}

.before-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.before-card img{

    width:100%;

    height:450px;

    object-fit:cover;

    transition:.4s;

}

.before-card:hover img{

    transform:scale(1.05);

}

.label{

    position:absolute;

    top:20px;

    left:20px;

    padding:10px 20px;

    border-radius:30px;

    color:white;

    font-weight:700;

}

.before{

    background:#ff3b30;

}

.after{

    background:#28a745;

}

@media(max-width:768px){

.before-grid{

    grid-template-columns:1fr;

}

.before-card img{

    height:280px;

}

}
/* ==========================
   HOW TO USE
========================== */

.steps{

    padding:40px 0;

    background:#fff;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.step-card{

    position:relative;

    background:white;

    border-radius:25px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.step-card:hover{

    transform:translateY(-10px);

}

.step-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.step-number{

    position:absolute;

    top:15px;

    left:15px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ff7a00;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:20px;

}

.step-card h3{

    margin:20px 15px 10px;

    font-size:22px;

}

.step-card p{

    padding:0 18px 25px;

    color:#666;

}

@media(max-width:992px){

.steps-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.steps-grid{

    grid-template-columns:1fr;

}

}
/* ==========================
   WHY US
========================== */

.why-us{

    padding:40px 0;

    background:linear-gradient(180deg,#f8fbff,#eef6ff);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.why-icon{

    width:85px;

    height:85px;

    margin:auto auto 20px;

    border-radius:50%;

    background:#fff3e8;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

}

.why-card h3{

    margin-bottom:12px;

    font-size:24px;

}

.why-card p{

    color:#666;

    line-height:1.7;

}

@media(max-width:992px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.why-grid{

    grid-template-columns:1fr;

}

}
/* ==========================
   ORDER
========================== */

.order-section{

    padding:40px 0;

}

.order-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    background:#fff;

    border-radius:30px;

    padding:60px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.sale-badge{

    display:inline-block;

    background:#ff7a00;

    color:white;

    padding:12px 24px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:25px;

}

.order-left h2{

    font-size:42px;

    margin-bottom:20px;

}

.order-desc{

    color:#666;

    margin-bottom:35px;

}

.price-area{

    margin:35px 0;

}

.price-area .old-price{

    font-size:28px;

    color:#999;

    text-decoration:line-through;

}

.price-area .new-price{

    font-size:60px;

    font-weight:800;

    color:#ff3b30;

}

.order-benefits{

    display:flex;

    flex-direction:column;

    gap:12px;

    font-size:18px;

}

.order-right form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.order-right input{

    height:65px;

    border:2px solid #ddd;

    border-radius:15px;

    padding:0 20px;

    font-size:18px;

}

.order-right input:focus{

    border-color:#ff7a00;

    outline:none;

}

.order-right button{

    height:68px;

    background:#ff7a00;

    color:white;

    border:none;

    border-radius:15px;

    font-size:22px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.order-right button:hover{

    background:#e86c00;

    transform:translateY(-3px);

}

.order-right small{

    text-align:center;

    color:#777;

}

@media(max-width:992px){

.order-wrapper{

    grid-template-columns:1fr;

    padding:35px;

}

.order-left{

    text-align:center;

}

}
/* ==========================
   MOBILE STICKY BAR
========================== */

.mobile-order{

    display:none;

}

@media(max-width:768px){

.mobile-order{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:72px;

    background:white;

    box-shadow:0 -8px 25px rgba(0,0,0,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 16px;

    z-index:99999;

}

.mobile-price{

    display:flex;

    flex-direction:column;

}

.mobile-price .old{

    font-size:14px;

    text-decoration:line-through;

    color:#999;

}

.mobile-price .new{

    font-size:24px;

    font-weight:700;

    color:#ff3b30;

}

.mobile-btn{

    background:#ff7a00;

    color:white;

    padding:14px 22px;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.mobile-btn:hover{

    background:#e86d00;

    color:white;

}

body{

    padding-bottom:90px;

}

}
/* ==========================
   FAQ
========================== */

.faq{

    padding:40px 0;

}

.faq-box{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:22px;

    font-weight:600;

    cursor:pointer;

}

.faq-question span{

    font-size:28px;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s;

    padding:0 30px;

    color:#666;

    line-height:1.7;

}

.faq-item.active .faq-answer{

    max-height:250px;

    padding:0 30px 25px;

}

.faq-item.active span{

    transform:rotate(45deg);

}
/* ==========================
   FOOTER
========================== */

.footer{

    background:#1e1e1e;

    color:white;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

    margin-bottom:40px;

}

.footer h3{

    font-size:34px;

    margin-bottom:15px;

}

.footer h4{

    margin-bottom:15px;

}

.footer a{

    display:block;

    color:#ddd;

    margin-bottom:10px;

    transition:.3s;

}

.footer a:hover{

    color:#ff7a00;

}

.footer p{

    color:#bbb;

    margin-bottom:10px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:#888;

}

@media(max-width:768px){

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

}
/* =========================
   THANK YOU PAGE
========================= */

.thank-you{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;

    background:
        radial-gradient(circle at top left,#d9f0ff 0%,transparent 35%),
        radial-gradient(circle at bottom right,#d9f0ff 0%,transparent 35%),
        linear-gradient(135deg,#eef7fd,#f8fbfd);
}

.thank-card{

    max-width:720px;
    width:100%;

    background:#fff;

    border-radius:30px;

    padding:60px 45px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.check{

    width:100px;
    height:100px;

    margin:0 auto 30px;

    background:#28c76f;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:50px;

    color:#fff;

    box-shadow:0 15px 35px rgba(40,199,111,.35);

}

.thank-card h1{

    font-size:46px;

    font-weight:800;

    color:#222;

    margin-bottom:25px;

    line-height:1.15;

}

.thank-card p{

    font-size:22px;

    color:#555;

    line-height:1.7;

    margin-bottom:18px;

}

.call-info{

    margin:35px 0;

    background:#fff4e8;

    border:2px solid #ff7a00;

    border-radius:18px;

    padding:20px;

    font-size:22px;

    font-weight:600;

    color:#333;

}

.buy-btn{

    display:inline-block;

    margin-top:15px;

    padding:18px 45px;

    background:#ff7a00;

    color:#fff;

    font-size:22px;

    font-weight:700;

    border-radius:14px;

    text-decoration:none;

    transition:.3s;

    box-shadow:0 12px 30px rgba(255,122,0,.35);

}

.buy-btn:hover{

    background:#e66c00;

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(255,122,0,.45);

}

.buy-btn:active{

    transform:scale(.98);

}

@media(max-width:768px){

    .thank-card{

        padding:40px 25px;

        border-radius:22px;

    }

    .check{

        width:80px;
        height:80px;
        font-size:40px;

    }

    .thank-card h1{

        font-size:34px;

    }

    .thank-card p{

        font-size:18px;

    }

    .call-info{

        font-size:18px;

    }

    .buy-btn{

        width:100%;

        font-size:20px;

        padding:18px;

    }

}
.thank-bottom{
    margin-top:30px;
    color:#777;
    font-size:16px;
    line-height:1.6;
}
.specs{

padding:70px 0;

}

.specs-photo{

width:100%;

border-radius:22px;

margin-bottom:35px;

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.specs-box{

background:#eef5ff;

padding:30px;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.specs-box h2{

font-size:36px;

font-weight:800;

margin-bottom:10px;

color:#23354d;

}

.specs-subtitle{

font-size:18px;

color:#67768b;

margin-bottom:30px;

}

.specs-list{

display:flex;

flex-direction:column;

gap:15px;

}

.spec-item{

display:flex;

align-items:center;

gap:18px;

background:#fff;

padding:18px 22px;

border-radius:18px;

transition:.25s;

box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.spec-item:hover{

transform:translateX(8px);

}

.check{

width:42px;

height:42px;

background:#40a8ff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-weight:bold;

font-size:20px;

flex-shrink:0;

}

.spec-item b{

display:block;

font-size:18px;

color:#22344d;

margin-bottom:3px;

}

.spec-item span{

font-size:17px;

color:#555;

}

@media(max-width:768px){

.specs-box{

padding:20px;

}

.specs-box h2{

font-size:28px;

}

.spec-item{

padding:15px;

}

}
.specs{
    padding:70px 0;
}

.specs-photo{
    width:100%;
    border-radius:24px;
    margin-bottom:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.specs-box{
    background:#eef6ff;
    border-radius:24px;
    padding:30px;
    border:1px solid #d8e8fb;
}

.specs-box h2{
    font-size:38px;
    color:#20334b;
    margin-bottom:10px;
    font-weight:800;
}

.specs-box p{
    color:#68778b;
    font-size:18px;
    margin-bottom:25px;
}

.spec-table{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.spec-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
    border-bottom:1px solid #edf2f8;
}

.spec-row:last-child{
    border-bottom:none;
}

.left{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:700;
    color:#24364d;
}

.check{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#ff8a00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
    flex-shrink:0;
}

.right{
    color:#556476;
    text-align:right;
}

@media(max-width:768px){

    .specs-box{
        padding:20px;
    }

    .specs-box h2{
        font-size:30px;
    }

    .spec-row{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .right{
        margin-left:48px;
        text-align:left;
    }
}
/*===============================
        СТРІЛКИ
================================*/

.review-btn{

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#1f3552;

    font-size:26px;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.3s;

    flex-shrink:0;

}

.review-btn:hover{

    background:#ff9800;

    color:#fff;

    transform:scale(1.08);

}

/*===============================
        ТОЧКИ
================================*/

.reviews-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:35px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#cfd8e5;

    transition:.3s;

}

.dot.active{

    width:36px;

    border-radius:20px;

    background:#ff9800;

}

/*===============================
      МОБІЛЬНА ВЕРСІЯ
================================*/

@media (max-width:768px){

.reviews{

padding:60px 15px;

}

.reviews-wrapper{

flex-direction:column;

gap:18px;

}

.review-card{

width:100%;

}

.review-image img{

height:240px;

}

.review-top{

flex-direction:column;

gap:12px;

}

.review-btn{

display:none;

}

.reviews-header h2{

font-size:30px;

}

.reviews-score{

font-size:26px;

}

.review-content{

padding:22px;

}

}
/*=============================
        Анімація відгуків
==============================*/

.review-card{

    transition:
        opacity .35s ease,
        transform .35s ease,
        box-shadow .35s ease;

}

.review-card.fade-out{

    opacity:0;

    transform:translateX(40px) scale(.98);

}

.review-card.fade-in{

    opacity:1;

    transform:translateX(0) scale(1);

}

.review-image img{

    transition:
        transform .45s ease,
        opacity .35s ease;

}

.review-content{

    transition:
        opacity .35s ease,
        transform .35s ease;

}
/*=============================
        ADVANTAGES
==============================*/

.advantages{

    padding:40px 18px;
    background:#f5f9ff;

}

.advantages .section-title{

    text-align:center;
    margin-bottom:40px;

}

.advantages .section-title h2{

    font-size:34px;
    font-weight:800;
    color:#1d3557;
    margin-bottom:12px;

}

.advantages .section-title span{

    color:#3b82f6;

}

.advantages .section-title p{

    color:#6b7280;
    font-size:18px;

}

.advantages-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}

.adv-card{

    background:#fff;
    border-radius:22px;
    padding:30px 22px;

    text-align:center;

    border:1px solid #d9e8ff;

    box-shadow:
    0 8px 25px rgba(31,41,55,.06);

    transition:.35s;

}

.adv-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(59,130,246,.18);

}

.adv-icon{

    width:72px;
    height:72px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#4ea8ff,#1d72ff);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    color:#fff;

    margin-bottom:18px;

    box-shadow:0 12px 30px rgba(59,130,246,.25);

}

.adv-card h3{

    font-size:22px;
    font-weight:700;
    color:#1d3557;
    margin-bottom:10px;

}

.adv-card p{

    color:#6b7280;
    line-height:1.6;
    font-size:16px;

}

/*=============================
        MOBILE
==============================*/

@media(max-width:992px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.advantages{

padding:50px 16px;

}

.advantages .section-title h2{

font-size:28px;

}

.advantages-grid{

grid-template-columns:repeat(2,1fr);
gap:14px;

}

.adv-card{

padding:20px 14px;
border-radius:18px;

}

.adv-icon{

width:58px;
height:58px;
font-size:28px;

}

.adv-card h3{

font-size:17px;

}

.adv-card p{

font-size:13px;
line-height:1.45;

}

}
/*==================================================
        ЧОМУ ОБИРАЮТЬ ZavaShop
==================================================*/

.advantages{

    padding:40px 0;

    background:#ffffff;

}

.advantages-title{

    text-align:center;

    margin-bottom:40px;

}

.advantages-title h2{

    font-size:38px;
    font-weight:800;
    color:#000000;
    margin-bottom:15px;
    line-height:1.15;

}

.advantages-title span{

    color:#ff9800;

}



.advantages-title p{

    font-size:18px;

    color:#6D7B8D;

}

/*=============================*/

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

/*=============================*/

.adv-card{

    background:#ffffff;

    border:2px solid #DCEBFF;

    border-radius:20px;

    padding:28px 22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(33,110,255,.06);

}

.adv-card:hover{

    transform:translateY(-8px);

    border-color:#2F80ED;

    box-shadow:0 18px 45px rgba(47,128,237,.16);

}

/*=============================*/

.adv-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:18px;

    background:#EEF6FF;

    border:2px solid #D9EAFF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

}

/*=============================*/

.adv-card h3{

    font-size:22px;

    color:#173B74;

    font-weight:700;

    margin-bottom:10px;

}

.adv-card p{

    color:#6D7B8D;

    font-size:15px;

    line-height:1.6;

}

/*=============================*/

@media(max-width:992px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=============================*/

@media(max-width:576px){

.advantages{

padding:55px 15px;

}

.advantages-title h2{

font-size:28px;

}

.advantages-title p{

font-size:15px;

}

.advantages-grid{

grid-template-columns:repeat(2,1fr);

gap:14px;

}

.adv-card{

padding:18px 14px;

border-radius:16px;

}

.adv-icon{

width:55px;

height:55px;

font-size:28px;

margin-bottom:14px;

}

.adv-card h3{

font-size:16px;

}

.adv-card p{

font-size:13px;

line-height:1.45;

}

}