/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #e8e8e8;
  background: #2c2c2c;
  -webkit-font-smoothing: antialiased;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input { font-family: inherit; }

/* ====== PALETTE (dark masculine) ======
   primary: #ff6b35 (orange accent)
   accent:  #4a90e2 (blue)
   dark:    #1f1f1f
   bg:      #2c2c2c
   soft-bg: #383838
*/

.container { padding: 0 20px; }

/* ====== HERO ====== */
.hero {
  background: linear-gradient(180deg, #383838 0%, #2c2c2c 100%);
  padding: 24px 0 36px;
  text-align: center;
}
.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #3a3a3a;
  border: 1px solid #ff6b35;
  color: #ff6b35;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}
.badge-top .ico { width: 14px; height: 14px; }

.hero-title {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 15px;
  color: #b0b0b0;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-image {
  width: 100%;
  margin: 0 auto 24px;
  border-radius: 24px;
  overflow: hidden;
  background: #3a3a3a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.hero-image img { width: 100%; }

/* ====== PRICE ====== */
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.price-old {
  font-size: 18px;
  color: #707070;
  text-decoration: line-through;
  font-weight: 500;
  order: 1;
}
.sale-chip {
  background: #ff6b35;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  order: 2;
}
.price-new {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  order: 3;
}

/* ====== TIMER ====== */
.timer-wrap { margin-bottom: 22px; }
.timer-label {
  font-size: 13px;
  color: #b0b0b0;
  margin-bottom: 10px;
  font-weight: 500;
}
.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.t-box {
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.t-box span {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.t-box small {
  font-size: 10px;
  color: #808080;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.t-sep {
  font-size: 22px;
  font-weight: 800;
  color: #505050;
}

/* ====== CTA BUTTON ====== */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 20px;
  border-radius: 100px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.cta-btn:active { transform: scale(0.98); box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35); }
.cta-outline {
  background: #3a3a3a;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  box-shadow: none;
  margin-top: 22px;
}

/* ====== STOCK BAR ====== */
.stock-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3a3a3a;
  color: #ffa500;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
}
.stock-bar b { font-weight: 800; }
.ico-sm { width: 14px; height: 14px; }

/* ====== SECTIONS ====== */
.section { padding: 44px 0; }
.section-soft { background: #383838; }
.h2 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.h2-sub {
  font-size: 14px;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 28px;
}

/* ====== BENEFITS ====== */
.benefit-list { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #3a3a3a;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #4a4a4a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.benefit-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-ico svg { width: 24px; height: 24px; }
.benefit-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 13.5px;
  color: #b0b0b0;
  line-height: 1.45;
}

/* ====== FULL IMAGE ====== */
.full-image {
  border-radius: 18px;
  overflow: hidden;
  background: #3a3a3a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.full-image img { width: 100%; }

/* ====== STEPS ====== */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  background: #3a3a3a;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #4a4a4a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}
.step img {
  width: 100%;
  border-radius: 14px;
  margin: 10px 0 14px;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.step p { font-size: 13.5px; color: #b0b0b0; }

/* ====== SPECS ====== */
.spec-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #3a3a3a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.spec-image img { width: 100%; }
.spec-list {
  list-style: none;
  background: #3a3a3a;
  border-radius: 18px;
  padding: 6px 20px;
  border: 1px solid #4a4a4a;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed #4a4a4a;
  font-size: 14.5px;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list span { color: #b0b0b0; }
.spec-list b { color: #ffffff; font-weight: 700; }

/* ====== REVIEWS ====== */
.reviews { display: flex; flex-direction: column; gap: 14px; }
.review {
  background: #3a3a3a;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #4a4a4a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-avatar svg { width: 26px; height: 26px; }
.rev-name { font-size: 15px; font-weight: 700; color: #ffffff; }
.rev-stars { display: flex; gap: 2px; margin-top: 3px; color: #ff6b35; }
.rev-stars svg { width: 14px; height: 14px; }
.review p { font-size: 14px; color: #b0b0b0; line-height: 1.5; }
.review-photo { width: 100%; border-radius: 12px; margin-top: 12px; }

/* ====== ORDER STEPS ====== */
.order-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.o-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #3a3a3a;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #4a4a4a;
}
.o-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.o-ico svg { width: 22px; height: 22px; }
.o-step b { display: block; font-size: 15px; color: #ffffff; margin-bottom: 2px; }
.o-step span { font-size: 13px; color: #b0b0b0; }

/* ====== GUARANTEES ====== */
.guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #3a3a3a;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid #4a4a4a;
}
.guar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}
.guar svg { width: 22px; height: 22px; color: #4caf50; flex-shrink: 0; }

/* ====== LAST OFFER ====== */
.last-offer {
  background: linear-gradient(180deg, #383838 0%, #2c2c2c 100%);
  text-align: center;
}
.last-image {
  width: 100%;
  margin: 0 auto 22px;
  border-radius: 24px;
  overflow: hidden;
  background: #3a3a3a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ====== FORM ====== */
.order-form {
  background: #3a3a3a;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid #4a4a4a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
  text-align: left;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #b0b0b0;
  margin-bottom: 6px;
}
.form-field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1.5px solid #4a4a4a;
  border-radius: 12px;
  background: #2c2c2c;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus { border-color: #ff6b35; background: #383838; }
.order-form .cta-btn { margin-top: 8px; margin-bottom: 0; }

/* ====== FOOTER ====== */
.footer {
  background: #1f1f1f;
  color: #808080;
  padding: 30px 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
}
.footer p { margin-bottom: 10px; }
.footer a { color: #ff6b35; text-decoration: underline; }

/* ====== RESPONSIVE ====== */
@media (max-width: 360px) {
  .hero-title { font-size: 26px; }
  .price-new { font-size: 24px; }
  .h2 { font-size: 21px; }
  .t-box { min-width: 54px; padding: 9px 10px; }
  .t-box span { font-size: 21px; }
}
