/* =========================================================
   BASE
========================================================= */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  background:#eef2f7;
  font-family:'Gotham Pro', Arial, sans-serif;
  color:#1a2a44;
}

.main_wrapper{
  width:480px;
  margin:0 auto;
  background:#fff;
  overflow:hidden;
}

/* =========================================================
   TOP BAR
========================================================= */
.top-bar-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 15px;
}
.top-logo{
  height:32px;
}
.call-button{
  background:#1a4fd8;
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}

/* =========================================================
   HERO / OFFER
========================================================= */
.offer_section{
  background:#f7f9fc;
  text-align:center;
  padding-bottom:30px;
}

.offer_section .box img{
  width:100%;
  display:block;
  border-radius:0 0 22px 22px;
}

.main_title{
  font-size:26px;
  font-weight:700;
  margin:18px 0 8px;
}

.badge{
  display:inline-block;
  background:#e7f0ff;
  color:#1a4fd8;
  padding:8px 18px;
  border-radius:30px;
  font-weight:700;
  margin-bottom:15px;
}

/* =========================================================
   PRICE
========================================================= */
.price{
  width:400px;
  margin:20px auto;
  background:#fff;
  border-radius:40px;
  overflow:hidden;
  display:flex;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.price .old,
.price .new{
  width:50%;
  padding:14px 0;
  text-align:center;
  font-size:13px;
  text-transform:uppercase;
}

.price .old p{
  font-size:20px;
  text-decoration:line-through;
  color:#999;
}

.price .new{
  background:#1a4fd8;
  color:#fff;
  font-weight:700;
}
.price .new p{
  font-size:22px;
}

/* =========================================================
   STOCK
========================================================= */
.prod_count{
  font-size:16px;
  margin-bottom:18px;
}
.prod_count span{
  color:#e63946;
  font-weight:700;
}

/* =========================================================
   BUTTONS
========================================================= */
.button-m{
  display:block;
  width:400px;
  margin:0 auto;
  background:linear-gradient(135deg,#1a4fd8,#3b82f6);
  color:#fff;
  text-align:center;
  padding:18px 0;
  border-radius:50px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  border:none;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(26,79,216,.35);
  transition:.2s ease;
}
.button-m:hover{
  transform:translateY(-1px);
}
.button-m:active{
  transform:translateY(1px);
}

/* =========================================================
   SECTIONS
========================================================= */
section{
  padding:35px 20px;
}

.title{
  text-align:center;
  font-size:22px;
  font-weight:700;
  margin-bottom:20px;
}
.title span{
  display:block;
  font-size:18px;
  font-weight:400;
  color:#5a6b85;
  margin-top:6px;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.sect2 p{
  text-align:center;
  line-height:1.6;
  margin-bottom:20px;
}

.key-features{
  list-style:none;
}
.key-features li{
  padding-left:26px;
  margin-bottom:10px;
  position:relative;
}
.key-features li:before{
  content:"✔";
  position:absolute;
  left:0;
  color:#1a4fd8;
  font-weight:700;
}

/* =========================================================
   ADVANTAGES
========================================================= */
.sect5.premium{
  background:#f7f9fc;
}

.benef2{
  list-style:none;
}
.benef2 li{
  background:#fff;
  border-radius:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  margin-bottom:20px;
  overflow:hidden;
}
.benef2 .img img{
  width:100%;
  display:block;
}
.benef2 .text{
  padding:20px;
  text-align:center;
  line-height:1.6;
}

/* =========================================================
   VIDEO
========================================================= */
.sect_video{
  background:#fff;
}
.video_block{
  width:100%;
}
.video_block video{
  width:100%;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* =========================================================
   GALLERY
========================================================= */
.sect_gallery{
  background:#f7f9fc;
}
.gallery img{
  width:100%;
  border-radius:18px;
  margin-bottom:15px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* =========================================================
   CHARACTERISTICS
========================================================= */
.sect6{
  background:linear-gradient(135deg,#f7f9fc,#e7f0ff);
}
.cha ul{
  list-style:none;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.cha ul li{
  padding:14px 16px;
  border-bottom:1px solid #eef2f7;
}
.cha ul li:last-child{
  border-bottom:none;
}
.cha ul li b{
  color:#1a4fd8;
}

/* =========================================================
   REVIEWS
========================================================= */
.sect8{
  background:#f7f9fc;
}
.rev_item{
  background:#fff;
  border-radius:18px;
  padding:22px;
  margin-bottom:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}
.rev_item span{
  display:block;
  margin-top:10px;
  font-weight:700;
  color:#1a4fd8;
}

/* =========================================================
   DELIVERY
========================================================= */
.order_list{
  list-style:none;
}
.order_list li{
  background:#fff;
  border-radius:18px;
  margin-bottom:18px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}
.order_list .text span{
  font-weight:700;
  color:#1a4fd8;
  font-size:18px;
}

/* =========================================================
   FORM
========================================================= */
.m1-form{
  padding:0 20px;
}
.m1-form input{
  width:100%;
  padding:16px;
  margin-bottom:12px;
  border-radius:40px;
  border:1px solid #dce3ef;
  font-size:16px;
}
.m1-form input:focus{
  outline:none;
  border-color:#1a4fd8;
}

/* =========================================================
   FOOTER
========================================================= */
.footer_section{
  background:#fff;
  border-top:1px solid #e5e9f2;
  padding:25px 20px;
  text-align:center;
  font-size:14px;
  color:#5a6b85;
}
.footer_section a{
  color:#1a4fd8;
  text-decoration:none;
  font-weight:600;
}



/* ================= INTRO PREMIUM ================= */
.premium-intro{
  text-align:center;
  background:#fff;
}

.intro-text{
  font-size:16px;
  color:#5a6b85;
  margin-bottom:25px;
  line-height:1.6;
}

/* grid vizual */
.features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

/* card mic */
.feature-card{
  background:#f7f9fc;
  border-radius:16px;
  padding:16px 12px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.feature-card .icon{
  font-size:28px;
  margin-bottom:8px;
}

.feature-card p{
  font-size:14px;
  font-weight:600;
  color:#1a2a44;
  text-align:center;
}


/* ================= TOP CTA BAR ================= */
/* ================= FIXED ORDER BUTTON ================= */
.fixed-order-btn{
  position:fixed;
  top:15px;
  right:15px;
  z-index:9999;
}

.fixed-order-btn a{
  display:block;
  background:#1a4fd8;
  color:#fff;
  padding:12px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
  transition:.2s ease;
}

.fixed-order-btn a:hover{
  transform:translateY(-1px);
}

.fixed-order-btn a:active{
  transform:translateY(1px);
}


/* ================= DELIVERY STEPS ================= */
.delivery-steps{
  background:#f7f9fc;
  text-align:center;
}

.delivery-steps .title span{
  color:#1a4fd8;
  font-weight:700;
}

/* wrapper */
.steps-wrapper{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:25px;
}

/* card */
.step-card{
  background:#fff;
  border-radius:20px;
  padding:20px 15px 25px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  position:relative;
}

/* număr mare */
.step-num{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#1a4fd8;
  color:#fff;
  width:36px;
  height:36px;
  border-radius:50%;
  line-height:36px;
  font-weight:700;
  font-size:18px;
}

/* imagine */
.step-card img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
  margin:15px auto 12px;
  display:block;
}

/* titlu */
.step-card h4{
  font-size:18px;
  margin-bottom:6px;
  color:#1a2a44;
}

/* text */
.step-card p{
  font-size:14px;
  color:#5a6b85;
}

