
:root{
  --bg:#08060e;
  --bg-soft:#120d1f;
  --panel:#171124;
  --panel-2:rgba(23,17,36,0.82);
  --text:#f4e7cf;
  --muted:#d5c1a1;
  --gold:#d6b173;
  --gold-strong:#f0cb8c;
  --line:rgba(214,177,115,0.26);
  --success:#c9e6b3;
  --danger:#ffcac0;
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --radius:22px;
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 50% 24%, rgba(255,199,112,0.14), transparent 0 18%),
    radial-gradient(circle at 50% 60%, rgba(110,78,160,0.18), transparent 0 30%),
    linear-gradient(180deg, #050409 0%, #0b0712 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:var(--gold-strong); text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(calc(100% - 32px), var(--max)); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:100;
  backdrop-filter: blur(12px);
  background:rgba(8,6,14,0.84);
  border-bottom:1px solid rgba(214,177,115,0.10);
}
.site-header .inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
  color:var(--muted);
}
.nav{display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  font-size:15px;
  color:var(--muted);
}
.nav a.btn-link{
  color:#1a1208;
  background:linear-gradient(180deg, var(--gold-strong), var(--gold));
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
}

.hero{
  padding:72px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:32px;
  align-items:center;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  color:var(--muted);
  margin:0 0 12px;
}
.hero h1{
  margin:0 0 18px;
  font-size:clamp(42px, 6vw, 82px);
  line-height:.98;
  font-weight:600;
  color:var(--gold-strong);
}
.hero .subtitle{
  margin:0 0 24px;
  font-size:clamp(18px, 2vw, 24px);
  color:var(--text);
}
.hero-card,
.panel{
  background:var(--panel-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:26px}
.hero-image{
  padding:20px;
}
.hero-image img{
  width:min(100%, 540px);
  margin:0 auto;
  border-radius:18px;
  box-shadow:0 28px 60px rgba(0,0,0,.46);
}
.info-chips{
  display:flex; flex-wrap:wrap; gap:12px;
  margin:26px 0 28px;
}
.chip{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--text);
  background:rgba(255,255,255,0.02);
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover{text-decoration:none; transform:translateY(-1px)}
.btn-primary{
  color:#1a1208;
  background:linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow:0 16px 28px rgba(214,177,115,.18);
}
.btn-secondary{
  color:#1a1208;
  background:linear-gradient(180deg, #f0cb8c, #d6b173);
  border-color:rgba(214,177,115,0.55);
  box-shadow:0 10px 22px rgba(214,177,115,.16);
}
.btn-secondary:hover,
.btn-secondary:focus{
  color:#1a1208;
  text-decoration:none;
}
.btn-secondary:visited{
  color:#1a1208;
}
.section{padding:28px 0}
.section-title{
  margin:0 0 18px;
  font-size:clamp(28px, 3.4vw, 42px);
  color:var(--gold-strong);
}
.section-intro{
  max-width:840px;
  color:var(--muted);
  margin:0 0 22px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.panel{
  padding:26px;
}
.panel h3{
  margin:0 0 12px;
  color:var(--gold-strong);
  font-size:26px;
}
.meta-list{
  display:grid;
  gap:12px;
}
.meta-item{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(214,177,115,0.12);
}
.meta-item:last-child{border-bottom:0}
.meta-label{color:var(--muted)}
.meta-value{font-weight:700}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-grid .full{grid-column:1/-1}
label{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  color:var(--muted);
}
input, select, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(214,177,115,0.24);
  background:rgba(255,255,255,0.03);
  color:var(--text);
  padding:14px 16px;
  font:inherit;
}
textarea{min-height:150px; resize:vertical}
input::placeholder, textarea::placeholder{color:rgba(244,231,207,0.50)}
.help, .small{
  font-size:14px; color:var(--muted)
}
.checkbox{
  display:flex; gap:12px; align-items:flex-start;
  padding:6px 0 0;
}
.checkbox input{
  width:18px; height:18px; margin-top:4px;
}
.price-box{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(214,177,115,0.2);
  background:rgba(255,255,255,0.02);
  margin:8px 0 18px;
}
.price-box strong{color:var(--gold-strong)}
.notice{
  padding:14px 16px;
  border-radius:16px;
  margin-bottom:18px;
  border:1px solid rgba(214,177,115,0.2);
}
.notice.success{background:rgba(146, 201, 103, 0.12); color:var(--success)}
.notice.error{background:rgba(255, 115, 91, 0.10); color:var(--danger)}
hr.sep{
  border:0;
  border-top:1px solid rgba(214,177,115,0.10);
  margin:26px 0;
}
.footer{
  padding:36px 0 52px;
  color:var(--muted);
  font-size:14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
}
.list-clean{margin:0; padding-left:18px}
strong.highlight{color:var(--gold-strong)}

@media (max-width: 940px){
  .hero-grid, .grid-2, .footer-grid{grid-template-columns:1fr}
  .meta-item{grid-template-columns:1fr}
}
@media (max-width: 680px){
  .site-header .inner{padding:12px 0}
  .nav{gap:10px}
  .hero{padding-top:42px}
  .form-grid{grid-template-columns:1fr}
}

textarea{min-height:160px; resize:vertical}
.honeypot{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}
.muted-line{margin-top:14px}


.qty-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-input input[type="number"] {
  text-align: center;
  max-width: 110px;
}

.qty-btn {
  appearance: none;
  border: 1px solid rgba(231, 210, 154, 0.35);
  background: rgba(231, 210, 154, 0.08);
  color: inherit;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(231, 210, 154, 0.16);
}

.qty-btn:focus-visible {
  outline: 2px solid rgba(231, 210, 154, 0.65);
  outline-offset: 2px;
}


.field-note{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}

.order-summary-box{
  margin-top:18px;
}

.order-summary-box p{
  margin:0 0 8px;
}

.order-summary-box p:last-child{
  margin-bottom:0;
}

.order-summary-box .highlight{
  color:var(--gold-strong);
  font-size:20px;
}


.info-chips.compact{
  margin-bottom:14px;
}

.hero-note{
  margin:0 0 24px;
  color:var(--muted);
  max-width:680px;
}

.callout-links .section-intro{
  margin-bottom:18px;
}

.stacked-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:320px;
}

.order-layout{
  align-items:start;
}

.payment-panel{
  height:100%;
}

.compact-meta .meta-item{
  grid-template-columns:150px 1fr;
}

.page-hero{
  padding-top:42px;
}

.home-actions{
  max-width:360px;
}




.order-top-note{
  margin-bottom:24px;
}

.footer-grid{
  align-items:start;
}


.hero-grid-home .hero-image{
  order:1;
}

.hero-grid-home .hero-card:not(.hero-image){
  order:2;
}

@media (max-width: 820px){
  .hero{
    padding-top:32px;
  }

  .hero-grid-home{
    grid-template-columns:1fr;
    gap:20px;
  }

  .hero-grid-home .hero-image{
    padding:12px;
  }

  .hero-grid-home .hero-image img{
    width:min(100%, 380px);
  }

  .hero-grid-home .hero-card:not(.hero-image){
    padding-top:18px;
  }

  .publisher-badge{
    margin-bottom:18px;
  }

  .hero-actions{
    gap:10px;
  }
}


.form-grid select,
.contact-grid select,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-strong) 50%),
    linear-gradient(135deg, var(--gold-strong) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.form-grid select option,
.contact-grid select option,
select option {
  color: #1a1208;
  background: #f7ead0;
}


.subtle-block{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 10px;
}

.payment-panel{
  padding-top: 8px;
}

.order-top-note{
  margin-bottom: 18px;
}

.order-summary-box{
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(214,177,115,0.14);
}

@media (min-width: 821px){
  .payment-panel{
    padding-left: 10px;
  }
}


.order-summary-box .highlight{
  min-width: 90px;
  display: inline-block;
}


.inline-value{
  min-height:48px;
  display:flex;
  align-items:center;
  padding:12px 14px;
  border:1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius:12px;
}


.subsection-title{
  margin:0 0 12px;
  color:var(--gold-strong);
  font-size:22px;
}

.order-calculation{
  margin:22px 0 0;
  padding-top:18px;
  border-top:1px solid rgba(214,177,115,0.14);
}


.back-nav{
  margin: 8px 0 22px;
}

.back-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,0.03);
  text-decoration:none;
}

