:root {
  --navy: #071427;
  --navy-mid: #0e2a56;
  --blue: #1d4ed8;
  --primary: #1d4ed8;
  --primary-hover: #163a9c;
  --accent: #3b6fff;
  --foreground: #0f172a;
  --muted: #f3f6fb;
  --muted-fg: #5b6b82;
  --border: #e2e8f0;
  --bg: #f5f7fb;
  --card: #fff;
  --radius: 12px;
  --shadow: 0 14px 36px rgba(7, 20, 39, 0.1);
  --banner: #071427;
  --grad: linear-gradient(90deg, #071427 0%, #0e2a56 42%, #1d4ed8 100%);
  --grad-soft: linear-gradient(180deg, #0a1830 0%, #163a9c 100%);
  --grad-btn: linear-gradient(165deg, #3b6fff 0%, #1d4ed8 48%, #0e2a56 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--grad);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  height: 36px;
  overflow: hidden;
}
.topbar-msg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-msg.is-on { opacity: 1; transform: translateY(0); }
.locale-form { display: flex; align-items: center; gap: 6px; }
.locale-dd { position: relative; }
.locale-menu {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 6px; gap: 4px;
  box-shadow: var(--shadow); z-index: 50;
  flex-direction: column;
}
.locale-menu-row { flex-direction: row; }
.locale-dd.open .locale-menu { display: flex; }
.switch-btn {
  width: 38px; height: 38px; padding: 0;
  border: 1px solid var(--border); border-radius: 10px;
  background: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.switch-btn:hover { border-color: color-mix(in srgb, var(--blue) 40%, var(--border)); }
.switch-btn.is-on {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 16%, transparent);
}
.flag { font-size: 18px; line-height: 1; display: block; }
.flag-en::before { content: "🇬🇧"; }
.flag-tr::before { content: "🇹🇷"; }
.flag-el::before { content: "🇬🇷"; }
.ccy-ico { font-size: 15px; font-weight: 800; color: var(--foreground); letter-spacing: -.02em; }
.table tr.qty-tier.is-on td { background: hsl(220 85% 45% / .08); font-weight: 700; color: var(--foreground); }
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.15) blur(14px);
  border-bottom: 0;
}
.header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
  flex-wrap: nowrap;
}
.logo { min-width: 0; flex: 0 1 auto; }
.logo img { height: 48px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; font-weight: 600; font-size: 14px; border-radius: 8px;
  letter-spacing: .01em; color: var(--navy);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow); min-width: 220px; padding: 8px; z-index: 30;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-weight: 500; }
