/* ==========================================================
   Shop Premium Theme | Bletaria R - Katana
   Fonts: Cormorant Garamond (display) + Jost (body/UI)
   ========================================================== */
:root {
  --bg:            #ffffff;
  --bg-alt:        #fbf3da;
  --bg-panel:      #fffefa;
  --gold:          #d1a53f;
  --gold-light:    #96700f;
  --gold-dim:      rgba(207, 159, 61, 0.45);
  --cream:         #2c2013;
  --text-muted:    #7d6a4a;
  --text-faint:    #a89474;
  --forest:        #3d4a2e;
  --forest-light:  #6b7c4f;
  --line:          rgba(200, 150, 40, 0.3);
  --shadow:        rgba(120, 90, 30, 0.14);
  --radius:        14px;
  --radius-lg:     26px;
  --maxw:          1180px;
  --ff-display:    'Poppins', sans-serif;
  --ff-body:       'Poppins', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Warm ambient glow behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(212,165,63,0.16), transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(212,165,63,0.10), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--cream);
  margin: 0;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.section-tight { padding: 64px 0; }
.section-head {
  max-width: 620px;
  margin: 0 0 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.15; }
.section-head p { color: var(--text-muted); font-size: 17px; margin-top: 14px; }
/* ---------- Honeycomb divider (signature motif) ---------- */
.honeycomb-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 8px;
  opacity: 0.85;
}
.honeycomb-divider .hex {
  width: 14px;
  height: 8px;
  background: var(--gold-dim);
  position: relative;
  margin: 4px 0;
}
.honeycomb-divider .hex::before,
.honeycomb-divider .hex::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.honeycomb-divider .hex::before { top: -4px; border-bottom: 4px solid var(--gold-dim); }
.honeycomb-divider .hex::after  { bottom: -4px; border-top: 4px solid var(--gold-dim); }
.honeycomb-divider .hex:nth-child(2) { transform: translateY(6px); }
.honeycomb-divider .hex:nth-child(3) { transform: translateY(-2px); }
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #f0cf7c, var(--gold));
  color: #241806;
  box-shadow: 0 10px 30px -10px rgba(207,159,61,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(207,159,61,0.7); }
.btn-outline {
  background: transparent;
  border-color: var(--gold-dim);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(207,159,61,0.08); }

.btn-whatsapp {
  background: #1e2b1a;
  color: #f5eed8;
  border-color: rgba(107,124,79,0.5);
  width: 100%;
}
.btn-whatsapp:hover { border-color: var(--forest-light); background: #253621; transform: translateY(-2px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
/* ---------- Navbar ---------- */
.topbar {
  background: rgba(23, 15, 9, 0.9);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-faint);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--cream);
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(207,159,61,0.25));
}
.brand .mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0cf7c, var(--gold) 60%, #8a611c 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: #241806;
  font-size: 18px;
  box-shadow: 0 6px 18px -6px rgba(207,159,61,0.5);
}
.brand small {
  display: block;
  font-family: var(--ff-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--cream);
  border-radius: 8px;
  padding: 8px 12px;
}
/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.08;
  margin: 18px 0 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.trust-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.trust-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