.back-link:hover{
  color:var(--text);
  text-decoration:none;
  background:rgba(255,255,255,0.06);
}


.terms-content{
  display:grid;
  gap:18px;
}

.terms-content h2{
  margin:8px 0 0;
  color:var(--gold-strong);
  font-size:26px;
}

.terms-content p,
.terms-content li{
  color:var(--text);
}

.terms-content ol{
  margin:0;
  padding-left:20px;
}

.checkbox label a{
  color:var(--gold-strong);
  text-decoration:underline;
}


}


.hero-clean{
  padding: 48px 0 40px;
}

.hero-clean-wrap{
  display:grid;
  grid-template-columns: minmax(260px, 400px) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-clean-image-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  width:100%;
}


}
}




  .brand{
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
}




  .brand-with-logo img{
    width:28px;
    max-width:28px;
  }

  .brand-with-logo span{
    font-size:22px;
    line-height:1.05;
  }

  .hero-clean-content h1,
  .hero-card h1,
  .hero h1{
    font-size:34px !important;
    line-height:1.05 !important;
    word-break:normal !important;
    overflow-wrap:anywhere;
  }
}



}


html, body{
  overflow-x: hidden;
}

.site-header .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-with-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  max-width:420px;
}

.brand-with-logo img{
  width:42px;
  max-width:42px;
  height:auto;
  display:block;
  flex:0 0 auto;
}

