/* Gift Cards BD — theme styles */

:root {
  --radius: 0.75rem;
  --brand: oklch(0.6 0.15 152);
  --brand-dark: oklch(0.5 0.13 152);
  --ink: oklch(0.24 0.01 260);
  --surface: oklch(0.972 0.002 260);
  --background: var(--surface);
  --foreground: var(--ink);
  --card: oklch(1 0 0);
  --primary: var(--brand);
  --primary-foreground: oklch(1 0 0);
  --muted: oklch(0.945 0.003 260);
  --muted-foreground: oklch(0.55 0.012 260);
  --accent: oklch(0.945 0.02 152);
  --accent-foreground: var(--brand-dark);
  --border: oklch(0.24 0.01 260 / 10%);
  --shadow-tile: 0 1px 2px oklch(0 0 0 / 6%), 0 8px 24px -16px oklch(0 0 0 / 18%);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; border-color: var(--border); }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
button { font: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-sans); letter-spacing: -0.01em; margin: 0; }

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.site { display: flex; min-height: 100vh; flex-direction: column; }
.site-main { flex: 1; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 100; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--card); border-bottom: 1px solid var(--border);
}
.header-bar {
  max-width: 80rem; margin: 0 auto; display: flex; align-items: center;
  gap: 1rem; padding: .75rem 1rem;
}
.brand { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; font-size: 1.125rem; font-weight: 800; letter-spacing: -.01em; }
.brand img { max-height: 40px; width: auto; }
.brand-mark {
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border-radius: .5rem; background: var(--brand); color: var(--primary-foreground);
}
.brand-mark svg { width: 1.25rem; height: 1.25rem; }
.brand em { font-style: normal; color: var(--brand); }