/* Hero product photo */
.hero-visual { position: relative; display: flex; justify-content: center; }
.jar-wrap { position: relative; width: 320px; }
.jar-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(207,159,61,0.28), transparent 65%);
  filter: blur(6px);
  z-index: 0;
}
.hex-orbit {
  position: absolute;
  inset: -30px;
  z-index: 0;
}
.hex-orbit span {
  position: absolute;
  width: 16px; height: 9px;
  background: transparent;
  border-radius: 2px;
}
.hex-orbit span::before,.hex-orbit span::after{content:"";position:absolute;left:0;width:0;border-left:8px solid transparent;border-right:8px solid transparent;}
.hex-orbit span { background: var(--gold-dim); }
.hex-orbit span::before{top:-4px;border-bottom:4px solid var(--gold-dim);}
.hex-orbit span::after{bottom:-4px;border-top:4px solid var(--gold-dim);}
.hex-orbit span:nth-child(1){ top: 4%; left: 82%; opacity:.9; }
.hex-orbit span:nth-child(2){ top: 62%; left: 90%; opacity:.5; }
.hex-orbit span:nth-child(3){ top: 84%; left: 8%; opacity:.7; }
.hex-orbit span:nth-child(4){ top: 10%; left: 2%; opacity:.4; }
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px var(--shadow), 0 0 0 1px var(--line);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  top: -52px;
  left: 50%; transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f0cf7c, var(--gold));
  color: #241806;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(207,159,61,0.55);
  white-space: nowrap;
}
@media (max-width: 680px) {
  .hero-badge { font-size: 11px; padding: 6px 11px; top: -38px; }
}
/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: linear-gradient(180deg, var(--bg-panel), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: 0 24px 50px -24px var(--shadow);
}
.product-visual {
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-visual img { transform: scale(1.05); }
.product-card h3 { font-size: 25px; margin-bottom: 8px; }
.product-card .desc { color: var(--text-muted); font-size: 14.5px; min-height: 44px; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 18px 0 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.price-row .price { font-family: var(--ff-display); font-size: 26px; color: var(--gold-light); }
.price-row .unit { font-size: 12px; color: var(--text-faint); }

.shipping-note {
  font-size: 12px;
  color: var(--text-faint);
  margin: -10px 0 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 16px;
}
.qty-control button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(207,159,61,0.14);
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.qty-control button:hover { background: rgba(207,159,61,0.26); }
.qty-control .qty-value { font-family: var(--ff-body); font-size: 15px; }
.qty-control .qty-value b { color: var(--cream); }
.product-card .btn { width: 100%; margin-top: auto; }
/* ---------- About strip ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--bg-alt);
}
.about-card .icon { font-size: 26px; margin-bottom: 14px; display:block; }
.about-card h4 { font-size: 19px; margin-bottom: 8px; font-weight: 600; }
.about-card p { color: var(--text-muted); font-size: 13.8px; margin: 0; }
/* ---------- Order section ---------- */
.order-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.order-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: flex-start;
}
.form-card, .summary-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 15px;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-choice { display: flex; gap: 14px; margin-bottom: 26px; }
.contact-option {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.contact-option input { display: none; }
.contact-option span { display: block; font-size: 14px; margin-top: 6px; color: var(--text-muted); }
.contact-option .ic { font-size: 22px; }
.contact-option.active {
  border-color: var(--gold);
  background: rgba(207,159,61,0.08);
}
.contact-option.active span { color: var(--cream); }
.summary-card h3 { font-size: 22px; margin-bottom: 20px; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.summary-line b { color: var(--cream); font-weight: 500; }
.promo-discount-amount { color: #7a2e1e !important; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.summary-total .val { font-family: var(--ff-display); font-size: 30px; color: var(--gold-light); }
.wa-options { margin-top: 22px; display: none; flex-direction: column; gap: 12px; }
.wa-options.show { display: flex; }
.wa-option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.wa-option-btn .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--forest-light);
  color: #101a0c;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  font-family: var(--ff-body);
  overflow: hidden;
  flex-shrink: 0;
}
.wa-option-btn .avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
/* ---------- Cart (shporta) ---------- */
#cart-list { margin-bottom: 4px; }
.cart-empty {
  color: var(--text-muted);
  font-size: 13.8px;
  line-height: 1.6;
  padding: 6px 0 18px;
  margin: 0;
}
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.cart-line:first-child { padding-top: 0; }
.cart-line-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-line-info b { font-size: 14.5px; color: var(--cream); font-weight: 500; }
.cart-line-sub { font-size: 12.5px; color: var(--text-muted); }
.cart-line-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cart-line-total { font-family: var(--ff-display); font-size: 17px; color: var(--gold-light); white-space: nowrap; }
.cart-remove {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--text-muted); font-size: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cart-remove:hover { border-color: #c0563f; color: #a8402c; }
/* Card visual state once added to cart */
.product-card.in-cart { border-color: var(--gold-dim); }
.product-card .btn.added { background: linear-gradient(135deg, var(--forest-light), var(--forest)); color: #101a0c; box-shadow: none; }
#form-feedback {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
#form-feedback.success { display: block; background: rgba(107,124,79,0.14); border: 1px solid var(--forest-light); color: var(--cream); }
#form-feedback.error { display: block; background: rgba(180,70,50,0.10); border: 1px solid #b44632; color: #7a2e1e; }
/* ---------- Kod Promocional ---------- */
.promo-row { display: flex; gap: 10px; }
.promo-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 15px;
}
.promo-row input:focus { outline: none; border-color: var(--gold); }
.btn-apply-promo {
  flex-shrink: 0;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid var(--gold-dim);
  background: rgba(207,159,61,0.1);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.btn-apply-promo:hover { background: rgba(207,159,61,0.2); }
.btn-apply-promo:disabled { opacity: 0.5; cursor: not-allowed; }
#promo-feedback {
  margin-top: 10px;
  font-size: 13px;
  display: none;
}
#promo-feedback.success { display: block; color: var(--forest-light); }
#promo-feedback.error { display: block; color: #7a2e1e; }
/* ---------- Footer ---------- */
footer {
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 320px; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; font-size: 14.5px; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.socials { display: flex; gap: 16px; }
/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 1px;
    padding: 14px 24px 18px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px -18px var(--shadow);
  }
  .nav-links.mobile-open a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
  }
  .nav-links.mobile-open a:last-child { border-bottom: none; }
  .topbar-links { display:none; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
/* Focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0cf7c, var(--gold));
  color: #241806;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 26px -8px rgba(207,159,61,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }
@media (max-width: 680px) {
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; font-size: 18px; }
}
.stock-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(180,70,50,0.92);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.product-card.out-of-stock .product-visual img { filter: grayscale(55%); opacity: 0.85; }
.product-card.out-of-stock h3,
.product-card.out-of-stock .desc,
.product-card.out-of-stock .price-row { opacity: 0.6; }
.product-card.out-of-stock .btn[disabled] {
  width: 100%;
  margin-top: auto;
  background: var(--bg-alt);
  color: var(--text-faint);
  border: 1px solid var(--line);
  cursor: not-allowed;
  box-shadow: none;
}
/* ---------- Promo Popup ---------- */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(43, 30, 12, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.promo-popup-overlay.show { opacity: 1; visibility: visible; }
.promo-popup {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px 32px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.35);
  transform: scale(0.92) translateY(10px);
  transition: transform .3s ease;
}
.promo-popup-overlay.show .promo-popup { transform: scale(1) translateY(0); }
.promo-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.promo-popup-close:hover { color: var(--cream); border-color: var(--gold-dim); }
.promo-popup-icon { font-size: 40px; margin-bottom: 6px; }
.promo-popup h3 { font-size: 26px; margin-bottom: 10px; }
.promo-popup p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.promo-popup p strong { color: var(--gold-light); }
.promo-popup-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg);
  border: 1px dashed var(--gold-dim);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.promo-popup-code span {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.promo-popup-copy-btn {
  border: 1px solid var(--gold-dim);
  background: rgba(207,159,61,0.1);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.promo-popup-copy-btn:hover { background: rgba(207,159,61,0.2); }
.promo-popup-cta { width: 100%; }
@media (max-width: 480px) {
  .promo-popup { padding: 30px 24px 26px; }
  .promo-popup h3 { font-size: 22px; }
}
/* ---------- Cookie settings modal ---------- */
.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 310; background: rgba(43,30,12,0.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.cookie-modal-overlay.show { opacity: 1; visibility: visible; }
.cookie-modal {
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%; max-height: 86vh; overflow-y: auto;
  padding: 30px 28px 26px; position: relative;
  transform: scale(.94) translateY(10px); transition: transform .3s ease;
}
.cookie-modal-overlay.show .cookie-modal { transform: scale(1) translateY(0); }
.cookie-modal-close {
  position: absolute; top: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg); color: var(--text-muted); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal h3 { font-family: var(--ff-display); font-size: 23px; margin: 0 0 8px; padding-right: 30px; color: var(--cream); }
.cookie-modal > p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 22px; }
.cookie-cat { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; }
.cookie-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cookie-cat-head h5 { margin: 0; font-size: 15px; font-weight: 600; color: var(--cream); }
.cookie-cat p { margin: 8px 0 0; font-size: 12.8px; color: var(--text-muted); line-height: 1.55; }
.toggle { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; cursor: pointer; transition: background .2s ease; }
.toggle-track::before {
  content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%;
  transition: transform .2s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.toggle input:checked + .toggle-track { background: var(--gold); }
.toggle input:checked + .toggle-track::before { transform: translateX(18px); }
.toggle input:disabled + .toggle-track { background: var(--gold-dim); cursor: not-allowed; opacity: .8; }
.cookie-modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.cookie-modal-actions .btn { width: 100%; }
/* ---------- Cookie consent bar ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--bg-panel); border-top: 1px solid var(--line);
  box-shadow: 0 -14px 40px -18px rgba(0,0,0,0.3);
  padding: 18px 20px; transform: translateY(100%); transition: transform .4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-inner { max-width: 980px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-bar-copy { flex: 1; min-width: 220px; }
.cookie-bar-copy h4 { margin: 0 0 4px; font-family: var(--ff-display); font-size: 16px; color: var(--cream); }
.cookie-bar-copy p { margin: 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.5; max-width: 640px; }
.cookie-bar-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; width: 100%; max-width: 320px; }
.cookie-btn-row { display: flex; gap: 8px; }
.cookie-btn-row .btn { flex: 1; padding: 10px 14px; font-size: 12.5px; white-space: nowrap; }
.cookie-bar-actions > .btn-primary { padding: 11px 14px; font-size: 12.8px; }
@media (min-width: 720px) {
  .cookie-bar-actions { width: auto; }
}
@media (max-width: 680px) {
  .cookie-bar { padding: 16px; }
  .cookie-bar-inner { text-align: left; }
  .cookie-bar-actions { max-width: none; }
}
/* ---------- Ikona e rihapjes se cookies (mbi back-to-top) ---------- */
.cookie-reopen-btn {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 60;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  font-size: 19px;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.cookie-reopen-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 680px) {
  .cookie-reopen-btn { right: 16px; bottom: 66px; width: 38px; height: 38px; font-size: 17px; }
}
/* ---------- Combobox i qytetit (kerkueshem) ---------- */
.combo-wrap {
    position: relative;
    width: 100%;
}

.combo-wrap input#qyteti {
    width: 100%;
    padding-right: 42px;
    cursor: text;
}

.combo-wrap::after {
    content: "⌄";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-55%);
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.15s ease;
}

.combo-wrap:has(.combo-list.show)::after {
    transform: translateY(-45%) rotate(180deg);
}

.combo-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 100;

    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 10px;

    max-height: 220px;
    overflow-y: auto;

    list-style: none;
    margin: 0;
    padding: 6px;

    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.25);

    display: none;
}

.combo-list.show {
    display: block;
}

.combo-list li {
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 14px;
    color: var(--cream);
    cursor: pointer;
    transition: background 0.12s ease;
}

.combo-list li:hover,
.combo-list li.active {
    background: rgba(207, 159, 61, 0.14);
}

.combo-list .combo-empty {
    color: var(--text-faint);
    cursor: default;
    font-size: 13px;
    padding: 9px 12px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.field {
    min-width: 0;
}

@media (max-width: 700px) {
    .field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
/* ---------- Shteti si combobox ---------- */

.combo-shteti input#shteti-display {
    width: 100%;
    padding-right: 42px;
    cursor: pointer;
}

.combo-shteti::after {
    content: "⌄";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-55%);
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.combo-shteti:has(.combo-list.show)::after {
    transform: translateY(-45%) rotate(180deg);
}

.combo-shteti .combo-list li {
    white-space: normal;
}

.shteti-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.lang-switch-wrap { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text-muted); }
.lang-btn { color:var(--text-muted); font-weight:500; }
.lang-btn.active { color:var(--gold-light); font-weight:700; }
.lang-btn:hover { color:var(--gold-light); }