.brand-with-logo span{
  color:var(--gold-strong);
  font-size:24px;
  line-height:1.05;
  font-weight:600;
  letter-spacing:0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-reset{
  padding:52px 0 42px;
}

.hero-reset-grid{
  display:grid;
  grid-template-columns:minmax(280px, 390px) minmax(320px, 1fr);
  gap:42px;
  align-items:center;
}

.hero-reset-image{
  display:flex;
  justify-content:center;
  min-width:0;
}

.hero-reset-image img{
  display:block;
  width:100%;
  max-width:360px;
  height:auto;
  border-radius:18px;
  box-shadow:0 28px 60px rgba(0,0,0,.42);
}

.hero-reset-content{
  min-width:0;
  max-width:700px;
}

.hero-reset-content h1{
  margin:0 0 10px;
}

.hero-intro{
  margin:0 0 24px;
  color:var(--muted);
  font-size:18px;
  max-width:56ch;
}

.hero-facts{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:26px;
}

.hero-fact{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,0.03);
  min-width:0;
}

.hero-fact strong{
  display:block;
  color:var(--text);
  font-size:17px;
  line-height:1.35;
}

.hero-fact-label{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.author-preview .panel{
  max-width:860px;
  margin:0 auto;
}

@media (max-width: 980px){
  .site-header .inner{
    flex-wrap:wrap;
    gap:16px;
  }

  .brand-with-logo{
    max-width:100%;
  }

  .brand-with-logo img{
    width:34px;
    max-width:34px;
  }

  .brand-with-logo span{
    font-size:21px;
  }

  .hero-reset{
    padding-top:28px;
  }

  .hero-reset-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .hero-reset-image,
  .hero-reset-content{
    width:100%;
  }

  .hero-reset-image img{
    max-width:320px;
  }

  .hero-facts{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .brand-with-logo{
    gap:10px;
    align-items:center;
  }

  .brand-with-logo img{
    width:32px;
    max-width:32px;
  }

  .brand-with-logo span{
    font-size:19px;
    line-height:1.05;
  }

  .hero-reset-content h1{
    font-size:34px !important;
    line-height:1.05 !important;
    overflow-wrap:anywhere;
  }

  .hero-intro{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
  }
}


.barcode-wrap{
  margin-top:6px;
}

.barcode-label{
  font-size:12px;
  color:var(--muted);
  margin-bottom:4px;
}

.barcode-faux{
  font-family:"Libre Barcode 128", "Courier New", monospace;
  letter-spacing:2px;
  font-size:40px;
  line-height:1;
  padding:8px 10px;
  border:1px solid var(--line);
  background:#fff;
  color:#111;
  border-radius:8px;
  overflow:hidden;
}

.multi-order-row{
  background:rgba(214, 177, 115, 0.14);
}

.multi-order-highlight{
  background:#fff3cd;
  border:2px solid #d97706;
  border-radius:12px;
  padding:12px;
}


.barcode-wrap{
  min-width: 180px;
}

.barcode-svg{
  display:block;
  width:100%;
  max-width:260px;
  height:auto;
  background:#fff;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:8px;
  padding:6px;
}


.barcode-number{
  margin-bottom:6px;
  font-size:13px;
  font-weight:700;
  color:var(--text);
  letter-spacing:.04em;
}


.pick-check{
  display:inline-block;
  width:24px;
  height:24px;
  border:2px solid #111;
  border-radius:4px;
  background:#fff;
}

.picklist-table th:last-child,
.picklist-table td:last-child{
  width:90px;
  text-align:center;
}

.picklist-container{
  max-width:none;
}

@media print{
  @page{
    size: A4 landscape;
    margin: 10mm;
  }

  .picklist-body .section{
    padding:0;
  }

  .picklist-body .container{
    max-width:none;
    width:100%;
  }

  .picklist-table{
    min-width:0;
    width:100%;
  }

  .picklist-table th,
  .picklist-table td{
    padding:10px 12px;
  }

  .picklist-table .barcode-svg{
    max-width:220px;
  }
}


.multi-qty{
  color:#b45309;
  font-weight:800;
  font-size:18px;
}

@media print{
  .picklist-body,
  .picklist-body *{
    color:#111 !important;
  }

  .picklist-table,
  .picklist-table th,
  .picklist-table td{
    background:#fff !important;
    border-color:#111 !important;
  }

  .picklist-table .barcode-svg{
    background:#fff !important;
    border:1px solid #111 !important;
  }

  .multi-order-row{
    background:#fff !important;
  }

  .pick-check{
    border-color:#111 !important;
    background:#fff !important;
  }

  .multi-qty{
    color:#b45309 !important;
  }
}


.admin-shell-top{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap;margin-bottom:18px}
.admin-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:stretch;
  justify-content:flex-end;
  max-width:100%;
}
.admin-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 16px;
  line-height:1.2;
  text-align:center;
  white-space:normal;
  flex:0 1 auto;
  max-width:100%;
}
.btn.is-active{outline:2px solid var(--gold-strong)}
.search-row{display:grid;grid-template-columns:minmax(220px,1fr) minmax(180px,1fr) minmax(160px,200px) auto;gap:12px;align-items:end;margin-bottom:18px}
.search-row .full{margin:0}
.admin-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:18px}
.admin-kpi{padding:16px 18px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,0.03)}
.admin-kpi-label{display:block;color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}
.admin-kpi strong{font-size:24px}
.admin-table input[type="date"], .admin-table input[type="text"], .admin-table input[type="email"], .admin-table input[type="number"], .admin-table select{width:100%}
.scan-status{font-size:14px;color:var(--muted);margin:6px 0 0}
.admin-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.admin-form-grid .full{grid-column:1/-1}
.admin-form-card{padding:20px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,0.03)}
.table-note{margin-bottom:12px;color:var(--muted)}
.fin-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:18px}
.fin-card{padding:18px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,0.03)}
.fin-card h3{margin:0 0 8px;font-size:18px}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
@media (max-width: 980px){.admin-kpis,.fin-grid,.search-row,.admin-form-grid{grid-template-columns:1fr}.admin-actions{width:100%;justify-content:flex-start}.admin-actions .btn{flex:1 1 160px}}