.header-search { position: relative; margin: 0 auto; width: 100%; max-width: 36rem; display: none; }
.header-search input {
  height: 2.5rem; width: 100%; border: 0; border-radius: .5rem; background: var(--muted);
  padding: 0 2.5rem 0 1rem; font-size: .875rem; outline: none; color: inherit;
}
.header-search input:focus { box-shadow: 0 0 0 2px var(--brand); }
.header-search button {
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--brand); line-height: 0;
}
@media (min-width: 768px) { .header-search { display: block; } }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.icon-btn {
  position: relative; display: grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--border); border-radius: .5rem; color: var(--muted-foreground); background: var(--card);
}
.icon-btn .badge {
  position: absolute; right: -.375rem; top: -.375rem; display: grid; place-items: center;
  width: 1.25rem; height: 1.25rem; border-radius: 999px; background: var(--brand);
  color: var(--primary-foreground); font-size: 10px; font-weight: 700;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .375rem; border: 0; border-radius: .5rem;
  background: var(--brand); color: var(--primary-foreground); padding: .5rem .875rem;
  font-size: .875rem; font-weight: 600;
}
.btn-primary:hover { background: var(--brand-dark); color: var(--primary-foreground); }
.btn-buy-now {
  display: inline-flex; align-items: center; justify-content: center; gap: .375rem;
  border: 0; border-radius: .5rem; background: #dc2626; color: #fff;
  padding: .625rem 1rem; font-size: .9375rem; font-weight: 700; width: 100%;
}
.btn-buy-now:hover { background: #b91d1d; color: #fff; }
.header-whatsapp {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 2.25rem;
  border-radius: .5rem; background: #25d366; color: #fff; padding: .5rem .875rem;
  font-size: .875rem; font-weight: 700; white-space: nowrap;
}
.header-whatsapp:hover { background: #1fb958; color: #fff; }
.header-whatsapp img { width: 1rem; height: 1rem; }
@media (max-width: 479px) {
  .header-bar { gap: .5rem; }
  .header-whatsapp { width: 2.25rem; padding: 0; justify-content: center; }
  .header-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}
.btn-outline {
  display: inline-flex; align-items: center; gap: .375rem; border: 1px solid var(--border);
  border-radius: .5rem; background: var(--card); padding: .5rem .875rem; font-size: .875rem; font-weight: 600;
}

.primary-nav ul {
  max-width: 80rem; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem;
  overflow-x: auto; padding: 0 1rem .625rem; list-style: none;
  font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .02em;
  color: var(--muted-foreground); scrollbar-width: none;
}
.primary-nav ul::-webkit-scrollbar { display: none; }
.primary-nav li { white-space: nowrap; }
.primary-nav a:hover { color: var(--brand); }
.primary-nav ul ul { display: none; }

/* ---------------- Banner slider ---------------- */
.hero-grid {
  max-width: 80rem; margin: 0 auto; display: grid; gap: .75rem;
  padding: 1rem .75rem 0;
}
@media (min-width: 640px) { .hero-grid { padding: 1.25rem 1rem 0; } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: minmax(0, 1fr) 320px; } }

.slider { position: relative; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-tile); }
.slider-track { display: flex; transition: transform .5s ease; }
.slide {
  flex: 0 0 100%; min-width: 0; position: relative; color: #fff;
  padding: 1.5rem; min-height: 260px; display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
@media (min-width: 640px) { .slide { padding: 2rem 2.5rem; min-height: 300px; } }
.slide.theme-brand { background: linear-gradient(135deg, oklch(0.5 0.13 152) 0%, oklch(0.63 0.16 152) 100%); }
.slide.theme-indigo { background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%); }
.slide.theme-orange { background: linear-gradient(135deg, #b45309 0%, #f97316 100%); }
.slide img.slide-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.slide-inner { position: relative; max-width: 34rem; }
.slide .eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.slide h2 { margin-top: .5rem; font-size: 1.5rem; font-weight: 800; line-height: 1.15; }
@media (min-width: 640px) { .slide h2 { font-size: 2rem; } }
.slide p { margin: .625rem 0 0; font-size: .875rem; color: rgba(255,255,255,.8); }
.slide .slide-cta { margin-top: 1.25rem; display: inline-flex; gap: .5rem; align-items: center;
  background: #fff; color: var(--brand-dark); border-radius: .625rem; padding: .625rem 1.125rem;
  font-size: .875rem; font-weight: 700; }
.slide .logos { position: relative; margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.slide .logos span {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-tile); overflow: hidden;
}
.slide .logos img { width: 1.5rem; height: 1.5rem; object-fit: contain; }

.slider-dots { position: absolute; bottom: .75rem; left: 50%; transform: translateX(-50%); display: flex; gap: .375rem; }
.slider-dots button { width: .5rem; height: .5rem; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.5); }
.slider-dots button[aria-current="true"] { width: 1.5rem; background: #fff; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center;
  width: 2rem; height: 2rem; border: 0; border-radius: 999px; background: rgba(255,255,255,.25);
  color: #fff; backdrop-filter: blur(4px);
}
.slider-arrow.prev { left: .5rem; }
.slider-arrow.next { right: .5rem; }

.side-promos { display: grid; gap: .75rem; }
@media (min-width: 640px) { .side-promos { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .side-promos { grid-template-columns: 1fr; } }
.promo {
  position: relative; overflow: hidden; border-radius: 1rem; padding: 1.25rem; color: #fff;
  box-shadow: var(--shadow-tile); display: block;
}
.promo:hover { color: #fff; }
.promo.indigo { background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%); }
.promo.orange { background: linear-gradient(135deg, #9a3412 0%, #f97316 100%); }
.promo .eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.promo strong { display: block; margin-top: .25rem; font-size: 1.125rem; font-weight: 800; line-height: 1.3; }
.promo span.sub { display: block; margin-top: .25rem; font-size: .75rem; color: rgba(255,255,255,.72); }

/* ---------------- Sections & circles ---------------- */
.section { max-width: 80rem; margin: 0 auto; padding: 1.5rem 1rem; }
.section > h2 {
  margin-bottom: 1rem; font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em;
}
@media (min-width: 640px) { .section > h2 { font-size: 1.5rem; } }
.cat-card { border-radius: 1rem; background: var(--card); padding: 1rem; box-shadow: var(--shadow-tile); }
@media (min-width: 640px) { .cat-card { padding: 1.25rem; } }
.cat-card + .cat-card { margin-top: 1.5rem; }
.cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cat-head h3 { font-size: 1rem; font-weight: 800; }
@media (min-width: 640px) { .cat-head h3 { font-size: 1.125rem; } }
.cat-head a { font-size: .75rem; font-weight: 700; color: var(--brand); }
.cat-head a:hover { text-decoration: underline; }

.circle-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: .5rem; row-gap: 1.25rem; }
@media (min-width: 640px) { .circle-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .circle-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); } }

.circle { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.circle-badge {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; border-radius: 999px; background: var(--card);
  box-shadow: var(--shadow-tile); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
  outline: 2px solid var(--ring-color, rgba(0,0,0,.08)); outline-offset: 0;
}
@media (min-width: 640px) { .circle-badge { width: 5rem; height: 5rem; } }
.circle:hover .circle-badge { transform: scale(1.05); outline-width: 4px; }
.circle-badge .glow { position: absolute; inset: 0; opacity: .1; }
.circle-badge img { width: 2rem; height: 2rem; object-fit: contain; position: relative; }
@media (min-width: 640px) { .circle-badge img { width: 2.5rem; height: 2.5rem; } }
.circle-badge .mono { position: relative; font-size: 1.125rem; font-weight: 800; }
.circle-label {
  max-width: 5.5rem; font-size: 11px; font-weight: 600; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .circle-label { max-width: 6.5rem; font-size: .75rem; } }

/* ---------------- Product cards ---------------- */
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; } }

