
:root{
  --brand:#876c43;
  --brand-dark:#5f4a2f;
  --brand-soft:#f4eee5;
  --brand-pale:#fbf8f3;
  --ink:#241f1a;
  --muted:#71675b;
  --line:#e7ded1;
  --paper:#fff;
  --page:#f6f2ec;
  --success:#2f7d58;
  --warning:#c78b33;
  --shadow:0 22px 60px rgba(66,47,29,.13);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 0%,rgba(135,108,67,.13),transparent 27%),
    radial-gradient(circle at 96% 12%,rgba(199,139,51,.08),transparent 22%),
    var(--page);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
button,a{font:inherit}
button{cursor:pointer}
img,svg{display:block;max-width:100%}
[hidden]{display:none!important}

.topbar{
  padding:10px 16px;
  color:#fff;
  background:#000;
  text-align:center;
  font-size:11px;
  font-weight:900;
  letter-spacing:.4px;
}
.header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(36,31,26,.08);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
}
.header-inner{
  width:min(1120px,calc(100% - 28px));
  min-height:72px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
}
.brand-mark{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(145deg,var(--brand),var(--brand-dark));
  box-shadow:0 10px 22px rgba(135,108,67,.25);
  font-family:Georgia,serif;
  font-size:18px;
}
.brand-copy strong{display:block;font-size:15px}
.brand-copy span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:8px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.secure{
  display:flex;
  align-items:center;
  gap:8px;
  color:#5d544a;
  font-size:11px;
  font-weight:800;
}
.secure i{
  width:24px;height:24px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#fff;
  background:var(--success);
  font-style:normal;
}

.shell{
  width:min(1000px,calc(100% - 22px));
  margin:20px auto 42px;
}
.view{display:none}
.view.active{display:block;animation:fade .35s ease}
@keyframes fade{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}