.btw-kpis{
  margin-bottom: 24px;
}

.checkbox-inline{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:26px;
}
.checkbox-inline input{
  width:18px;
  height:18px;
}


.search-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap:16px;
  align-items:end;
}
.search-row .search-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:end;
}
.admin-form-card{
  margin-bottom:20px;
}
@media (max-width: 980px){
  .search-row{
    grid-template-columns: 1fr;
  }
}


.save-reminder{
  margin-top:10px;
  padding:8px 10px;
  border:1px solid #d97706;
  background:#fff7ed;
  color:#9a3412;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
}

.notice.error{
  margin-bottom: 18px;
}


.admin-table textarea{
  width:100%;
  min-width:180px;
  min-height:84px;
  resize:vertical;
}


.label-toolbar{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-bottom:16px;
}

.label-toolbar .btn{
  min-width:120px;
}

.pickup-label-header img,
.shipping-label-top img{
  width:60px;
  max-width:60px;
  height:auto;
}

@media print{
  .label-toolbar{
    display:none !important;
  }

  .pickup-label-header img,
  .shipping-label-top img{
    width:52px !important;
    max-width:52px !important;
  }
}


.label-body{
  background:#f7f5f2;
}

.label-page{
  max-width:920px;
  margin:0 auto;
  padding:16px;
}

