/* Home V2 namespaced styles (won't clash): everything starts with .hp- */

.checklist {
  list-style: none;      /* remove default bullets */
  padding-left: 0;       /* remove default indent */
  margin: 10px 0 0 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;    /* space for checkmark */
  margin-bottom: 10px;
}

.checklist li::before {
  content: "✓";          /* checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #f2c66d;        /* gold / brand color */
  font-weight: bold;
}

.yellowbg{
	background-color:#ffcb4f;
}

.lyellow{
	background:#e0d4b0;
}

.main_boxer{
	position:relative;
	display:block;
	background:#010101;
	width:100%;
	margin-top:48px;
}

.main_boxerInner{
	background:url('img/mainImgBG.webp');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:right;
	position:relative; display:grid;  overflow: hidden;
}

.mainTextHolder{
	width:70%;
	padding:10px 10px 10px 10px;
	z-index:400; 
}

.mainText{
	margin-top:100px;
	font-weight:bolder;
	font-size: 36px;
	float:right;
	width:90%;
	text-align:center;
	color:#efd9b6;
}

.subText{
	font-size:24px; 
	float:right; 
	width:60%; 
	text-align:center; 
	color:#FFFFFF; 
	text-align:left; 
	margin-top:20px;
}

.mainBtnHolder{

	margin-top:20px;
	width:75%;
	float:left;
	text-align:center;
	z-index:100;
}

/* Targeting specific class for Chrome, Safari, Edge, Opera */
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Targeting specific class for Firefox */
.no-spinners {
  -moz-appearance: textfield;
  appearance: textfield;
}


.orderBtn{
	position:relative;
	display:block;
	padding: 9px 24px 9px;
	border-radius:20px;
	text-decoration:none;
	font-size:12px;
	font-weight:bolder;
	float:left;
	color:black;
	cursor:pointer;
	margin:10px;
}

.orderBtn:hover{
	background-color:#FAF884;
}

/* TRUST STRIP CONTAINER */
.truststrip {
  position:relative;
  display:block;
  width: 100%;
/*  background: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);*/
  padding: 10px 12px;
}

/* INNER GRID */
.truststrip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* EACH TRUST ITEM */
.truststrip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  min-height: 64px;
  cursor:pointer;
}

/* LOGO */
.truststrip-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

/* TEXT */
.truststrip-text {
  min-width: 0;
}

.truststrip-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.truststrip-text span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255,255,255,.70);
  line-height: 1.25;
}

.mainImg{
	margin-top:50px; 
	width:35%;
	float:right; 
	margin-left:65%;
}

.ingredients-section {
  background:
/*	radial-gradient(circle at top, rgba(255,200,120,.15), transparent 60%),
    linear-gradient(#070707, #0b0b0b),*/
    url('img/subBG3.webp');
	background-repeat: repeat;
	background-size:cover;
	background-position:center;
  padding: 80px 20px;
  color: #f5f5f5;
}

.container_home {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #f5d58c;
  margin-bottom: 10px;
}

.section-header p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
}

.section-header.secondary {
  margin-top: 80px;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,215,140,.25);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.feature-card img {
  height: 48px;
  margin: 0px auto 16px auto;
}

.feature-card h3 {
  color: #f5d58c;
  margin-bottom: 8px;
}

.feature-card p {
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

/* INGREDIENTS */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ingredient-card {
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
}

.ingredient-card img {
  height: 100px;
  object-fit: contain;
  margin:0px auto 14px auto;
}

.ingredient-card h4 {
  color: #f5d58c;
  margin-bottom: 4px;
}

.ingredient-card span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* CTA */
.section-cta {
  text-align: center;
  margin-top: 50px;
  min-height:30px;
}

.table_btn {
  background: linear-gradient(#f6c768, #d9a441);
  color: #1a1205;
  padding: 12px 8px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,200,120,.25);
}

.median{
	width:600px;
	max-width:90%;
	margin:auto;
}

.btn-primary {
  background: linear-gradient(#f6c768, #d9a441);
  color: #1a1205;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,200,120,.25);
  cursor:pointer;
}

.btn-primary2 {
  background: linear-gradient(#f6c768, #d9a441);
  color: #1a1205;
  font-size:14px;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,200,120,.25);
  margin-right:10px;
}

.btn-primary3 {
  background: linear-gradient(#e7d9b4, #e5dcc5);
  color: #1a1205;
  font-size:14px;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,200,120,.25);
}

.testimonials-section {
  background:url('img/subBGT5.webp');
/*    radial-gradient(circle at top, rgba(255,200,120,.15), transparent 60%),
    linear-gradient(#070707, #0b0b0b);*/
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  min-width: 100%;
  padding: 70px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Optional decorative leaves/glow */
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255,200,120,.10), transparent 60%);
  pointer-events: none;
}

