/* Body / Headlines / Hero */
section {
  padding: 60px 20px;
}

/* Reduce top padding for hero so eyebrow sits closer to header */
.hero {
  padding-top: 12px;
  padding-bottom: 16px;
}

h1, h2 {
  text-align: center;
  font-weight: 800;
}

h1 span {
  color: #ffcc00;
}

p.center {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* .hero-img {
  max-width: 500px;
  
} */
.cta-center {
  text-align: center;
}
.cta {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  justify-content: center;
  margin-top: 20px auto;
  border-radius: 28px;
  text-decoration: none;
}
.cta:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}
.big {
  font-size: 20px;
}
.old-price {
  text-decoration: line-through;
  color: #000000;
  margin-right: 2px;
}
/* Elegant eyebrow (small headline) */
.eyebrow {
  text-align: center;
  font-family: 'Times New Roman', serif;
  font-weight: 530;
  font-style: italic;
  text-decoration: underline;
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

/* Hero headline highlights and product line */
.pre-title { color: #ffffff; font-size: 36px; line-height: 1.1; margin-bottom: 18px; }
.pre-title .highlight { color: #ffcc00; }
.hero-product { text-align: center; font-size: 34px; color: #ffffff; margin: 20px 0 14px; font-weight: 800; }
.hero-product .plus { color: #ffcc00; margin-left: 8px; font-weight: 900; }
.hero-desc { text-align: center; max-width: 850px; margin: 0 auto 20px; color: #f5f5f5; font-size: 20px; }

@media (max-width: 720px) {
  .pre-title { font-size: 32px; }
  .hero-product { font-size: 30px; }
  .hero-desc { font-size: 20px; }
}


/* Image + feature */
.hero-section {
  background: #111;
  padding: 40px 10px;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 16px;

  display: flex;
  align-items: flex-start;
  gap: 32px;
}
/*  ////////////////////  */
/* LEFT SIDE */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}


.hero-timer .countdown {
  display: flex;
  gap: 10px;
}

.hero-timer .count-box {
  background: #ffcc00;
  color: #000;
  padding: 6px 8px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 22px;
}

.hero-timer .count-label {
  font-size: 10px;
  text-align: center;
  margin-top: 2px;
}

.hero-cta {
  margin-top: 6px;
  font-size: 18px;
  padding: 12px 24px;
}

@media (max-width: 768px) {
  .hero-left {
    width: 100%;
  }

  .hero-cta {
    /* width: 100%; */
    margin-top: 15px;
    font-size: 18px;
    padding: 12px 16px;
    text-align: center;
  }
}

/*  ////////////////////  */

/* LEFT IMAGE */
.hero-img {
  max-width: 480px;
  margin-top: 10px;
  width: 100%;
  border: 1.5px solid #ffcc00;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);}

/* RIGHT FEATURE BOX */
.feature-box {
  flex: 1;
  border: 3px solid #FFD400; /* yellow border */
  padding: 20px;
  color: #fff;
  background: #000;
    border-radius: 30px;
}

.feature-box h2 {
  color: #FFD400;
  margin-bottom: 20px;
  border-radius: 30px;
  font-size: 30px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
}

.feature-box li {
  font-size: 20px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .feature-box {
    text-align: left;
  }
}


/* Tick mark animation for feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}

/* Single SVG icon */
.feature-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex-shrink: 0;

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  /* YELLOW CIRCLE + BLACK TICK (SVG) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23FFD400'/%3E%3Cpath d='M6.5 12.5l3.2 3.2 7.8-7.8' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media (max-width: 600px) {
  .feature-list li {
    font-size: 14px;
  }

  .feature-list li::before {
    width: 18px;
    height: 18px;
  }
}