.label-toolbar{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-bottom:12px;
}

.label-toolbar .btn{
  min-width:110px;
}

.label-sheet{
  display:flex;
  justify-content:center;
}

.pickup-label,
.shipping-label{
  width:100%;
  max-width:760px;
  min-height:auto;
  border:2px solid #1f3f7a;
  border-radius:22px;
  padding:28px 30px;
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,0.06);
}

.pickup-label-header,
.shipping-label-top{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:22px;
  align-items:center;
  margin-bottom:18px;
  padding-bottom:16px;
  border-bottom:1px solid #d7d8de;
}

.pickup-label-header img,
.shipping-label-top img{
  width:92px;
  max-width:92px;
  height:auto;
  display:block;
}

.pickup-label-title,
.shipping-label-title{
  font-size:44px;
  line-height:1;
  font-weight:700;
  color:#1f3f7a;
  margin:0;
}

.pickup-label-subtitle,
.shipping-label-subtitle{
  margin-top:6px;
  font-size:20px;
  line-height:1.2;
  color:#385892;
}

.shipping-label-order{
  margin-top:8px;
  font-size:15px;
  color:#5d6780;
}

.pickup-label-block,
.shipping-label-address{
  margin-bottom:18px;
}

.pickup-label-caption,
.shipping-label-caption{
  margin-bottom:6px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#687083;
}

.pickup-label-text,
.shipping-label-text{
  font-size:28px;
  line-height:1.35;
  color:#111;
}

.shipping-label-name{
  font-size:30px;
  line-height:1.2;
  color:#111;
  font-weight:700;
  margin-bottom:8px;
}

.shipping-label-footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:16px;
  border-top:1px solid #d7d8de;
  color:#111;
  font-size:18px;
}

@media (max-width: 700px){
  .label-page{
    padding:10px;
  }

  .pickup-label,
  .shipping-label{
    padding:18px 18px 20px;
    border-radius:18px;
  }

  .pickup-label-header,
  .shipping-label-top{
    grid-template-columns:72px 1fr;
    gap:14px;
    margin-bottom:14px;
    padding-bottom:14px;
  }

  .pickup-label-header img,
  .shipping-label-top img{
    width:64px;
    max-width:64px;
  }

  .pickup-label-title,
  .shipping-label-title{
    font-size:30px;
  }

  .pickup-label-subtitle,
  .shipping-label-subtitle{
    font-size:15px;
  }

  .pickup-label-text,
  .shipping-label-text{
    font-size:22px;
  }

  .shipping-label-name{
    font-size:24px;
  }

  .shipping-label-footer{
    font-size:15px;
    flex-direction:column;
    gap:8px;
  }
}

