/* =========================
   Products section (clean)
   ========================= */

.featured-product-card{
  background:#f5f5f5;
  border:1px solid #e0e0e0;
  padding:35px;
  position:relative;
  margin-bottom:40px;
}

/* Title with blue tint badge */
.featured-product-card h2{
  font-size:20px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:8px;
  font-weight:700;
  color:var(--brand-blue);
  display:inline-block;
  padding:2px 8px;
  /* fallback first, modern second */
  background:rgba(74,144,226,.10);
  background:color-mix(in oklab, var(--brand-blue) 12%, transparent);
}

.featured-product-card h3{
  font-size:24px;
  letter-spacing:1px;
  margin-bottom:15px;
  font-weight:600;
}

.product-price{
  font-size:18px;
  font-weight:700;
  color:var(--brand-blue);
  margin-bottom:20px;
}

.product-badge{
  position:absolute;
  top:-12px;
  right:30px;
  background:var(--brand-blue);
  color:#fff;
  padding:5px 15px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* Features list (choose ✓ and keep it consistent) */
.product-features{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}
.product-features li{
  position:relative;
  padding:6px 0 6px 25px;
  font-size:15px;
  line-height:1.4;
}
.product-features li:before{
  content:"✓";
  position:absolute;
  left:5px;
  color:#6AB51C;
  font-weight:700;
}

/* Other options */
.other-options-section{ margin-top:40px; }
.other-options-section h3{
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--mid-gray);
  margin-bottom:20px;
}

.option-card{
  background:#f5f5f5;
  padding:20px;
  margin-bottom:15px;
  border:1px solid #e0e0e0;
}
.option-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.option-header h4{
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin:0;
}
.option-price{
  font-size:14px;
  font-weight:700;
  color:var(--brand-blue);
}
.option-description{
  font-size:13px;
  color:var(--mid-gray);
  margin-bottom:15px;
}

/* Primary action button */
.primary-action{
  display:inline-block;
  width:auto;
  padding:15px 40px !important;
  font-size:16px !important;
  background:var(--brand-blue) !important;
  color:#fff !important;
  font-weight:700;
  letter-spacing:1.5px;
}
.primary-action:hover{
  background:var(--brand-blue-dark) !important;
  transform:translateY(-2px);
}

/* Two-column layout tweaks */
@media (max-width:768px){
  .two-column-layout{ flex-direction:column; }
  .left-column, .right-column{ flex:1 1 auto; width:100%; }
  .column-divider{ display:none; }
}

/* =========================
   Launch reminder form
   ========================= */

.launch-inline{
  background:#f5f7fb;
  border:1px solid #e4e7ee;
  border-radius:0;
  padding:16px;
  margin-top:10px;
}
.li-heading{ font-weight:700; margin-bottom:6px; }

.li-form{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.li-form input{
  flex:1 1 auto;                 /* <- prevents the tall input bug on mobile */
  padding:10px 12px;
  border:0 solid #d5d8df;
  border-radius:0;
  font-size:14px;
  margin:0;
  line-height:1.2;
  box-sizing:border-box;
  -webkit-appearance:none;
  appearance:none;
}
.li-form .li-spacer{ flex-basis:100%; width:100%; }

.li-submit{
  background:var(--brand-blue);
  color:#fff;
  border:0;
  border-radius:0;
  padding:10px 16px;
  font-weight:700;
  letter-spacing:.5px;
  cursor:pointer;
}
.li-submit:hover{ background:var(--brand-blue-dark); }

.li-success{ font-weight:600; margin-top:8px; }

/* Honeypot */
.hp-wrap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
  pointer-events:none;
}

/* Bio box */
.launch-bio{
  background:#F0F9E8;
  border:1px solid #6AB51C;
  border-radius:0;
  padding:16px;
  margin-top:6px;
  font-size:14px;
  line-height:1.6;
}

/* Mobile stack + compact padding */
@media (max-width:600px){
  .li-form{ flex-direction:column; gap:10px; }
  .li-form .li-spacer{ display:none; }
  .li-form input, .li-form button{ width:100%; }
  .li-form input{ flex:0 0 auto; min-height:44px; } /* good tap target */
  .launch-inline{ padding:12px; }
}