.dropdown a:hover { background: var(--muted); color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-left: auto; }
.header-account { position: relative; }
.mnav-bg {
  position: fixed; inset: 0;
  background: rgba(7, 20, 39, .48);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.mnav {
  position: fixed; top: 0; right: 0; bottom: 0; left: auto;
  width: min(320px, 86vw);
  background: #fff;
  z-index: 90;
  padding: 88px 18px 32px;
  overflow: auto;
  transform: translate3d(104%, 0, 0);
  pointer-events: none;
  box-shadow: -18px 0 40px rgba(7, 20, 39, .18);
  transition: transform .34s cubic-bezier(.22, 1, .32, 1);
}
.mnav a, .mnav-signout {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 10px;
  font-weight: 650;
  font-size: 16px;
  color: var(--navy);
  border: 0;
  background: transparent;
  border-radius: 10px;
}
.mnav a:hover, .mnav-signout:hover { background: var(--muted); color: var(--primary); }
.mnav-sub { font-weight: 500 !important; font-size: 14px !important; padding-left: 22px !important; color: #475569 !important; }
body.mnav-open { overflow: hidden; }
body.mnav-open .mnav-bg {
  opacity: 1;
  pointer-events: auto;
}
body.mnav-open .mnav {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.icon-btn {
  width: 40px; height: 40px; border: 0; background: transparent; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer; color: var(--foreground);
}
.icon-btn.menu-btn { display: none; }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--muted); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 10px; font-weight: 600;
  padding: 10px 18px; transition: .15s filter, .15s transform, .15s box-shadow;
}
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 20, 39, 0.18);
}
.btn-primary:hover { filter: brightness(1.07); background: var(--grad-btn); }
.btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: transparent; }
.btn-lg { padding: 14px 28px; border-radius: 12px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.cart-btn {
  width: 42px; height: 42px; border-radius: 10px; background: var(--grad-btn); color: #fff; border: 0;
  display: grid; place-items: center; position: relative; cursor: pointer;
  box-shadow: 0 8px 16px rgba(7, 20, 39, 0.16);
  text-decoration: none;
}
.cart-btn svg { width: 18px; height: 18px; }
.bottom-nav { display: none; }
@keyframes cart-pulse {
  0% { transform: translateY(-12px) scale(1); }
  40% { transform: translateY(-12px) scale(1.12); }
  100% { transform: translateY(-12px) scale(1); }
}
.cart-count {
  position: absolute; top: -6px; right: -6px; background: #111; color: #fff;
  font-size: 11px; min-width: 18px; height: 18px; border-radius: 99px;
  display: grid; place-items: center; font-weight: 700;
}
.signin { border: 1px solid var(--border); background: #fff; color: var(--foreground); padding: 8px 14px; border-radius: 8px; font-weight: 500; }

.hero {
  position: relative;
  padding: 32px 0 24px;
  background:
    radial-gradient(1100px 420px at 8% -20%, rgba(29, 78, 216, .2), transparent 58%),
    radial-gradient(900px 360px at 92% 0%, rgba(7, 20, 39, .14), transparent 52%),
    linear-gradient(180deg, #f4f7fc 0%, #eef2f8 100%);
}
.hero-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-slides { position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) 1.15fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity .75s ease;
  background: #0e2a56;
}
.hero-slide.is-on {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-media {
  position: relative;
  min-height: 440px;
  background: #0e2a56;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
  color: #fff;
  background: linear-gradient(165deg, #071427 0%, #0e2a56 100%);
  min-height: 440px;
  min-width: 0;
}
.hero h1 {
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.15; letter-spacing: -1px; font-weight: 750;
  color: #fff; margin: 0; overflow-wrap: break-word;
}
.hero h1 em { font-style: normal; color: #93c5fd; }
.hero-lead {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  max-width: 34em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 16px; }
.hero .btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.hero .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.eu-row { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-weight: 500; }
.eu-row img { width: 22px; height: 22px; border-radius: 99px; }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 36px; height: 36px; padding: 0;
  border: 0; border-radius: 99px;
  background: rgba(255,255,255,.94); color: var(--navy);
  cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(7, 20, 39, 0.16);
}
.hero-nav svg { width: 18px; height: 18px; }
.hero-prev { left: 12px; }
.hero-next { right: 12px; }
.hero-dots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  z-index: 2; display: flex; justify-content: center; gap: 6px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 99px; border: 0;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
  transition: width .2s ease, background .2s ease;
}
.hero-dot.is-on { width: 20px; background: #fff; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 8px 0 40px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 18px; text-align: center;
  box-shadow: 0 8px 24px rgba(7, 20, 39, 0.04);
}
.feature-icon {
  width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 99px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 16px; margin-bottom: 8px; }
.feature p { font-size: 13px; color: var(--muted-fg); }

.section { padding: 24px 0 48px; }
.section-title { text-align: center; font-size: 32px; font-weight: 750; margin-bottom: 28px; letter-spacing: -0.6px; color: var(--navy); }
.carousel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: visible;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.product-img {
  position: relative;
  background: #eef2f7;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 17px 17px 0 0;
}
.product-img a { display: block; height: 100%; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 12px; right: 12px; background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 99px;
}
.badge-new { background: var(--navy-mid); }
.product-body { padding: 14px 16px 16px; }
.product-body h3 { font-size: 15px; font-weight: 700; text-align: center; }
.product-body .sub { font-size: 13px; color: var(--muted-fg); text-align: center; }
.price-row { display: flex; justify-content: center; align-items: baseline; gap: 8px; margin: 10px 0 12px; }
.price { color: var(--primary); font-weight: 800; font-size: 18px; }
.compare { color: #9aa3b2; text-decoration: line-through; font-size: 14px; }

.why {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 48px 0 80px;
}
.why-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .45;
  pointer-events: none;
}
.why-glow-a { top: 0; left: 18%; background: color-mix(in srgb, var(--blue) 18%, transparent); }
.why-glow-b { bottom: 0; right: 18%; background: color-mix(in srgb, var(--navy) 16%, transparent); }
.why .section-title { position: relative; z-index: 1; margin-bottom: 36px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-orbit { display: none; }
.why-card {
  text-align: center;
  background: transparent;
  border: 0;
  padding: 8px 12px;
}
.why-ico {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 12px 28px rgba(7, 20, 39, 0.18);
  border: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover .why-ico { transform: scale(1.06); box-shadow: 0 16px 32px rgba(7, 20, 39, 0.22); }
.why-ico svg { width: 40px; height: 40px; }
.why-card h3 { margin-bottom: 8px; font-size: 20px; font-weight: 600; }
.why-card p { color: var(--muted-fg); font-size: 15px; line-height: 1.55; }
.why-card a { color: var(--primary); font-weight: 600; display: inline-block; margin-top: 10px; font-size: 14px; }
.why-card a:hover { text-decoration: underline; }
@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .why { padding: 56px 0 120px; }
  .why .section-title { margin-bottom: 8px; }
  .why-grid { display: none; }
  .why-orbit {
    display: block;
    position: relative;
    width: min(860px, 100%);
    aspect-ratio: 1;
    margin: 96px auto 24px;
  }
  .why-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .why-core img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 18px hsl(220 20% 20% / .12)); }
  .why-orbit .why-card {
    position: absolute;
    width: 32%;
    transform: translate(-50%, -40px);
  }
  .why-pos-1 { left: 50%; top: -9.55%; }
  .why-pos-2 { left: 82.84%; top: 15.04%; }
  .why-pos-3 { left: 90.95%; top: 46.69%; }
  .why-pos-4 { left: 68.22%; top: 75.39%; }
  .why-pos-5 { left: 31.78%; top: 76.62%; }
  .why-pos-6 { left: 9.05%; top: 48.94%; }
  .why-pos-7 { left: 17.16%; top: 11.36%; }
}
@media (min-width: 1200px) {
  .why-orbit { width: min(980px, 100%); }
  .why-orbit .why-card { width: 28%; }
}

.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.article-card .cat { color: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.article-card h3 { margin: 8px 0; font-size: 18px; }
.article-card p { color: var(--muted-fg); font-size: 14px; }

.cta-band {
  background: var(--grad);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: 28px; margin-bottom: 8px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); }
.newsletter { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.newsletter input {
  width: min(360px, 70%); padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
}

.footer { background: #fff; padding: 48px 0 24px; position: relative; }
.footer::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--grad);
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer h4 { margin-bottom: 12px; color: var(--navy); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer a, .footer p { color: var(--muted-fg); display: block; margin: 6px 0; font-size: 14px; }
.footer a:hover { color: var(--primary); }
.copy { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--muted-fg); font-size: 13px; }

.page-head { padding: 28px 0 8px; }
.page-head h1 { font-size: 40px; font-weight: 800; }
.tabs { display: flex; justify-content: center; gap: 8px; margin: 8px 0 24px; }
.tab {
  padding: 10px 22px; border-radius: 12px; border: 1px solid var(--border); background: #fff; font-weight: 600; cursor: pointer;
}
.tab.active { background: var(--grad-btn); color: #fff; border-color: transparent; }
.cat-rail-wrap { display: block; margin-top: 4px; margin-bottom: 28px; }
.cat-rail {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.cat-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(7 20 39 / .04);
  scroll-snap-align: start;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}
.cat-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgb(29 78 216 / .12);
  transform: translateY(-1px);
}
.cat-card.is-on {
  background: var(--grad-btn);
  color: #fff;
  border-color: transparent;
}
.cat-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef3fb;
  color: var(--blue);
}
.cat-card.is-on .cat-card-icon { background: rgb(255 255 255 / .18); color: #fff; }
.cat-card-icon svg, .cat-card-icon i { width: 22px; height: 22px; display: block; }
.cat-card-icon img { width: 28px; height: 28px; object-fit: contain; }
.cat-card-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card-pin {
  position: sticky;
  left: 0;
  z-index: 2;
}
.cat-rail.is-overflow .cat-card-pin:not(.is-on) {
  box-shadow: 10px 0 16px #fff;
}
.cat-rail-viewport {
  flex: 1;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-rail-viewport::-webkit-scrollbar { display: none; }
.cat-rail-track {
  display: flex;
  gap: 12px;
  width: 100%;
  min-width: 100%;
}
.cat-rail.is-overflow .cat-rail-track { width: max-content; min-width: max-content; }
.cat-rail.is-overflow .cat-card {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  min-width: 112px;
  aspect-ratio: auto;
}
.cat-rail-btn {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgb(7 20 39 / .06);
}
.cat-rail-btn:disabled { opacity: .35; cursor: default; }
.cat-rail-btn[hidden] { display: none !important; }
.cat-rail-btn svg { width: 18px; height: 18px; display: block; }
.shop-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.shop-bar select { padding: 8px 12px; border: 1px solid var(--border); border-radius: 10px; background: #fff; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 24px 0 48px; }
.pdp-img { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: #eef2f7; }
.pdp-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pdp-gallery { display: grid; gap: 12px; }
.pdp-stage-wrap { position: relative; }
.pdp-stage {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #eef2f7;
  cursor: grab;
}
.pdp-stage::-webkit-scrollbar { display: none; }
.pdp-stage-slide {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.pdp-stage-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  pointer-events: none;
  background: #eef2f7;
}
.pdp-stage-slide.is-doc img {
  object-fit: contain;
  background: #f8fafc;
}
.pdp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(7, 20, 39, .12);
}
.pdp-nav svg { width: 18px; height: 18px; }
.pdp-prev { left: 10px; }
.pdp-next { right: 10px; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 0; }
.thumbs > * { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #f3f4f6; min-height: 72px; font-size: 11px; text-align: center; padding: 8px; color: var(--muted-fg); }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.size {
  padding: 10px 16px; border: 1px solid var(--border); border-radius: 10px; background: #fff; font-weight: 600;
}
.size.active { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 0 3px hsl(220 85% 45% / .15); }
.save { color: #16a34a; font-weight: 600; font-size: 14px; }
.qty-box { display: flex; align-items: center; gap: 10px; margin: 16px 0; }
.pdp-total { font-size: 22px; font-weight: 800; margin-top: 8px; color: var(--navy); }
.wish-form {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
}
.wish-heart {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid rgb(225 29 72 / .12);
  box-shadow: 0 6px 16px rgb(7 20 39 / .14);
  padding: 0;
  margin: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #e11d48;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  flex-shrink: 0;
  text-decoration: none;
  overflow: visible;
}
.wish-heart svg,
.wish-heart i {
  width: 16px !important;
  height: 16px !important;
  display: block;
  margin: 0;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  overflow: visible;
}
.wish-heart:hover { transform: scale(1.05); }
.wish-heart.is-on {
  background: #e11d48;
  border-color: #e11d48;
  color: #fff;
}
.wish-heart.is-on svg,
.wish-heart.is-on i { fill: currentColor; stroke: currentColor; }
.wish-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  width: 36px;
  height: 36px;
  pointer-events: auto;
}
.qty-box .wish-heart,
.qty-box .wish-form { width: 44px; height: 44px; }
.qty-box .wish-heart svg { width: 20px !important; height: 20px !important; }
.qty { display: flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.qty button { width: 40px; height: 44px; border: 0; background: #fff; cursor: pointer; }
.qty input { width: 48px; text-align: center; border: 0; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.table th, .table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.table th { background: #f8fafc; }
.points-note {
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  background: linear-gradient(180deg, color-mix(in srgb, var(--blue) 8%, #fff), #fff);
  border-radius: 12px; padding: 14px 16px; margin-top: 16px; font-weight: 600;
  color: var(--navy);
}
.tabs-text { display: flex; gap: 22px; border-bottom: 1px solid var(--border); margin: 32px 0 16px; }
.tabs-text a, .tabs-text button {
  padding: 10px 0; font-weight: 650; font-size: 14px; color: var(--muted-fg);
  background: none; border: 0; cursor: pointer; font: inherit; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs-text a.active, .tabs-text button.active { color: var(--navy); border-bottom-color: var(--blue); }
.prose { color: var(--foreground); }
.prose p, .prose li { margin: 10px 0; color: var(--muted-fg); }
.prose h2, .prose h3 { margin: 20px 0 8px; }
.prose img { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0; }

.cart-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; padding: 24px 0 48px; }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; background: #eef2f7; }
.summary { border: 1px solid var(--border); border-radius: 16px; padding: 20px; height: fit-content; }
.summary-row { display: flex; justify-content: space-between; margin: 8px 0; }
.summary-row.is-save, .summary-row.is-save span:last-child { color: #067647; }
.summary-row .is-free { color: #067647; font-weight: 700; }
.summary-row[hidden], .ticket-save[hidden] { display: none !important; }
.auth-box { max-width: 440px; margin: 40px auto 64px; border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.auth-tabs { display: flex; background: var(--muted); border-radius: 12px; padding: 4px; margin-bottom: 20px; }
.auth-tabs a { flex: 1; text-align: center; padding: 10px; border-radius: 10px; font-weight: 600; }
.auth-tabs a.active { background: #fff; box-shadow: 0 1px 4px rgb(0 0 0 / .06); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: #fff;
}
.flash { padding: 12px 16px; border-radius: 10px; margin: 12px 0; font-weight: 500; }
.flash.ok { background: #ecfdf5; color: #047857; }
.flash.error { background: #fef2f2; color: #b91c1c; }
.empty { text-align: center; padding: 64px 16px; }
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(7, 20, 39, .28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 130;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}
.modal-bg.open { display: flex; }
.modal { background: #fff; width: min(560px, 92%); border-radius: 16px; padding: 20px; }
.search-sheet {
  width: 100%;
  max-width: none;
  border-radius: 0 0 18px 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 18px 40px rgba(7, 20, 39, .12);
}
.search-sheet-bar { display: flex; align-items: center; gap: 8px; }
#search-input {
  width: 100%;
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.search-results { max-height: min(60vh, 420px); overflow: auto; margin-top: 12px; }
.search-hit { display: flex; gap: 12px; padding: 10px; border-radius: 10px; }
.search-hit:hover { background: var(--muted); }
.search-hit img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }

.cookie {
  position: fixed; inset: 0; background: rgb(17 24 39 / .45); z-index: 80;
  display: none; align-items: center; justify-content: center;
}
.cookie.open { display: flex; }
.cookie-card { background: #fff; width: min(400px, 92%); border-radius: 16px; padding: 28px; text-align: center; box-shadow: var(--shadow); }
.cookie-card h2 { margin: 8px 0; }
.cookie-card p { color: var(--muted-fg); font-size: 14px; margin-bottom: 16px; }

.faq details { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; background: #fff; }
.faq summary { font-weight: 700; cursor: pointer; }
.coa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.coa-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.account-nav { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.account-nav a { padding:8px 12px; border:1px solid var(--border); border-radius:10px; font-weight:600; font-size:14px; }
.account-nav a.active { background:var(--primary); color:#fff; border-color:var(--primary); }
.badge { font-size:12px; padding:3px 8px; border-radius:99px; background:#eef2ff; color:var(--primary); font-weight:700; }

select, .field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23475569' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
}
.header-actions select {
  height: 40px;
  min-width: 72px;
  padding: 0 32px 0 12px;
  font-size: 13px;
  border-radius: 10px;
}
.shop-bar select { height: 42px; min-width: 220px; }
input[type="text"], input[type="email"], input[type="search"], input[type="number"], input[type="password"], textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(220 85% 45% / .14);
}

.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  height: 44px;
  flex-shrink: 0;
}
.stepper button {
  width: 40px; height: 44px; border: 0; background: #fff; cursor: pointer;
  color: var(--foreground); font-size: 18px; line-height: 1;
}
.stepper button:hover { background: var(--muted); }
.stepper input {
  width: 44px; height: 44px; text-align: center; border: 0;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  border-radius: 0; padding: 0; font-weight: 700;
}
.icon-del {
  width: 40px; height: 40px; border: 0; background: transparent; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer; color: #94a3b8;
}
.icon-del svg { width: 18px; height: 18px; }
.icon-del:hover { background: #fef2f2; color: #dc2626; }

.pdp-stage-wrap { cursor: zoom-in; }
.pdp-stage-wrap::after {
  content: "";
  position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px;
  border-radius: 99px; background: #fff; border: 1px solid var(--border);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%231152d4' stroke-width='2'><circle cx='8' cy='8' r='6'/><path d='M13 13l4 4'/></svg>");
  background-repeat: no-repeat; background-position: center;
  pointer-events: none;
  z-index: 2;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.zoom-bg {
  position: fixed; inset: 0; background: rgb(15 23 42 / .72); z-index: 90;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.zoom-bg.open { display: flex; }
.zoom-bg img {
  max-width: min(920px, 94vw);
  max-height: 90vh;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
  opacity: 1;
  transition: opacity .28s ease;
}
.zoom-bg .zoom-x {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 99px;
  border: 0; background: #fff; cursor: pointer;
  display: grid; place-items: center; color: var(--navy);
}
.zoom-bg .zoom-x svg { width: 18px; height: 18px; }

.cart-drawer-bg {
  position: fixed; inset: 0; background: rgb(15 23 42 / .45); z-index: 70;
  display: none;
}
.cart-drawer-bg.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: #fff; z-index: 71; transform: translateX(100%);
  transition: transform .22s ease; display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgb(15 23 42 / .12);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 18px 20px 10px; border-bottom: 1px solid var(--border);
  position: relative;
}
.drawer-free {
  display: flex; align-items: center; gap: 8px; color: #16a34a; font-weight: 700; font-size: 14px;
  padding-bottom: 10px;
}
.drawer-free.off { color: var(--muted-fg); font-weight: 600; }
.drawer-items { flex: 1; overflow: auto; padding: 8px 20px 16px; }
.drawer-row {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.drawer-row img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; background: #eef2f7; }
.drawer-row h4 { font-size: 14px; line-height: 1.3; }
.drawer-row .muted { color: var(--muted-fg); font-size: 13px; }
.drawer-tools { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.drawer-upsell {
  border: 1px solid var(--border); border-radius: 12px; padding: 12px; margin: 14px 0;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 10px; align-items: center;
}
.drawer-upsell img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.drawer-upsell p { font-size: 12px; color: var(--muted-fg); }
.drawer-upsell h4 { font-size: 13px; }
.drawer-foot {
  padding: 16px 20px 22px; border-top: 1px solid var(--border); background: #fff;
}
.drawer-sub { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 12px; }
.drawer-sub.is-save { font-weight: 650; color: #067647; font-size: 13px; }
.drawer-empty { text-align: center; padding: 48px 16px; color: var(--muted-fg); }

.why { background: #fff; }
.coa-search {
  max-width: 520px; margin: 18px auto 28px; position: relative;
}
.coa-search input {
  width: 100%; padding: 12px 40px 12px 16px; border-radius: 999px; border: 1px solid var(--border);
}
.coa-pills { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.coa-pills button, .coa-pills span {
  background: color-mix(in srgb, var(--blue) 10%, #fff); color: var(--navy); padding: 8px 14px; border-radius: 99px;
  font-weight: 700; font-size: 13px; border: 0; cursor: pointer; font: inherit;
}
.coa-pills button.active { background: var(--primary); color: #fff; }
.coa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coa-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 18px; background: #fff;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.coa-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.coa-card .coa-title { color: var(--primary); font-weight: 700; margin-bottom: 12px; font-size: 14px; text-align: center; }
.coa-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.414;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}
.coa-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.coa-sheet { font-size: 11px; color: #334155; line-height: 1.45; min-height: 180px; }
.coa-sheet strong { color: #16a34a; }
.coa-verify { text-align: right; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--primary); }
.thumbs > * { padding: 0; }
.thumbs img { width: 100%; height: 80px; object-fit: cover; display: block; }
.thumbs .thumb-coa { min-height: 80px; font-size: 11px; text-align: center; color: var(--muted-fg); }
.thumbs .thumb-coa span { display: block; padding: 6px 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px;
}
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 10px; font-size: 14px; }
.review-card p { color: var(--foreground); font-size: 15px; line-height: 1.6; }
.review-card cite { display: block; margin-top: 14px; color: var(--muted-fg); font-style: normal; font-size: 13px; font-weight: 600; }

.pay-result { max-width: 640px; margin: 0 auto; padding: 56px 0 80px; text-align: center; }
.pay-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; font-size: 28px; font-weight: 700;
}
.pay-icon.ok { background: #ecfdf3; color: #067647; }
.pay-icon.bad { background: #fef3f2; color: #b42318; }
.pay-icon.wait { background: #fffaeb; color: #b54708; letter-spacing: 2px; }
.pay-lead { color: var(--muted-fg); font-size: 16px; line-height: 1.6; max-width: 480px; margin: 8px auto 0; }
.pay-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }

.checkout-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 4px;
}
.checkout-panel h3 { margin-bottom: 14px; }
.option-list { display: grid; gap: 10px; }
.option-card {
  display: grid;
  grid-template-columns: 18px 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.option-card:hover { border-color: hsl(220 85% 45% / .35); }
.option-card.is-selected,
.option-card:has(input:checked) {
  border-color: var(--primary);
  background: hsl(220 85% 45% / .05);
  box-shadow: 0 0 0 3px hsl(220 85% 45% / .12);
}
.option-card.is-disabled {
  cursor: default;
  opacity: .62;
  background: var(--muted);
  grid-template-columns: 18px 44px 1fr auto;
}
.option-card.is-disabled:hover { border-color: var(--border); }
.option-card input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; margin: 0; border-radius: 50%;
  border: 2px solid #cbd5e1; background: #fff; cursor: pointer;
}
.option-card input[type="radio"]:checked {
  border-color: var(--primary);
  background: radial-gradient(circle, var(--primary) 0 5px, #fff 6px);
}
.option-radio-off {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid #e2e8f0; background: #fff;
}
.option-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800; letter-spacing: .03em;
  background: #f1f5f9; color: #0f172a;
}
.option-ico svg { width: 20px; height: 20px; }
.option-ico.dhl { background: #ffcc00; color: #d40511; }
.option-ico.ups { background: #351c15; color: #ffb500; }
.option-ico.acs { background: #003399; color: #fff; }
.option-ico.cod { background: #ecfdf3; color: #067647; }
.option-ico.crypto { background: #eff6ff; color: #1d4ed8; }
.option-ico.card, .option-ico.bank { background: #f8fafc; color: #64748b; }
.option-copy { display: flex; flex-direction: column; min-width: 0; }
.option-copy strong { font-size: 14px; line-height: 1.3; }
.option-meta { color: var(--muted-fg); font-size: 12px; margin-top: 3px; }
.option-side { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.option-price.is-free { color: #067647; }
.option-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px;
  background: #ecfdf3; color: #067647; text-transform: uppercase; letter-spacing: .04em;
}
.option-badge.muted { background: #e2e8f0; color: #64748b; }
.pay-crypto-panel {
  display: none;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid #bfdbfe;
}
.pay-crypto-panel strong { display: block; font-size: 13px; color: #1d4ed8; margin-bottom: 6px; }
.pay-crypto-panel p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--foreground); }
.pay-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pay-chips span {
  font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 999px;
  background: #fff; border: 1px solid #bfdbfe; color: #1e3a8a;
}
.pay-wrap:has(input[value="crypto"]:checked) .pay-crypto-panel { display: block; }
.confirm-card {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #fed7aa;
  background: #fffbeb;
  border-radius: 14px;
  cursor: pointer;
}
.confirm-card input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.confirm-card span { display: flex; flex-direction: column; gap: 4px; font-size: 13px; line-height: 1.5; color: var(--foreground); }
.confirm-card em { font-style: normal; color: var(--muted-fg); font-size: 12px; }

.checkout-aside { position: sticky; top: 88px; }
.checkout-ticket {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 40px hsl(220 85% 45% / .08);
}
.ticket-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(180deg, hsl(220 85% 45% / .07), transparent);
}
.ticket-head h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.ticket-country {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  padding: 6px 10px; border-radius: 999px;
  background: #eff6ff; color: var(--primary); border: 1px solid #bfdbfe;
}
.ticket-items { padding: 0 14px 4px; display: grid; gap: 8px; }
.ticket-item {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 10px; align-items: center;
  padding: 8px; border-radius: 16px; background: #fff;
  border: 1px solid var(--border);
}
.ticket-item img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 12px; background: var(--muted);
}
.ticket-item strong { display: block; font-size: 13px; line-height: 1.3; }
.ticket-meta { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 12px; color: var(--muted-fg); }
.ticket-meta em {
  font-style: normal; font-weight: 700; font-size: 11px;
  padding: 2px 7px; border-radius: 999px;
  background: hsl(220 85% 45% / .08); color: var(--primary);
}
.ticket-item b { font-weight: 700; font-size: 13px; white-space: nowrap; }
.ticket-totals {
  margin: 10px 14px 0; padding: 10px 14px 6px;
  border-radius: 16px; background: var(--muted);
}
.ticket-totals .summary-row { margin: 8px 0; font-size: 13px; color: var(--muted-fg); align-items: center; gap: 10px; }
.ticket-totals .summary-row span:last-child { color: var(--foreground); font-weight: 600; }
.ticket-totals .summary-row.is-save,
.ticket-totals .summary-row.is-save span:last-child { color: #067647; }
.ticket-totals .summary-row.is-info,
.ticket-totals .summary-row.is-info span:last-child {
  color: var(--muted-fg); font-weight: 500; font-size: 12px;
}
.ticket-promo {
  display: inline-flex; align-items: center; max-width: 70%;
  padding: 3px 8px; border-radius: 999px;
  background: #ecfdf3; color: #067647; font-size: 12px; font-weight: 700;
}
.ticket-totals #ship-amt.is-free { color: #067647; font-weight: 700; }
.ticket-save {
  display: flex; justify-content: space-between; align-items: center;
  margin: 10px 14px 0; padding: 10px 14px;
  border-radius: 12px; background: #ecfdf3; color: #067647;
  font-size: 13px; font-weight: 600;
}
.ticket-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 10px 14px 0; padding: 14px 16px;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 22px rgba(7, 20, 39, 0.22);
}
.ticket-total span { font-size: 13px; font-weight: 600; opacity: .9; }
.ticket-total strong { font-size: 22px; letter-spacing: -.02em; }
.ticket-coupon-box {
  margin: 14px; padding: 12px;
  border: 1px dashed color-mix(in srgb, var(--blue) 35%, var(--border)); border-radius: 16px;
  background: color-mix(in srgb, var(--blue) 5%, #fff);
}
.ticket-coupon { display: flex; gap: 8px; }
.ticket-coupon input {
  flex: 1; min-width: 0; padding: 11px 12px;
  border: 1px solid var(--border); border-radius: 12px; background: #fff;
}
.ticket-coupon input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent); }

.notice {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 7%, #fff);
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--border));
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.55;
}
.notice p { margin: 0; }
.notice p + p { margin-top: 8px; }
.lede-muted { color: var(--muted-fg); margin-top: 8px; font-size: 14px; }

.thumbs .thumb {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--muted);
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: block;
}
.thumbs .thumb.is-on {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 30%, transparent);
}
.thumbs .thumb.is-doc img { object-fit: contain; background: #f8fafc; }
.thumbs .thumb-coa { cursor: zoom-in; }

.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 99px;
  background: #fff;
  color: var(--foreground);
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.zoom-nav svg { width: 22px; height: 22px; }
.zoom-prev { left: 18px; }
.zoom-next { right: 18px; }
.zoom-nav:hover { color: var(--primary); }
.zoom-count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(15 23 22 / .72);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.pdp-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted-fg);
  font-size: 14px;
  font-weight: 600;
}
.pdp-rating-link .stars { color: #c9a227; letter-spacing: 1px; }
.pdp-rating-link:hover { color: var(--primary); }

.pdp-reviews { margin-top: 8px; }
.review-summary {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 18px;
}
.review-avg { text-align: center; }
.review-avg-num { font-size: 42px; font-weight: 800; letter-spacing: -1px; color: var(--foreground); }
.review-avg .stars { color: #c9a227; font-size: 18px; letter-spacing: 2px; margin: 4px 0; }
.review-avg .muted, .review-avg p { color: var(--muted-fg); font-size: 13px; }
.review-bars { display: grid; gap: 8px; }
.review-bar-row { display: grid; grid-template-columns: 16px 1fr 28px; gap: 10px; align-items: center; font-size: 13px; color: var(--muted-fg); }
.review-bar { height: 8px; background: var(--muted); border-radius: 99px; overflow: hidden; }
.review-bar span { display: block; height: 100%; background: var(--primary); border-radius: 99px; }
.review-list { display: grid; gap: 12px; }
.review-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}
.review-item-head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 99px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--primary) 12%, #fff);
  color: var(--primary); font-weight: 800;
}
.review-item h4 { font-size: 15px; margin: 6px 0 4px; }
.review-item p { color: var(--muted-fg); font-size: 15px; line-height: 1.6; }
.review-item .stars { color: #c9a227; letter-spacing: 1px; font-size: 13px; }
.review-form {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.star-pick { display: flex; gap: 4px; }
.star-pick button {
  border: 0; background: transparent; cursor: pointer;
  font-size: 28px; line-height: 1; color: #d5e2df; padding: 0 2px;
}
.star-pick button.is-on { color: #c9a227; }

.reviews-grid .review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: none;
}
.hero h1 { font-weight: 750; letter-spacing: -1.2px; color: #fff; }
.feature { background: #fff; }
.product-img { background: #eef2f8; }
.reward-eq { font-weight: 700; color: var(--primary); }
.pdp-img { background: #eef2f8; }
.size.active { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 16%, transparent); }
.table tr.qty-tier.is-on td { background: color-mix(in srgb, var(--blue) 8%, #fff); font-weight: 700; color: var(--foreground); }
.cta-band .newsletter input {
  background: #fff;
  border-color: transparent;
}
.newsletter .btn-primary { min-width: 120px; }

.ticket-coupon .btn { flex-shrink: 0; }
.ticket-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ticket-chip {
  border: 1px solid #bfdbfe; background: #fff; color: #1e3a8a;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  padding: 5px 9px; border-radius: 999px; cursor: pointer;
}
.ticket-chip:hover { border-color: var(--primary); color: var(--primary); }