@media print{
  .label-body{
    background:#fff !important;
  }

  .label-toolbar{
    display:none !important;
  }

  .label-page{
    max-width:none;
    margin:0;
    padding:0;
  }

  .pickup-label,
  .shipping-label{
    max-width:none;
    width:100%;
    border:2px solid #1f3f7a;
    box-shadow:none;
    border-radius:18px;
    padding:20px 22px;
  }

  .pickup-label-header,
  .shipping-label-top{
    grid-template-columns:86px 1fr;
    gap:18px;
  }

  .pickup-label-header img,
  .shipping-label-top img{
    width:74px !important;
    max-width:74px !important;
  }

  .pickup-label-title,
  .shipping-label-title{
    font-size:38px;
  }

  .pickup-label-subtitle,
  .shipping-label-subtitle{
    font-size:18px;
  }

  .pickup-label-text,
  .shipping-label-text{
    font-size:24px;
  }

  .shipping-label-name{
    font-size:26px;
  }
}


.label-toolbar .btn{
  background:#1f3f7a !important;
  color:#ffffff !important;
  border:1px solid #1f3f7a !important;
  opacity:1 !important;
}

.label-toolbar .btn:hover,
.label-toolbar .btn:focus{
  background:#17325f !important;
  color:#ffffff !important;
  border-color:#17325f !important;
}

.order-total-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  background:rgba(255,255,255,0.04);
  margin:4px 0 8px;
}
.order-total-label{
  color:var(--muted);
}
.order-total-box strong{
  font-size:22px;
}

.order-total-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  background:rgba(255,255,255,0.04);
  margin:4px 0 8px;
}
.order-total-label{
  color:var(--muted);
}
.order-total-box strong{
  font-size:22px;
}

.terms-content,
.terms-content p,
.terms-content h1,
.terms-content h2 {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 20px 16px;
  }

  .terms-content p,
  .terms-content li {
    font-size: 16px;
    line-height: 1.6;
  }

  .terms-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .terms-content h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}

body,
main,
section,
.container,
.panel {
  max-width: 100%;
  overflow-x: hidden;
}