.hero-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:center;
  padding:34px;
  background:
    radial-gradient(circle at 94% 8%,rgba(135,108,67,.12),transparent 28%),
    linear-gradient(135deg,#fff,#fbf7f1);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  font-size:10px;
  font-weight:900;
  letter-spacing:1.4px;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:28px;height:3px;
  border-radius:99px;
  background:var(--brand);
}
.hero h1{
  margin:12px 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(36px,6vw,62px);
  line-height:1.02;
  letter-spacing:-1.7px;
}
.hero h1 span{color:var(--brand)}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}
.winner-card{
  margin-top:22px;
  padding:18px;
  border:1px solid rgba(135,108,67,.16);
  border-radius:18px;
  background:var(--brand-pale);
}
.winner-card small{
  display:block;
  color:var(--brand);
  font-size:9px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.winner-card strong{
  display:block;
  margin-top:5px;
  font-size:22px;
}
.winner-card span{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
}
.demo-note{
  margin-top:10px;
  color:#8a8075;
  font-size:10px;
  line-height:1.45;
}

.machine-visual{
  position:relative;
  min-height:420px;
  display:grid;
  place-items:center;
}
.machine-orbit{
  position:absolute;
  width:360px;height:360px;
  border:1px solid rgba(135,108,67,.16);
  border-radius:50%;
}
.machine-card{
  position:relative;
  z-index:2;
  width:min(82%,380px);
  min-height:330px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:0 24px 55px rgba(74,51,29,.14);
}
.machine{
  position:relative;
  width:190px;
  height:235px;
  margin:18px auto 0;
  border-radius:26px 26px 18px 18px;
  background:linear-gradient(145deg,#2f2a25,#171411);
  box-shadow:inset -18px -16px 28px rgba(0,0,0,.28),0 22px 30px rgba(0,0,0,.18);
}
.machine::before{
  content:"";
  position:absolute;
  left:46px;right:46px;top:28px;
  height:48px;
  border-radius:12px 12px 5px 5px;
  background:linear-gradient(180deg,#70675f,#3e3934);
}
.machine::after{
  content:"";
  position:absolute;
  left:53px;right:53px;bottom:35px;
  height:20px;
  border-radius:5px;
  background:#6f665e;
  box-shadow:0 10px 0 #2d2925;
}
a{text-decoration: none;}
.spout{
  position:absolute;
  left:80px;top:77px;
  width:30px;height:50px;
  border-radius:0 0 12px 12px;
  background:#171411;
}
.cup{
  position:absolute;
  left:64px;bottom:53px;
  width:64px;height:48px;
  border-radius:4px 4px 17px 17px;
  background:#f5f1eb;
  box-shadow:0 12px 18px rgba(0,0,0,.15);
}
.cup::after{
  content:"";
  position:absolute;
  right:-18px;top:10px;
  width:22px;height:22px;
  border:5px solid #f5f1eb;
  border-left:0;
  border-radius:0 18px 18px 0;
}
.capsules{
  display:flex;
  justify-content:center;
  gap:7px;
  margin-top:20px;
}
.capsules i{
  width:22px;height:18px;
  border-radius:50% 50% 45% 45%;
  background:var(--brand);
  box-shadow:inset 0 -5px 8px rgba(0,0,0,.15);
}
.capsules i:nth-child(2){background:#bd9a63}
.capsules i:nth-child(3){background:#6b4b35}
.capsules i:nth-child(4){background:#3d6b5c}
.capsules i:nth-child(5){background:#b26857}
.visual-label{
  position:absolute;
  right:4px;
  top:45px;
  z-index:4;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.94);
  box-shadow:0 14px 30px rgba(74,51,29,.12);
}
.visual-label small{
  display:block;
  color:var(--muted);
  font-size:8px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.visual-label strong{
  display:block;
  margin-top:4px;
  font-size:14px;
}

.history{
  padding:26px 30px 30px;
  border-top:1px solid var(--line);
}
.section-title{
  margin:0 0 14px;
  font-size:22px;
}
.winners{
  display:grid;
  gap:10px;
}
.winner-row{
  display:grid;
  grid-template-columns:1.25fr .9fr .9fr;
  gap:14px;
  align-items:center;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.winner-person{
  display:flex;
  align-items:center;
  gap:10px;
}
.avatar{
  width:36px;height:36px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,var(--brand),var(--brand-dark));
  font-weight:900;
}
.winner-person strong{display:block;font-size:13px}
.winner-person span,.winner-row time{
  color:var(--muted);
  font-size:11px;
}
.status{
  justify-self:end;
  padding:7px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
}
.delivered{
  color:#fff;
  background:var(--success);
}
.pending{
  color:#fff;
  background:var(--warning);
}

.survey{
  margin-top:18px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 40px rgba(66,47,29,.08);
}
.survey-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}
.survey h2{
  margin:6px 0 8px;
  font-family:Georgia,serif;
  font-size:32px;
}
.survey-head p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}
.counter{
  min-width:78px;
  padding:9px 11px;
  border-radius:12px;
  color:var(--brand-dark);
  background:var(--brand-soft);
  text-align:center;
  font-size:11px;
  font-weight:900;
}
.progress{
  height:9px;
  margin:18px 0 22px;
  overflow:hidden;
  border-radius:999px;
  background:#eee7dd;
}
.progress-bar{
  width:25%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--brand),#b99863);
  transition:width .35s ease;
}
.question-wrap{
  min-height:225px;
  animation:questionIn .28s ease;
}
@keyframes questionIn{
  from{opacity:0;transform:translateX(10px)}
  to{opacity:1;transform:none}
}
.question-number{
  color:var(--brand);
  font-size:10px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.question-title{
  margin:7px 0 16px;
  font-size:24px;
  line-height:1.25;
}
.answers{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.answer{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:14px;
  color:var(--ink);
  background:#fff;
  text-align:left;
  font-weight:800;
  transition:.18s ease;
}
.answer::after{
  content:"›";
  color:var(--brand);
  font-size:24px;
  font-weight:400;
}
.answer:hover{
  border-color:var(--brand);
  background:var(--brand-soft);
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(135,108,67,.1);
}

.loading-card,.product-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}
.loading-card{
  padding:46px 26px;
  text-align:center;
}
.spinner{
  width:72px;height:72px;
  margin:0 auto 20px;
  border:6px solid #ece4d8;
  border-top-color:var(--brand);
  border-radius:50%;
  animation:spin .9s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.loading-card h2{
  margin:0 0 8px;
  font-family:Georgia,serif;
  font-size:36px;
}
.loading-card>p{
  margin:0 auto;
  max-width:560px;
  color:var(--muted);
  line-height:1.6;
}
.verify-list{
  width:min(520px,100%);
  margin:24px auto 0;
  display:grid;
  gap:10px;
  text-align:left;
}
.verify-row{
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px 14px;
  border-radius:13px;
  background:var(--brand-pale);
  color:#5d544a;
  font-size:13px;
  font-weight:800;
}
.verify-row i{
  width:25px;height:25px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#fff;
  background:#c8b9a4;
  font-style:normal;
  transition:.25s ease;
}
.verify-row.done i{background:var(--success)}

.product-card{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
}
.product-visual{
  min-height:560px;
  display:grid;
  place-items:center;
  padding:34px;
  background:linear-gradient(145deg,#f2ece3,#dfd1bd);
}
.product-copy{
  padding:46px 42px;
}
.product-copy h1{
  margin:10px 0 14px;
  font-family:Georgia,serif;
  font-size:48px;
  line-height:1.04;
}
.product-copy p{
  color:var(--muted);
  line-height:1.65;
}
.spec-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:22px 0;
}
.spec{
  padding:13px;
  border:1px solid var(--line);
  border-radius:13px;
  background:var(--brand-pale);
}
.spec span{
  display:block;
  color:var(--muted);
  font-size:9px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
}
.spec strong{
  display:block;
  margin-top:4px;
  font-size:13px;
}
.claim-box{
  margin-top:20px;
  padding:18px;
  border:1px solid rgba(135,108,67,.18);
  border-radius:16px;
  background:var(--brand-pale);
}
.claim-box h3{margin:0 0 8px}
.claim-box ol{
  margin:0;
  padding-left:19px;
  color:#5f564d;
  font-size:13px;
  line-height:1.7;
}
.claim-btn{
  width:100%;
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:16px;
  border:0;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  box-shadow:0 14px 28px rgba(135,108,67,.22);
  font-weight:900;
}
.legal{
  margin-top:12px;
  color:#8a8075;
  font-size:10px;
  line-height:1.45;
}
footer{
  width:min(1000px,calc(100% - 22px));
  margin:0 auto 28px;
  color:#7b7166;
  font-size:10px;
  line-height:1.55;
  text-align:center;
}

@media(max-width:820px){
  .hero,.product-card{grid-template-columns:1fr}
  .hero{padding:26px}
  .machine-visual{min-height:380px}
  .history{padding:22px}
  .winner-row{grid-template-columns:1fr auto}
  .winner-row time{grid-column:1/2}
  .answers{grid-template-columns:1fr}
  .product-visual{min-height:420px}
}
@media(max-width:560px){
  .secure span{display:none}
  .shell{width:min(100% - 14px,1000px);margin-top:10px}
  .hero-card,.loading-card,.product-card{border-radius:20px}
  .hero{padding:20px}
  .hero h1{font-size:42px}
  .machine-card{width:88%;padding:16px}
  .machine-orbit{width:300px;height:300px}
  .visual-label{right:0;top:18px}
  .winner-row{grid-template-columns:1fr}
  .status{justify-self:start}
  .survey{padding:22px 18px}
  .survey-head{display:block}
  .counter{margin-top:12px;width:max-content}
  .question-title{font-size:21px}
  .product-copy{padding:28px 20px}
  .product-copy h1{font-size:39px}
  .spec-grid{grid-template-columns:1fr}
}

/* ===== Updated first-page product image, CTA buttons and winner cards ===== */
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hero-cta{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:13px 20px;
  border:0;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.hero-cta.primary-scroll{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  box-shadow:0 14px 28px rgba(135,108,67,.22);
}

.hero-cta.secondary-scroll{
  color:var(--brand-dark);
  border:1px solid rgba(135,108,67,.24);
  background:#fff;
}

.hero-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(135,108,67,.17);
}

.machine-visual{
  min-height:430px;
}

.product-image-card{
  position:relative;
  z-index:2;
  width:min(100%,470px);
  padding:22px;
  border:1px solid var(--line);
  border-radius:26px;
  background:
    radial-gradient(circle at 90% 10%,rgba(135,108,67,.10),transparent 30%),
    linear-gradient(145deg,#fff,#f7f1e8);
  box-shadow:0 24px 55px rgba(74,51,29,.14);
}

.product-image-card img{
  width:100%;
  height:355px;
  object-fit:contain;
  border-radius:18px;
}

.product-image-caption{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
}

.product-image-caption strong{
  font-size:15px;
}

.product-image-caption span{
  padding:7px 10px;
  border-radius:999px;
  color:var(--brand-dark);
  background:var(--brand-soft);
  font-size:10px;
  font-weight:900;
}

.winners{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.winner-row{
  display:block;
  min-height:190px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:
    radial-gradient(circle at 100% 0%,rgba(135,108,67,.08),transparent 28%),
    linear-gradient(145deg,#fff,#fbf7f1);
  box-shadow:0 12px 28px rgba(66,47,29,.07);
}

.winner-person{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:16px;
}

.avatar{
  width:42px;
  height:42px;
  flex:0 0 auto;
}

.winner-person strong{
  font-size:14px;
}

.winner-person span{
  margin-top:2px;
  display:block;
}

.winner-row time{
  display:block;
  min-height:34px;
  margin-bottom:13px;
  color:var(--muted);
  font-size:11px;
  line-height:1.5;
}

.winner-row .status{
  display:inline-flex;
  justify-self:auto;
}

@media(max-width:900px){
  .winners{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:560px){
  .hero-actions{
    flex-direction:column;
  }

  .hero-cta{
    width:100%;
  }

  .product-image-card{
    padding:14px;
  }

  .product-image-card img{
    height:260px;
  }

  .winners{
    grid-template-columns:1fr;
  }

  .winner-row{
    min-height:0;
  }
}


/* ===== First-page hero removed ===== */
.hero-card{
  overflow:visible;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.history{
  padding:28px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}

.section-title{
  margin-bottom:18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:30px;
}

@media(max-width:560px){
  .history{
    padding:20px 16px;
    border-radius:20px;
  }

  .section-title{
    font-size:26px;
  }
}


/* ===== Current-user notification and product previews ===== */
.winner-notification{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(220px,.65fr);
  gap:18px;
  align-items:stretch;
  margin-bottom:22px;
}

.notification-copy{
  display:flex;
  gap:14px;
  padding:21px;
  border:1px solid rgba(135,108,67,.18);
  border-radius:18px;
  background:
    radial-gradient(circle at 100% 0%,rgba(135,108,67,.09),transparent 28%),
    linear-gradient(145deg,#fff,#fbf7f1);
}

.notification-icon{
  width:42px;
  height:42px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(145deg,var(--brand),var(--brand-dark));
  box-shadow:0 10px 22px rgba(135,108,67,.20);
  font-size:20px;
  font-weight:900;
}

.notification-label{
  color:var(--brand);
  font-size:9px;
  font-weight:900;
  letter-spacing:1.1px;
  text-transform:uppercase;
}

.notification-copy h2{
  margin:5px 0 8px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(24px,3.6vw,34px);
  line-height:1.12;
}

.notification-copy p{
  margin:0;
  color:#5f564d;
  font-size:13px;
  line-height:1.65;
}

.notification-copy small{
  display:block;
  margin-top:10px;
  color:#8b8176;
  font-size:9px;
  line-height:1.5;
}

.notification-product{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 28px rgba(66,47,29,.07);
}

.notification-product img{
  width:100%;
  height:150px;
  object-fit:contain;
  border-radius:12px;
  background:linear-gradient(145deg,#f8f4ed,#fff);
}

.notification-product span{
  display:block;
  color:var(--muted);
  font-size:8px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}

.notification-product strong{
  display:block;
  margin-top:4px;
  font-size:13px;
  line-height:1.35;
}

.details-product-image{
  width:min(100%,470px);
  padding:20px;
  border:1px solid rgba(135,108,67,.18);
  border-radius:24px;
  background:rgba(255,255,255,.9);
  box-shadow:0 24px 52px rgba(66,47,29,.15);
}

.details-product-image img{
  width:100%;
  height:390px;
  object-fit:contain;
  border-radius:16px;
}

.details-image-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
}

.details-image-label span{
  color:var(--muted);
  font-size:9px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}

.details-image-label strong{
  font-size:13px;
}

@media(max-width:760px){
  .winner-notification{
    grid-template-columns:1fr;
  }

  .notification-product{
    display:grid;
    grid-template-columns:150px 1fr;
    align-items:center;
  }

  .notification-product img{
    height:120px;
  }
}

@media(max-width:500px){
  .notification-copy{
    padding:17px;
  }

  .notification-copy{
    flex-direction:column;
  }

  .notification-product{
    grid-template-columns:1fr;
  }

  .notification-product img{
    height:180px;
  }

  .details-product-image img{
    height:280px;
  }
}


/* ===== Eligibility CTA ===== */
.eligibility-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:16px;
  padding:12px 18px;
  border:0;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  box-shadow:0 12px 24px rgba(135,108,67,.22);
  font-weight:900;
  transition:transform .18s ease, box-shadow .18s ease;
}
.eligibility-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(135,108,67,.26);
}
.eligibility-btn span{
  font-size:18px;
}

/* ===== Premium product details page ===== */
.premium-product-page{
  display:grid;
  grid-template-columns:minmax(320px,.92fr) minmax(0,1.08fr);
  gap:28px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}

.premium-product-visual{
  min-height:650px;
/*  display:grid;*/
  place-items:center;
  padding:34px;
  background:
    radial-gradient(circle at 85% 10%,rgba(135,108,67,.16),transparent 28%),
    linear-gradient(145deg,#f3ece2,#dfd0bb);
}

.premium-image-card{
  position:relative;
  width:min(100%,520px);
  padding:22px;
  border:1px solid rgba(135,108,67,.18);
  border-radius:26px;
  background:rgba(255,255,255,.9);
  box-shadow:0 26px 60px rgba(66,47,29,.16);
}

.premium-image-card img{
  width:100%;
  height:430px;
  object-fit:contain;
  border-radius:18px;
}

.premium-image-badge{
  position:absolute;
  top:18px;
  left:18px;
  padding:8px 11px;
  border-radius:999px;
  color:#fff;
  background:var(--success);
  font-size:10px;
  font-weight:900;
  letter-spacing:.7px;
  text-transform:uppercase;
}

.premium-product-content{
  padding:42px 38px;
}

.premium-product-content h1{
  margin:10px 0 14px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:32px;
  line-height:1.04;
  letter-spacing:-1.4px;
}

.product-description{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

.price-summary-card{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:24px;
  padding:20px;
  border:1px solid rgba(135,108,67,.18);
  border-radius:18px;
  background:linear-gradient(145deg,#fff,#faf6ef);
}

.price-group{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.price-label{
  color:var(--muted);
  font-size:9px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.regular-price{
  color:#9a9187;
  font-size:20px;
}

.offer-price{
  color:var(--brand);
  font-family:Georgia,serif;
  font-size:34px;
  line-height:1;
}

.discount-pill{
  position:absolute;
  right:16px;
  top:-13px;
  padding:7px 11px;
  border-radius:999px;
  color:#fff;
  background:var(--accent);
  font-size:10px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(216,92,106,.22);
}

.product-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:11px;
  margin-top:16px;
}

.info-tile{
  padding:14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fcfaf6;
}

.info-tile span{
  display:block;
  color:var(--muted);
  font-size:9px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.info-tile strong{
  display:block;
  margin-top:5px;
  font-size:13px;
}

.stock-status{
  color:var(--success);
}

.total-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:16px;
  padding:18px;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,var(--brand-dark),var(--brand));
}

.total-card span{
  display:block;
  font-size:13px;
  font-weight:900;
}

.total-card small{
  display:block;
  margin-top:2px;
  color:#eadfce;
  font-size:9px;
}

.total-card strong{
  font-family:Georgia,serif;
  font-size:31px;
}

.claim-instructions{
  margin-top:18px;
  padding:17px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}

.claim-instructions h3{
  margin:0 0 12px;
  font-size:18px;
}

.claim-step{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  color:#5e554d;
  font-size:12px;
  border-bottom:1px solid #eee7dd;
}

.claim-step:last-child{
  border-bottom:0;
}

.claim-step b{
  width:24px;
  height:24px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:var(--brand);
  font-size:10px;
}

.premium-claim-btn{
  gap:10px;
  margin-top:16px;
}

.premium-claim-btn span{
  font-size:18px;
}

@media(max-width:820px){
  .premium-product-page{
    grid-template-columns:1fr;
  }

  .premium-product-visual{
    min-height:440px;
  }

  .premium-image-card img{
    height:340px;
  }
}

@media(max-width:560px){
  .eligibility-btn{
    width:100%;
  }

  .premium-product-visual{
    min-height:340px;
    padding:18px;
  }

  .premium-image-card{
    padding:14px;
  }

  .premium-image-card img{
    height:270px;
  }

  .premium-product-content{
    padding:26px 18px;
  }

  .price-summary-card{
    grid-template-columns:1fr;
  }

  .product-info-grid{
    grid-template-columns:1fr;
  }

  .total-card{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* ===== Final product details refinement ===== */
.product-identity-card{
  display:flex;
  align-items:center;
  gap:13px;
  margin-top:20px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#fff;
}

.identity-icon{
  width:42px;
  height:42px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(145deg,var(--brand),var(--brand-dark));
  font-family:Georgia,"Times New Roman",serif;
  font-size:19px;
  font-weight:900;
}

.product-identity-card span{
  display:block;
  color:var(--muted);
  font-size:9px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.product-identity-card strong{
  display:block;
  margin-top:4px;
  font-size:14px;
  line-height:1.35;
}

.discount-pill{
  display:flex;
  align-items:center;
  gap:5px;
}

.discount-pill small{
  font-size:8px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.discount-pill strong{
  font-size:12px;
}

.stock-status{
  display:flex!important;
  align-items:center;
  gap:7px;
}

.stock-status i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(47,125,88,.12);
}

.premium-claim-btn{
  min-height:60px;
  border-radius:15px;
  font-size:15px;
  letter-spacing:.15px;
}

@media(max-width:560px){
  .product-identity-card{
    align-items:flex-start;
  }

  .price-summary-card{
    padding-top:25px;
  }

  .discount-pill{
    top:-12px;
    right:12px;
  }
}


/* ===== Reduced empty space around the product image ===== */
.premium-product-visual{
  min-height:520px;
  padding:18px;
  align-items:center;
}

.premium-image-card{
  width:min(100%,560px);
  padding:12px;
  border-radius:22px;
}

.premium-image-card img{
  height:470px;
  object-fit:contain;
  object-position:center;
}

.premium-image-badge{
  top:14px;
  left:14px;
}

@media(max-width:820px){
  .premium-product-visual{
    min-height:380px;
    padding:14px;
  }

  .premium-image-card img{
    height:330px;
  }
}

@media(max-width:560px){
  .premium-product-visual{
    min-height:300px;
    padding:10px;
  }

  .premium-image-card{
    padding:8px;
  }

  .premium-image-card img{
    height:250px;
  }
}


/* ===== More compact and balanced Product Details layout on desktop ===== */
@media(min-width:821px){
  .premium-product-page{
    grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr);
    gap:0;
    align-items:stretch;
  }

  .premium-product-visual{
    min-height:0;
    padding:14px;
    align-items:center;
  }

  .premium-image-card{
    width:100%;
    max-width:500px;
    padding:8px;
    border-radius:18px;
  }

  .premium-image-card img{
    width:100%;
    height:420px;
    object-fit:contain;
    object-position:center;
  }

  .premium-image-badge{
    top:10px;
    left:10px;
  }

  .premium-product-content{
    padding:34px 32px;
  }

  .premium-product-content h1{
    margin-top:8px;
    font-size:32px;
  }

  .product-description{
    max-width:680px;
  }
}

</style>