.ts-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.ts-header {
  text-align: center;
  margin-bottom: 36px;
}

.ts-header h2 {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(24px, 4vw, 44px);
  color: #f5d58c;
  margin: 0 0 12px;
}

.ts-stars {
  font-size: 22px;
  letter-spacing: 6px;
  color: #f6c768;
  text-shadow: 0 8px 20px rgba(255,200,120,.22);
}

.holderx{
	width:800px;
	max-width:98%;
	margin:auto;
}

/* Grid */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.ts-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,215,140,.18);
  border-radius: 20px;
  padding: 22px 16px 20px;
  backdrop-filter: blur(7px);
  box-shadow: 0 14px 45px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
}

/* subtle inner glow */
.ts-card::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 0%, rgba(255,200,120,.12), transparent 55%);
  pointer-events: none;
}

.ts-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}

/* Avatar */
.ts-avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(245,213,140,.55);
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
  background: rgba(255,255,255,.06);
}

.ts-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Flag */
.ts-flag {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 18px rgba(0,0,0,.45);
}

/* Name + location */
.ts-name {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 8px 0 10px;
  font-size: 20px;
  color: #f5d58c;
  font-weight: 800;
}

.ts-name span {
  font-size: 14px;
  color: rgba(255,255,255,.70);
  font-weight: 600;
  margin-left: 6px;
}

/* Quote */
.ts-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Hover effect (optional premium lift) */
.ts-card:hover {
  transform: translateY(-2px);
  transition: 0.2s ease;
  border-color: rgba(245,213,140,.35);
}

footer{
      padding:30px 0;
      color:rgba(255,255,255,.55);
      border-top:1px solid rgba(255,255,255,.06);
      font-size:12px;
    }
/*.wrap{max-width:var(--max); margin:0 auto; padding:0 18px;}
 RESPONSIVE */
@media (max-width: 1200px) {
  .ts-grid {
    grid-template-columns: 1fr;
  }
  .ts-card {
    max-width: 560px;
    margin: 0 auto;
  }
}

.gold-divider {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 10px 0;
  background: linear-gradient(
    to right,
    transparent,
    #f6c768,
    transparent
  );
}

.gold-divider::after {
  content: "";
  position: absolute;
  inset: -6px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255,200,120,.55),
    transparent 70%
  );
  filter: blur(6px);
  pointer-events: none;
}