.product-card {
  display: block; border-radius: 1rem; background: var(--card); padding: .75rem;
  box-shadow: var(--shadow-tile); transition: transform .2s ease;
}
.product-card:hover { transform: translateY(-2px); color: inherit; }
.product-thumb {
  position: relative; display: grid; place-items: center; height: 7rem; border-radius: .75rem;
  overflow: hidden; background: var(--muted);
}
.product-thumb img { max-height: 4rem; max-width: 70%; object-fit: contain; }
.product-thumb .mono { font-size: 1.5rem; font-weight: 800; }
.product-badge {
  position: absolute; left: .5rem; top: .5rem; border-radius: 999px; background: var(--brand);
  color: var(--primary-foreground); padding: .125rem .5rem; font-size: 10px; font-weight: 700; text-transform: uppercase;
}
.product-cat { margin-top: .625rem; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted-foreground); }
.product-name { margin-top: .125rem; font-size: .875rem; font-weight: 700; line-height: 1.25; }
.product-price { margin-top: .5rem; display: flex; align-items: baseline; gap: .375rem; }
.product-price strong { font-size: 1rem; font-weight: 800; color: var(--brand-dark); }
.product-price del { font-size: .75rem; color: var(--muted-foreground); }

/* ---------------- Single product ---------------- */
.single-product-wrap { max-width: 80rem; margin: 0 auto; padding: 1.5rem 1rem 2.5rem; }
.breadcrumb { font-size: .75rem; color: var(--muted-foreground); margin-bottom: 1.25rem; display: flex; flex-wrap: wrap; gap: .375rem; }
.breadcrumb a { color: var(--muted-foreground); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .current { color: var(--foreground); font-weight: 600; }
.single-product { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .single-product { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; } }
.product-main > * + * { margin-top: 1rem; }
.product-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; }
.product-desc { font-size: .875rem; color: var(--muted-foreground); line-height: 1.7; }
.product-trust { display: grid; gap: .75rem; grid-template-columns: repeat(1, minmax(0,1fr)); }
@media (min-width: 640px) { .product-trust { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.product-trust-item { border-radius: .75rem; background: var(--card); padding: 1rem; box-shadow: var(--shadow-tile); }
.product-trust-item .pti-icon { font-size: 1rem; }
.product-trust-item strong { display: block; font-size: .875rem; margin-top: .5rem; }
.product-trust-item small { font-size: .75rem; color: var(--muted-foreground); }
.product-side { min-width: 0; }
@media (min-width: 1024px) { .product-side { position: sticky; top: 6rem; } }
.order-panel .order-heading { font-size: .875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-top: .75rem; }
.redeem-note-title { font-size: .8125rem; font-weight: 800; text-transform: uppercase; margin-top: 1.25rem; }
.redeem-note { font-size: .875rem; color: var(--muted-foreground); margin-top: .25rem; }
.related-section { margin-top: 3rem; }
.related-heading { font-size: 1.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 1rem; }
.gallery { border-radius: 1rem; background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-tile); }
.gallery-main { display: grid; place-items: center; height: 16rem; border-radius: .75rem; background: var(--muted); overflow: hidden; }
.gallery-main img { max-height: 11rem; object-fit: contain; }
.gallery-thumbs { margin-top: .75rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.gallery-thumbs button {
  display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: .625rem;
  border: 1px solid var(--border); background: var(--card); padding: .25rem;
}
.gallery-thumbs button[aria-current="true"] { outline: 2px solid var(--brand); }
.gallery-thumbs img { max-height: 2.5rem; object-fit: contain; }

.panel { border-radius: 1rem; background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-tile); }
.panel + .panel { margin-top: 1rem; }
.panel h2, .panel h3 { font-size: 1rem; font-weight: 800; }
.pack-list { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.pack-row {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  border: 1px solid var(--border); border-radius: .75rem; padding: .75rem .875rem;
}
.pack-row .pack-label { font-size: .875rem; font-weight: 700; }
.pack-row .pack-note { font-size: .75rem; color: var(--muted-foreground); }
.pack-row .pack-price { font-size: .9375rem; font-weight: 800; color: var(--brand-dark); white-space: nowrap; }
.pack-row.selected { outline: 2px solid var(--brand); background: var(--accent); }

.breakdown { margin-top: 1rem; font-size: .875rem; }
.breakdown div { display: flex; justify-content: space-between; padding: .375rem 0; }
.breakdown .total { border-top: 1px solid var(--border); margin-top: .375rem; padding-top: .625rem; font-weight: 800; }
.instructions { margin: .75rem 0 0; padding-left: 1.125rem; font-size: .875rem; color: var(--muted-foreground); }
.instructions li { margin-bottom: .375rem; }

.pay-methods { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .875rem; }
.pay-chip {
  border: 1px solid var(--border); border-radius: .625rem; padding: .5rem .75rem;
  font-size: .8125rem; font-weight: 600; background: var(--muted);
}
.pay-chip b { color: var(--brand-dark); }

/* ---------------- Archive / search ---------------- */
.page-head { max-width: 80rem; margin: 0 auto; padding: 1.5rem 1rem .25rem; }
.page-head h1 { font-size: 1.5rem; font-weight: 800; }
.page-head p { color: var(--muted-foreground); font-size: .875rem; margin-top: .375rem; }
.filter-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.filter-pills a {
  border-radius: 999px; border: 1px solid var(--border); background: var(--card);
  padding: .375rem .875rem; font-size: .8125rem; font-weight: 600;
}
.filter-pills a[aria-current="true"] { background: var(--brand); color: var(--primary-foreground); border-color: transparent; }

.entry { max-width: 48rem; margin: 0 auto; padding: 1.5rem 1rem; }
.entry-content { background: var(--card); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-tile); }
.entry-content h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.entry-content img { border-radius: .75rem; }
.pagination { display: flex; gap: .5rem; justify-content: center; padding: 1.5rem 0; }
.pagination .page-numbers { border: 1px solid var(--border); border-radius: .5rem; padding: .375rem .75rem; background: var(--card); font-size: .875rem; }
.pagination .page-numbers.current { background: var(--brand); color: #fff; border-color: transparent; }

.video-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-embed { position: relative; padding-top: 56.25%; border-radius: 1rem; overflow: hidden; background: #000; }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.trust-row { display: grid; gap: .75rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 768px) { .trust-row { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.trust {
  background: var(--card); border-radius: 1rem; padding: 1rem; box-shadow: var(--shadow-tile);
  font-size: .8125rem; color: var(--muted-foreground);
}
.trust strong { display: block; font-size: .875rem; color: var(--foreground); margin-bottom: .25rem; }

/* ---------------- Footer ---------------- */
.site-footer { margin-top: 4rem; border-top: 1px solid var(--border); background: var(--card); }
.footer-grid { max-width: 80rem; margin: 0 auto; display: grid; gap: 2rem; padding: 2.5rem 1rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.footer-col p.title { font-size: .875rem; font-weight: 700; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: .75rem 0 0; padding: 0; display: grid; gap: .5rem; font-size: .875rem; color: var(--muted-foreground); }
.footer-about p { font-size: .875rem; color: var(--muted-foreground); margin-top: .5rem; }
.footer-brand { font-size: 1.125rem; font-weight: 800; }
.socials { display: flex; gap: .5rem; margin-top: .875rem; }
.socials a { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 999px; background: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 1rem; text-align: center; font-size: .75rem; color: var(--muted-foreground); }

/* ---------------- Mobile bottom menu ---------------- */
.mobile-bottom-menu {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: flex;
  background: var(--card); border-top: 1px solid var(--border); padding: .375rem .25rem;
}
.mobile-bottom-menu a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .125rem;
  font-size: 10px; font-weight: 600; color: var(--muted-foreground); padding: .25rem 0;
}
.mobile-bottom-menu a svg { width: 1.125rem; height: 1.125rem; }
.mobile-bottom-menu a:hover, .mobile-bottom-menu a.current-menu-item { color: var(--brand); }
@media (min-width: 768px) { .mobile-bottom-menu { display: none; } }
body.has-bottom-menu { padding-bottom: 3.75rem; }
@media (min-width: 768px) { body.has-bottom-menu { padding-bottom: 0; } }

/* Order form (single product) */
.order-form { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.order-fields { display: grid; gap: .75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .order-fields { grid-template-columns: 1fr 1fr; } }
.order-fields label { display: block; font-size: .8125rem; }
.order-fields label span { font-weight: 700; }
.order-fields input {
  margin-top: .25rem; width: 100%; height: 2.5rem; border: 1px solid var(--border);
  border-radius: .5rem; padding: 0 .75rem; font-size: .875rem; background: var(--card);
  color: var(--foreground);
}
.order-fields input:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
button.pay-chip { cursor: pointer; font: inherit; }
.pay-chip.selected { outline: 2px solid var(--brand); background: var(--accent); }
.order-error { margin-top: .5rem; font-size: .8125rem; color: #b91c1c; }

/* Live Chat floating widget */
.gcl-live-chat{position:fixed;right:1.25rem;bottom:1.25rem;z-index:60;display:flex;flex-direction:column;align-items:flex-end;gap:.75rem}
body.has-bottom-menu .gcl-live-chat{bottom:5rem}
.gcl-live-chat-toggle{display:inline-flex;align-items:center;gap:.5rem;border:0;cursor:pointer;border-radius:999px;background:#dc2626;color:#fff;font-weight:700;font-size:.875rem;padding:.8rem 1.25rem;box-shadow:0 10px 24px rgba(220,38,38,.35);transition:background .2s ease}
.gcl-live-chat-toggle:hover{background:#b91c1c}
.gcl-live-chat-panel{display:flex;flex-direction:column;gap:.625rem;background:var(--card,#fff);border:1px solid var(--border,#e5e7eb);border-radius:1rem;padding:.75rem;box-shadow:0 18px 40px rgba(0,0,0,.18);min-width:210px}
.gcl-live-chat-panel[hidden]{display:none}
.gcl-chat-item{display:flex;align-items:center;gap:.625rem;border-radius:.75rem;padding:.65rem 1rem;color:#fff;font-weight:600;font-size:.875rem;text-decoration:none;transition:filter .2s ease}
.gcl-chat-item:hover{filter:brightness(.95)}
.gcl-chat-wa{background:#25D366}
.gcl-chat-call{background:#2563eb}
.gcl-chat-fb{background:#0084FF}
@media (max-width:640px){.gcl-live-chat{right:1rem;bottom:1rem}body.has-bottom-menu .gcl-live-chat{bottom:4.75rem}}

/* Footer payment logos */
.pay-logos { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .875rem; }
.pay-logo {
	display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .6rem .35rem .35rem;
	background: #fff; border: 1px solid var(--border); border-radius: 999px; box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.pay-logo-mark {
	width: 1.5rem; height: 1.5rem; border-radius: 999px; background: var(--logo); color: #fff;
	display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: .875rem;
}
.pay-logo-name { font-size: .8125rem; font-weight: 700; color: var(--logo); }

/* Product tags, FAQ, reviews */
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.tag-list a { font-size: .75rem; padding: .25rem .55rem; border: 1px solid var(--border); border-radius: 999px; }
.faq-list { margin-top: .75rem; display: grid; gap: .5rem; }
.faq-list details { border: 1px solid var(--border); border-radius: .625rem; padding: .625rem .75rem; }
.faq-list summary { cursor: pointer; font-weight: 700; font-size: .875rem; }
.faq-list p { margin-top: .5rem; font-size: .875rem; color: var(--muted-foreground); }
.stars { color: #d1d5db; letter-spacing: .05em; }
.stars .on { color: #f59e0b; }
.review-summary { display: flex; align-items: center; gap: .5rem; margin-top: .625rem; font-size: .875rem; }
.review-summary span { color: var(--muted-foreground); }
.review-list { margin-top: .75rem; display: grid; gap: .625rem; list-style: none; padding: 0; }
.review-list li { border: 1px solid var(--border); border-radius: .625rem; padding: .625rem .75rem; }
.review-head { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.review-text { margin-top: .3rem; font-size: .875rem; color: var(--muted-foreground); }

/* ---------------- Checkout page ---------------- */
.checkout-wrap { max-width: 64rem; margin: 0 auto; padding: 1.5rem 1rem 3rem; }
.checkout-title { margin: 0 0 1.25rem; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; }
.checkout-grid { display: grid; gap: 1.25rem; align-items: start; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: minmax(0, 1fr) 320px; } }
.checkout-card, .checkout-summary { background: var(--card); border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow-tile); }
.checkout-heading { margin: 0; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; }
.checkout-fields { margin-top: 1rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .checkout-fields { grid-template-columns: 1fr 1fr; } .checkout-fields .full { grid-column: 1 / -1; } }
.checkout-fields label { display: block; font-size: .85rem; }
.checkout-fields label span { font-weight: 600; }
.checkout-fields input {
  margin-top: .35rem; width: 100%; height: 2.5rem; border: 0; border-radius: .625rem;
  background: var(--muted); padding: 0 .75rem; font-size: .9rem;
}
.checkout-fields input:focus { outline: 2px solid var(--brand); }
.checkout-methods { margin-top: .75rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
@media (min-width: 640px) { .checkout-methods { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.checkout-method {
  border: 1px solid var(--border); background: var(--card); border-radius: .625rem;
  padding: .55rem .5rem; font-size: .875rem; font-weight: 600; cursor: pointer;
}
.checkout-method.selected { border-color: var(--brand); color: var(--brand); background: color-mix(in oklab, var(--brand) 6%, transparent); }
.checkout-note { margin-top: .75rem; font-size: .75rem; color: var(--muted-foreground); }
.checkout-items { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .5rem; font-size: .85rem; }
.checkout-items li { display: flex; justify-content: space-between; gap: .75rem; }
.checkout-item-name { color: var(--muted-foreground); min-width: 0; }
.checkout-totals { margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid var(--border); display: grid; gap: .5rem; font-size: .875rem; }
.checkout-totals div { display: flex; justify-content: space-between; gap: .75rem; }
.checkout-totals dt, .checkout-totals dd { margin: 0; }
.checkout-totals dt { color: var(--muted-foreground); }
.checkout-totals .total { margin-top: .25rem; padding-top: .5rem; border-top: 1px solid var(--border); font-size: 1rem; font-weight: 800; }
.checkout-totals .total dt { color: inherit; }
.checkout-totals .total dd { color: var(--brand); }
.checkout-submit { margin-top: 1.25rem; width: 100%; justify-content: center; border: 0; cursor: pointer; }
.checkout-empty { background: var(--card); border-radius: 1rem; padding: 2rem; text-align: center; box-shadow: var(--shadow-tile); }

/* ---------------- Product sidebar actions ---------------- */
.qty-row { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; }
.qty-label { font-size: .875rem; font-weight: 600; }
.qty-control { display: flex; align-items: center; gap: .5rem; }
.qty-control button {
  width: 2rem; height: 2rem; border-radius: .5rem; border: 1px solid var(--border);
  background: var(--card); font-weight: 800; cursor: pointer;
}
.qty-control span { min-width: 2rem; text-align: center; font-weight: 800; }
.order-actions { display: grid; gap: .5rem; margin-top: 1.25rem; }
.btn-block { width: 100%; justify-content: center; text-align: center; }
button.btn-primary, button.btn-outline { cursor: pointer; font: inherit; }
.cart-added { margin: .25rem 0 0; font-size: .8125rem; color: var(--brand-dark); font-weight: 600; }