.brand-with-logo{display:flex;align-items:center;gap:12px}
.brand-with-logo img{width:44px;height:auto}
.hero-reset-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:34px;align-items:center}
.hero-reset-image img{width:min(100%,420px);margin:0 auto;border-radius:22px;box-shadow:0 28px 60px rgba(0,0,0,.46)}
.hero-reset-content .subtitle{font-size:clamp(20px,2vw,28px);margin:0 0 16px}
.hero-intro{color:var(--muted);max-width:720px}
.hero-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:24px}
.hero-fact{padding:14px 16px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,0.03)}
.hero-fact-label{display:block;font-size:13px;color:var(--muted);margin-bottom:6px}
.review-page-grid{align-items:start}
.review-list,.reviews-rotator{display:grid;gap:18px}
.reviews-rotator{grid-template-columns:repeat(3,minmax(0,1fr))}
.review-card{padding:22px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.03);box-shadow:var(--shadow)}
.review-card h3{margin:10px 0 10px;color:var(--gold-strong);font-size:22px}
.review-card p{margin:0 0 14px}
.review-meta{color:var(--muted);font-size:14px}
.review-stars{font-size:22px;line-height:1;color:var(--gold-strong);letter-spacing:.08em}
.review-stars-muted{opacity:.35}
.reviews-home-header{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:20px}
.review-slide{display:none}
.review-slide.is-active{display:block}
.hp-field{position:absolute !important;left:-9999px !important;opacity:0 !important;pointer-events:none !important}
.admin-review-actions{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.admin-badge{display:inline-flex;align-items:center;justify-content:center;min-width:22px;height:22px;padding:0 6px;border-radius:999px;background:#1a1208;color:var(--gold-strong);font-size:12px;font-weight:700;margin-left:6px}

@media (max-width: 980px){
  .hero-reset-grid,.grid-2,.reviews-home-header{grid-template-columns:1fr;display:grid}
  .hero-facts,.reviews-rotator{grid-template-columns:1fr}
}

/* 4 x 6 inch labelprinter-opmaak: alleen actief op de labelpagina's. */
.label-4x6{
  --label-width:101.6mm;
  --label-height:152.4mm;
}

.label-4x6 .label-page{
  max-width:calc(var(--label-width) + 32px);
}

.label-4x6 .label-sheet{
  justify-content:center;
}

.label-4x6 .pickup-label,
.label-4x6 .shipping-label{
  box-sizing:border-box;
  width:var(--label-width);
  min-height:var(--label-height);
  max-width:var(--label-width);
  padding:8mm 7mm;
  border:1.5px solid #111;
  border-radius:0;
  box-shadow:none;
  color:#111;
}

.label-4x6 .pickup-label-header,
.label-4x6 .shipping-label-top{
  grid-template-columns:22mm 1fr;
  gap:5mm;
  margin-bottom:6mm;
  padding-bottom:4mm;
  border-bottom:1px solid #111;
}

.label-4x6 .pickup-label-header img,
.label-4x6 .shipping-label-top img{
  width:18mm;
  max-width:18mm;
  filter:grayscale(1) contrast(1.3);
}

.label-4x6 .pickup-label-title,
.label-4x6 .shipping-label-title{
  font-size:22pt;
  line-height:1;
  color:#111;
}

.label-4x6 .pickup-label-subtitle,
.label-4x6 .shipping-label-subtitle{
  font-size:10pt;
  color:#111;
}

.label-4x6 .shipping-label-order{
  font-size:9pt;
  color:#111;
}

.label-4x6 .pickup-label-block,
.label-4x6 .shipping-label-address{
  margin-bottom:5mm;
}

.label-4x6 .pickup-label-caption,
.label-4x6 .shipping-label-caption{
  margin-bottom:1.5mm;
  font-size:8pt;
  color:#111;
  letter-spacing:.08em;
}

.label-4x6 .pickup-label-text,
.label-4x6 .shipping-label-text{
  font-size:15pt;
  line-height:1.25;
  color:#111;
}

.label-4x6 .shipping-label-name{
  font-size:17pt;
  line-height:1.15;
  color:#111;
  margin-bottom:2mm;
}

.label-4x6 .shipping-label-footer{
  padding-top:4mm;
  border-top:1px solid #111;
  font-size:10pt;
  color:#111;
  gap:4mm;
}

.label-4x6 .multi-order-highlight{
  background:#fff !important;
  border:2px solid #111;
  border-radius:0;
  padding:3mm;
}

.label-4x6 .barcode-svg{
  max-width:86mm;
  border:0;
  border-radius:0;
  padding:0;
}

.label-4x6 .barcode-number{
  font-size:9pt;
  color:#111;
}

@media print{
  .label-4x6{
    width:101.6mm !important;
    height:152.4mm !important;
    margin:0 !important;
    padding:0 !important;
    background:#fff !important;
    overflow:hidden !important;
    -webkit-print-color-adjust:exact;
    print-color-adjust:exact;
  }

  .label-4x6 .label-page,
  .label-4x6 .label-sheet{
    width:101.6mm !important;
    height:152.4mm !important;
    max-width:101.6mm !important;
    margin:0 !important;
    padding:0 !important;
    display:block !important;
  }

  .label-4x6 .pickup-label,
  .label-4x6 .shipping-label{
    width:101.6mm !important;
    height:152.4mm !important;
    min-height:152.4mm !important;
    max-width:101.6mm !important;
    margin:0 !important;
    padding:7mm 6mm !important;
    border:1px solid #111 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    page-break-inside:avoid;
  }

  .label-4x6 .pickup-label-title,
  .label-4x6 .shipping-label-title{
    font-size:21pt !important;
  }

  .label-4x6 .pickup-label-text,
  .label-4x6 .shipping-label-text{
    font-size:14pt !important;
  }

  .label-4x6 .shipping-label-name{
    font-size:16pt !important;
  }
}