/* TABLET: 2 COLUMNS */
@media (max-width: 1200px) {
	.mainImg {
		width:50%;
		margin-left:50%; 
		margin-top:60px;
	}
	.mainTextHolder{
		width:60%;
	}
	.mainText{
		font-size:36px;
		width:100%;
		margin-top:70px;
	}
	.subText{
		font-size: 20px;
		width:90%;
	}
	.mainBtnHolder{
		width:60%;
	}
/*	.feature-grid {
		grid-template-columns: 2fr;
		grid-template-columns: repeat(2, 1fr);
	}*/
	.ingredient-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.truststrip-inner {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* MOBILE: 1 COLUMN */
@media (max-width: 600px) {
	.feature-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.mainImg {
		width:72%;
		margin-left:28%; 
		margin-top:10px;
	}
	.mainTextHolder{
		width:60%;
	}
	.mainText{
		font-size:24px;
		width:100%;
		margin-top:36px;
	}
	.subText{
		font-size: 14px;
		width:95%;
	}
	.mainBtnHolder{
		width:100%;
	}

	.ingredient-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.truststrip-inner {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.truststrip-item {
		padding: 10px;
	}

	.truststrip-item img {
		width: 42px;
		height: 42px;
	}
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

    /* Simple top nav */
.topbar{
      position:sticky; top:0; z-index:50;
      background: rgba(0,0,0,.55);
      border-bottom:1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
    }
    .topbar-inner{
      max-width:var(--max);
      margin:0 auto;
      padding:12px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight:900;
      letter-spacing:.3px;
    }
    .brand img{height:30px;width:auto}
    .navlinks{
      display:flex; gap:16px; color:var(--muted); font-size:13px;
    }
    .navlinks a:hover{color:var(--text)}
    .navcta{
      display:flex; gap:10px; align-items:center;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background: rgba(255,255,255,.06);
      font-weight:800;
      font-size:13px;
      cursor:pointer;
    }
    .btn-primary{
      background: linear-gradient(180deg,var(--gold),var(--gold2));
      color:#1a1206;
      border-color: transparent;
      box-shadow: 0 10px 28px rgba(246,199,104,.18);
    }

    /* Layout */
    .wrap{
      max-width:var(--max);
      margin:0 auto;
      padding:22px 18px 60px;
    }

    .card{
      background: var(--panel);
      border:1px solid rgba(255,255,255,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
    }

    /* Promo header */
    .promo{
      background:
        radial-gradient(900px 260px at 50% 0%, rgba(246,199,104,.18), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
      position:relative;
      padding:26px 20px;
      text-align:center;
    }
    .promo .kicker{
      color:var(--gold);
      font-weight:900;
      letter-spacing:2px;
      font-size:14px;
    }
    .promo h1{
      font-family: "Times New Roman", Georgia, serif;
      margin:10px 0 6px;
      font-size: clamp(26px, 3.2vw, 44px);
      color:#f5d58c;
      letter-spacing:-.2px;
    }
    .promo p{
      margin:0;
      color:rgba(255,255,255,.80);
      font-size:15px;
    }
    .gold-divider{
      height:2px; width:100%;
      margin:16px auto 0;
      background: linear-gradient(to right, transparent, rgba(246,199,104,.9), transparent);
      box-shadow: 0 0 10px rgba(246,199,104,.45);
    }

    /* Main grid: summary + form */
    .main-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      padding:16px;
    }

    .section-title{
      font-weight:900;
      letter-spacing:1px;
      font-size:13px;
      color:rgba(255,255,255,.78);
      margin:0 0 10px;
      text-transform:uppercase;
    }

    /* Summary box */
    .summary{
      border-radius: var(--radius);
      background: rgba(0,0,0,.26);
      border:1px solid rgba(255,255,255,.10);
      padding:14px;
    }

    .product-row{
      display:grid;
      grid-template-columns: 110px 1fr;
      gap:14px;
      align-items:start;
    }
    .product-image{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      padding:10px;
    }

    .product-name{
      margin:0 0 8px;
      font-size:18px;
      font-weight:950;
      color:#fff;
    }

    /* SKU blocks */
    .sku{
      display:grid;
      grid-template-columns: 1fr 140px;
      gap:12px;
      align-items:center;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      margin-bottom:10px;
    }
    .sku .label{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .sku .label b{
      display:block;
      font-size:14px;
      color:#fff;
    }
    .sku .label small{
      display:block;
      color:var(--muted);
      margin-top:2px;
      font-size:12px;
    }
    .tag{
      padding:4px 10px;
      border-radius:999px;
      font-size:11px;
      font-weight:900;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.25);
      color: rgba(255,255,255,.85);
      white-space:nowrap;
    }
    .tag.grape{ border-color: rgba(176, 70, 255, .28); }
    .tag.mint{ border-color: rgba(116,200,108,.28); }

    /* qty control */
    .qty{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
    }
    .qty button{
      width:34px; height:34px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:#fff;
      font-weight:900;
      cursor:pointer;
    }
    .qty input{
      width:56px;
      height:34px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.25);
      color:#fff;
      text-align:center;
      font-weight:900;
      outline:none;
    }

    .promo-applied{
      margin-top:8px;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(116,200,108,.10);
      border:1px solid rgba(116,200,108,.20);
      color: rgba(255,255,255,.92);
      font-weight:800;
      font-size:13px;
    }

    .totals{
      margin-top:12px;
      border-top:1px solid rgba(255,255,255,.10);
      padding-top:12px;
      display:grid;
      gap:8px;
      color:rgba(255,255,255,.86);
    }
    .totals .line{
      display:flex; justify-content:space-between; gap:10px;
      font-size:13px;
    }
    .totals .total{
      display:flex; justify-content:space-between; align-items:baseline;
      padding-top:8px;
      border-top:1px solid rgba(255,255,255,.10);
      margin-top:6px;
    }
    .totals .total b{
      font-size:15px;
      color:#fff;
    }
    .totals .total strong{
      font-size:22px;
      color:#f5d58c;
    }

    .bullets{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
    }
    .bullets li{
      padding-left:26px;
      position:relative;
      color:rgba(255,255,255,.78);
      font-size:13px;
      line-height:1.45;
    }
    .bullets li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:0;
      color: var(--gold);
      font-weight:900;
    }

    /* Trust strip (inside) */
    .truststrip2{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:10px;
    }
    .trustitem{
      border-radius:14px;
      background: rgba(0,0,0,.22);
      border:1px solid rgba(255,255,255,.10);
      padding:10px;
      display:flex;
      align-items:center;
      gap:10px;
      min-height:58px;
	  cursor:pointer;
    }
    .trustitem img{
      width:38px; height:38px;
      object-fit:contain;
      flex:0 0 38px;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
    }
    .trustitem b{display:block;font-size:12px}
    .trustitem span{display:block;color:var(--muted);font-size:11px;margin-top:2px}

    /* Form card */
    .formbox{
      border-radius: var(--radius);
      background: rgba(0,0,0,.26);
      border:1px solid rgba(255,255,255,.10);
      padding:14px;
    }
    .form-head{
      text-align:center;
      margin-bottom:12px;
    }
    .form-head h2{
      font-family: "Times New Roman", Georgia, serif;
      margin:6px 0 4px;
      color:#f5d58c;
      font-size:22px;
    }
    .form-head p{
      margin:0;
      color:rgba(255,255,255,.70);
      font-size:13px;
    }

    .field{
      display:grid;
      gap:6px;
    }
    .field label{
      font-size:12px;
      color:rgba(255,255,255,.78);
      font-weight:800;
    }
	
	.field2{
      display:grid;
	  grid-template-columns: auto 10px;
      gap:1px;
      margin-bottom:10px;
    }
    .field input, .field select, .field textarea{
      width:100%;
      height:40px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.24);
      background: rgba(0,0,0,.25);
      color:#fff;
      padding:0 12px;
      outline:none;
    }
    
	.field2 input, .field select, .field textarea{
      width:100%;
      height:40px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.24);
      background: rgba(0,0,0,.25);
      color:#fff;
      padding:0 12px;
      outline:none;
    }
	
	.field textarea{
      height:80px;
      padding:10px 12px;
      resize:vertical;
    }

    .proceed{
      width:100%;
      border:none;
      border-radius: 999px;
      padding:14px 18px;
      font-weight:950;
      font-size:15px;
      background: linear-gradient(180deg,var(--gold),var(--gold2));
      color:#1a1206;
      cursor:pointer;
      box-shadow: 0 12px 30px rgba(246,199,104,.22);
      margin-top:6px;
    }

    .form-notes{
      margin-top:12px;
      display:grid;
      gap:8px;
      color:rgba(255,255,255,.72);
      font-size:12px;
    }
    .form-notes div{
      display:flex; gap:10px; align-items:flex-start;
    }
    .form-notes b{
      color:var(--gold);
    }
	
	#form_instructions{
		font-size:12px;
		margin-top:10px;
		text-align:center;
	}

    /* Responsive */
    @media (max-width: 1200px){
      .main-grid{ grid-template-columns:1fr; }
      .truststrip{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px){
      .navlinks{ display:none; }
      .main-grid{ padding:12px; }
      .product-row{ grid-template-columns: 1fr; }
      .truststrip2{ grid-template-columns:1fr; }
      .sku{ grid-template-columns: 1fr; }
      .qty{ justify-content:flex-start; }
    }