/* Matbaa & Ofset — Ürün varyant sayfası */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f4f4f5;
  --elevated: #ffffff;
  --stripe: #f4f4f5;
  --fg: #18181b;
  --fg-secondary: #3f3f46;
  --muted: #71717a;
  --border: rgba(24, 24, 27, 0.08);
  --border-strong: rgba(24, 24, 27, 0.14);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 10px 28px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 8px 24px rgba(15, 23, 42, 0.10);
  --accent: #7c3aed;
  --accent-2: #6d28d9;
  --accent-soft: rgba(124, 58, 237, 0.10);
  --ring: rgba(124, 58, 237, 0.32);
  --success: #059669;
  --radius: 16px;
  --radius-lg: 20px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: 'Poppins', sans-serif; line-height: 1.6; overflow-x: hidden; }
body.dark-mode {
  color-scheme: dark;
  --bg: #09090b;
  --surface: #111113;
  --surface-2: #18181b;
  --elevated: #1c1c1f;
  --stripe: #18181b;
  --fg: #fafafa;
  --fg-secondary: #d4d4d8;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 40px rgba(0, 0, 0, 0.5);
  --accent: #8b5cf6;
  --accent-2: #7c3aed;
  --accent-soft: rgba(139, 92, 246, 0.16);
  --ring: rgba(139, 92, 246, 0.34);
  --success: #34d399;
}

/* Navigasyon Menüsü */
.main-header { background: var(--stripe); border-bottom: 1px solid var(--border); }
.header-content { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.logo a { color: var(--fg); text-decoration: none; font-size: 20px; font-weight: 700; }
.main-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 16px; }
.main-nav a { color: var(--muted); text-decoration: none; font-weight: 500; transition: color 0.2s; font-size: 0.95rem; }
.main-nav a:hover { color: var(--fg); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: var(--muted); padding: 12px 0; font-size: 13px; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--fg); }
.breadcrumbs .sep { opacity: 0.6; }

.product-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius); background: var(--surface-2); color: var(--fg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.product-head .product-title { margin: 0; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.15; font-weight: 800; color: var(--fg); letter-spacing: .1px; }
.product-head p { margin: 8px 0 0; color: var(--muted); font-size: 16px; }
.trust-list { display: flex; gap: 6px; flex-wrap: nowrap; justify-content: flex-end; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
.trust-list::-webkit-scrollbar { display: none; }
.trust-item { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); background: var(--surface); font-size: 11px; font-weight: 700; white-space: nowrap; flex: 0 0 auto; }
body.dark-mode .product-head { background: var(--surface); box-shadow: var(--shadow); }
body.dark-mode .trust-item { background: var(--surface-2); color: var(--muted); border-color: var(--border); }

.product-page { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; padding: 20px 0; }

.product-gallery { background: var(--stripe); border: 1px solid var(--border); border-radius: 18px; padding: 22px; }
.gallery-main { display: flex; align-items: center; justify-content: center; border: 1px dashed var(--border); border-radius: 14px; padding: 14px; background: var(--stripe); }
.gallery-main .main-image { max-width: 100%; max-height: 380px; object-fit: contain; border-radius: 12px; }
.thumbs { margin-top: 16px; display: flex; gap: 10px; }
.thumbs .thumb { padding: 10px 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--stripe); color: var(--fg); font-weight: 700; font-size: 13px; }
.thumbs .thumb.active {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  border-color: transparent;
  color: #fff;
}
.gallery-note { margin-top: 10px; color: var(--muted); font-size: 12px; }

.product-config { display: grid; gap: 14px; }
.config-card { background: var(--stripe); border: 1px solid var(--border); border-radius: 18px; padding: 24px; position: relative; }
.config-title { margin: 0 0 12px; font-size: 20px; letter-spacing: .2px; }
.cta-row { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 14px; font-weight: 800; letter-spacing: 0.2px; cursor: pointer; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease; }
.btn.primary { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; border: none; }
.btn.primary:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.btn.ghost { background: var(--stripe); color: var(--fg); border: 1px solid var(--border); }
.btn.ghost:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.25); transform: translateY(-1px); }
.shipping-info { margin-top: 8px; color: var(--muted); font-size: 12px; display: inline-flex; align-items: center; gap: 8px; }

.jg-wa-quote {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 10070;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #25d366 0%, #1ebe5a 100%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
  font-weight: 900;
  letter-spacing: 0.02em;
  transform: translateZ(0);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}
.jg-wa-quote:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
}
.jg-wa-quote:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.30), 0 22px 48px rgba(0,0,0,0.24);
}
.jg-wa-quote .jg-wa-ic {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  flex: 0 0 auto;
}
.jg-wa-quote .jg-wa-ic i { font-size: 18px; }
.jg-wa-quote .jg-wa-tx { font-size: 13px; line-height: 1.1; }
@media (max-width: 520px) {
  .jg-wa-quote {
    width: 72px;
    height: auto;
    padding: 10px 8px 8px;
    gap: 6px;
    justify-content: center;
    flex-direction: column;
    border-radius: 18px;
  }
  .jg-wa-quote .jg-wa-tx { display: block; font-size: 10px; line-height: 1.05; text-align: center; max-width: 64px; }
  .jg-wa-quote .jg-wa-ic { width: 40px; height: 40px; }
}

#jgSmartRecoMount:empty { display: none; }
#jgSmartRecoMount {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10060;
  pointer-events: none;
}
.jg-smart-ai {
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}
.jg-smart-ai-launcher,
.jg-smart-ai-panel { pointer-events: auto; }
.jg-smart-ai-launcher {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.jg-smart-ai-dock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.jg-smart-ai-bubble {
  position: relative;
  max-width: 240px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 34px rgba(15,23,42,0.14);
  cursor: pointer;
  animation: jgSmartAiBubbleIn 240ms ease, jgSmartAiFloat 3.2s ease-in-out infinite;
}
.jg-smart-ai-bubble::after {
  content: '';
  position: absolute;
  right: 26px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(148,163,184,0.18);
  border-bottom: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.94);
  transform: rotate(45deg);
}
.jg-smart-ai-bubble-title {
  font-size: 12px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.jg-smart-ai-bubble-copy {
  margin-top: 3px;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
.jg-smart-ai-bubble-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: none;
  background: rgba(15,23,42,0.06);
  color: #64748b;
  font-size: 16px;
  cursor: pointer;
}
.jg-smart-ai-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.32);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.jg-smart-ai-fab:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.4);
}
.jg-smart-ai-fab-text {
  display: none;
}
.jg-smart-ai-fab .jg-home-ai-launch-wa,
.jg-home-ai-launch-wa {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff, 0 6px 12px rgba(37, 211, 102, 0.35);
  pointer-events: none;
}
.jg-home-ai-launch-wa svg {
  display: block;
  width: 13px;
  height: 13px;
}
.jg-corner-jet {
  display: block;
  width: 26px;
  height: 26px;
  color: #fff;
}
.jg-home-ai-launch .jg-corner-jet {
  width: 16px;
  height: 16px;
}
.jg-home-ai .jg-home-ai-launch-wa {
  display: none !important;
}
.jg-corner-jet svg {
  display: block;
  width: 100%;
  height: 100%;
}
.jg-corner-wa {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.jg-corner-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.36);
}
.jg-corner-wa i,
.jg-corner-wa svg {
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 1;
  display: block;
}
.jg-smart-ai-avatar {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}
.jg-smart-ai-fab-text {
  display: grid;
  gap: 2px;
  text-align: left;
}
.jg-smart-ai-fab-title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}
.jg-smart-ai-fab-sub {
  font-size: 10px;
  font-weight: 700;
  color: rgba(226,232,240,0.84);
}
.jg-smart-ai-panel {
  width: min(332px, calc(100vw - 24px));
  max-height: min(62vh, 520px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(148,163,184,0.16);
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  box-shadow: 0 24px 54px rgba(15,23,42,0.18);
  padding: 14px;
  animation: jgSmartAiPanelIn 220ms ease;
}
.jg-smart-ai-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.jg-smart-ai-head-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jg-smart-ai-head-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(37,99,235,0.18);
}
.jg-smart-ai-head-title {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}
.jg-smart-ai-head-sub {
  margin-top: 2px;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.jg-smart-ai-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.8);
  color: #475569;
  font-size: 18px;
  cursor: pointer;
}
.jg-smart-ai-body {
  display: grid;
  gap: 10px;
}
.jg-smart-ai-stage {
  display: grid;
  gap: 8px;
  min-height: 0;
}
.jg-smart-ai-section {
  display: grid;
  gap: 12px;
}
.jg-smart-ai-section.is-active {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.16);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 26px rgba(15,23,42,0.06);
  animation: jgSmartAiFadeUp 220ms ease;
}
.jg-smart-ai-section-head {
  display: grid;
  gap: 6px;
}
.jg-smart-ai-section-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15,23,42,0.05);
  color: #475569;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.jg-smart-ai-question {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.jg-smart-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.jg-smart-reco-card {
  width: 100%;
  border: 1px solid rgba(148,163,184,0.16);
  background: rgba(248,250,252,0.96);
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.jg-smart-reco-card:hover {
  transform: translateY(-1px);
  border-color: rgba(37,99,235,0.24);
  box-shadow: 0 14px 28px rgba(15,23,42,0.08);
}
.jg-smart-reco-card.compact {
  min-height: 74px;
  padding: 14px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.jg-smart-reco-card-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.jg-smart-reco-card-copy {
  display: none;
}
.jg-smart-reco-card.active,
.jg-smart-reco-card.selected {
  border-color: rgba(37,99,235,0.34);
  background: rgba(239,246,255,0.92);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.jg-smart-ai-result {
  display: grid;
  gap: 12px;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  animation: jgSmartAiFadeUp 240ms ease;
}
.jg-smart-ai-result-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.05);
  color: #334155;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.jg-smart-ai-result-title {
  margin: 10px 0 0;
  color: #0f172a;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
}
.jg-smart-ai-result-copy {
  margin: 8px 0 0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.jg-smart-ai-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
.jg-smart-ai-point {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}
.jg-smart-ai-point::before {
  content: '✔';
  color: #16a34a;
  font-weight: 900;
}
.jg-smart-ai-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.jg-smart-ai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.jg-smart-ai-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37,99,235,0.24);
}
.jg-smart-ai-btn.ghost {
  background: rgba(255,255,255,0.82);
  color: #0f172a;
  border-color: rgba(148,163,184,0.20);
}
.jg-smart-ai-btn.subtle {
  grid-column: 1 / -1;
}
.jg-smart-ai-helper {
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}
@keyframes jgSmartAiPanelIn {
  0% { opacity: 0; transform: translateY(10px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes jgSmartAiBubbleIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes jgSmartAiFadeUp {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes jgSmartAiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes jgRecoScrollFlash {
  0% { background: rgba(168,85,247,0.32); }
  100% { background: transparent; }
}
.stripe.jg-reco-highlight {
  border-color: rgba(37,99,235,0.42);
  box-shadow: 0 0 0 5px rgba(37,99,235,0.10), 0 22px 45px rgba(15,23,42,0.16);
  transform: translateY(-2px);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.stripe.jg-reco-scroll-flash {
  animation: jgRecoScrollFlash 1s ease;
}
body.dark-mode .jg-smart-ai-bubble,
body.dark-mode .jg-smart-ai-bubble::after,
body.dark-mode .jg-smart-ai-panel,
body.dark-mode .jg-smart-ai-section.is-active,
body.dark-mode .jg-smart-reco-card,
body.dark-mode .jg-smart-ai-result,
body.dark-mode .jg-smart-ai-point,
body.dark-mode .jg-smart-ai-btn.ghost,
body.dark-mode .jg-smart-ai-close {
  background: rgba(15,23,42,0.96);
  border-color: rgba(255,255,255,0.10);
}
body.dark-mode .jg-smart-ai-bubble-title,
body.dark-mode .jg-smart-ai-head-title,
body.dark-mode .jg-smart-ai-question,
body.dark-mode .jg-smart-reco-card,
body.dark-mode .jg-smart-ai-result-badge,
body.dark-mode .jg-smart-ai-result-title,
body.dark-mode .jg-smart-ai-point,
body.dark-mode .jg-smart-ai-btn.ghost { color: #f8fafc; }
body.dark-mode .jg-smart-ai-bubble-copy,
body.dark-mode .jg-smart-ai-head-sub,
body.dark-mode .jg-smart-reco-card-copy,
body.dark-mode .jg-smart-ai-result-copy,
body.dark-mode .jg-smart-ai-fab-sub { color: #cbd5e1; }
body.dark-mode .jg-smart-ai-section-kicker { color: #93c5fd; }
body.dark-mode .jg-smart-reco-card.active {
  background: rgba(37,99,235,0.22);
  border-color: rgba(96,165,250,0.42);
}
body.dark-mode .jg-smart-reco-card.selected {
  background: rgba(59,130,246,0.28);
  border-color: rgba(147,197,253,0.52);
}
body.dark-mode .stripe.jg-reco-highlight {
  border-color: rgba(96,165,250,0.46);
  box-shadow: 0 0 0 5px rgba(96,165,250,0.12), 0 22px 45px rgba(0,0,0,0.32);
}
body.dark-mode .stripe.jg-reco-scroll-flash {
  animation: jgRecoScrollFlash 1s ease;
}

.stripes { display: grid; gap: 14px; padding: 4px 0 0; }
/* CTA + bounce scroll arrows (shared) */
.jg-cta-with-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.jg-cta-with-arrows > .choose-btn,
.jg-cta-with-arrows > .jg-discovery-mini-btn {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}
/* Discovery summary primary CTA: don't let bounce arrows squeeze label text */
.jg-discovery-summary-cta-arrows {
  justify-content: center;
  width: 100%;
  gap: 4px;
}
.jg-discovery-summary-cta-arrows > .jg-discovery-mini-btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}
.jg-discovery-summary-cta-arrows > .jg-cta-bounce-arrow {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}
.jg-cta-bounce-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #7c3aed;
  opacity: 0.92;
  animation: jg-cta-arrow-bounce 1.6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.jg-cta-bounce-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes jg-cta-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(5px); }
  70% { transform: translateY(0); }
}
body.dark-mode .jg-cta-bounce-arrow {
  color: #a78bfa;
}

/* VIP premium feature card (kartvizit) */
.jg-vip-feature-card {
  --jg-vip-card-bg: linear-gradient(155deg, #faf5ff 0%, #f3e8ff 48%, #ede9fe 100%);
  --jg-vip-card-bg-hover: linear-gradient(155deg, #f5f3ff 0%, #ede9fe 42%, #e9d5ff 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: 6px 0 12px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 20px;
  background: var(--jg-vip-card-bg);
  box-shadow: 0 2px 4px rgba(91, 33, 182, 0.04), 0 10px 28px rgba(109, 40, 217, 0.10);
  color: var(--fg);
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 300ms ease,
    transform 300ms ease,
    box-shadow 250ms ease,
    background 250ms ease,
    border-color 250ms ease;
  box-sizing: border-box;
}
.jg-vip-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 38%, transparent 68%);
  pointer-events: none;
}
.jg-vip-feature-card > * {
  position: relative;
  z-index: 1;
}
.jg-vip-feature-card--visible {
  opacity: 1;
  transform: translateY(0);
}
.jg-vip-feature-card:hover,
.jg-vip-feature-card:focus-visible {
  background: var(--jg-vip-card-bg-hover);
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 4px 8px rgba(91, 33, 182, 0.06), 0 16px 36px rgba(109, 40, 217, 0.16);
  transform: translateY(-3px);
  outline: none;
}
.jg-vip-feature-card:focus-visible {
  box-shadow:
    0 0 0 3px var(--ring),
    0 4px 8px rgba(91, 33, 182, 0.06),
    0 16px 36px rgba(109, 40, 217, 0.16);
}
.jg-vip-feature-card:hover .jg-vip-feature-card__cta-arrow,
.jg-vip-feature-card:focus-visible .jg-vip-feature-card__cta-arrow {
  transform: translateX(4px);
}
.jg-vip-feature-card__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.jg-vip-feature-card__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.jg-vip-feature-card__icon {
  flex: 0 0 auto;
  font-size: 1.05em;
  line-height: 1;
}
.jg-vip-feature-card__title-text {
  min-width: 0;
}
.jg-vip-feature-card__desc {
  display: block;
  max-width: 34em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}
.jg-vip-feature-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-2);
  letter-spacing: 0.01em;
}
.jg-vip-feature-card__cta-arrow {
  display: inline-block;
  transition: transform 220ms ease;
}
body.dark-mode .jg-vip-feature-card {
  --jg-vip-card-bg: linear-gradient(155deg, #1a1428 0%, #1e1633 48%, #22183a 100%);
  --jg-vip-card-bg-hover: linear-gradient(155deg, #211836 0%, #261c40 42%, #2a1f48 100%);
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 12px 32px rgba(109, 40, 217, 0.18);
  color: var(--fg);
}
body.dark-mode .jg-vip-feature-card::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
}
body.dark-mode .jg-vip-feature-card:hover,
body.dark-mode .jg-vip-feature-card:focus-visible {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 18px 40px rgba(109, 40, 217, 0.26);
}
body.dark-mode .jg-vip-feature-card__cta {
  color: #c4b5fd;
}

@media (prefers-reduced-motion: reduce) {
  .jg-cta-bounce-arrow { animation: none; }
  .jg-discovery-select-expand { animation: none; }
  .jg-vip-feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .jg-vip-feature-card--visible:hover,
  .jg-vip-feature-card--visible:focus-visible {
    transform: none;
  }
  .jg-vip-feature-card__cta-arrow {
    transition: none;
  }
}
@media (max-width: 560px) {
  .jg-cta-with-arrows {
    gap: 6px;
  }
  .jg-cta-bounce-arrow {
    width: 16px;
    height: 16px;
  }
  .jg-vip-feature-card {
    gap: 7px;
    padding: 20px 16px 16px;
    border-radius: 18px;
  }
  .jg-vip-feature-card__title {
    font-size: 15.5px;
    gap: 7px;
  }
  .jg-vip-feature-card__desc {
    font-size: 11.5px;
  }
  .jg-vip-feature-card__cta {
    font-size: 12.5px;
  }
}

.jg-howto-section {
  display: grid;
  gap: 8px;
  padding: 2px 0 8px;
}
.jg-howto-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.jg-howto-tab {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  min-height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 4px 12px rgba(15,23,42,0.05);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}
.jg-howto-tab:hover {
  transform: translateY(-1px);
}
.jg-howto-tab.is-active {
  border-color: rgba(124,58,237,0.24);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 14px rgba(15,23,42,0.07);
}
.jg-howto-tab-main {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.jg-howto-tab-title {
  color: var(--fg);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1;
}
.jg-howto-tab-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
.jg-howto-tab-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 9px;
}
.jg-howto-tab-arrow {
  width: 12px;
  height: 12px;
  color: var(--muted);
  opacity: 0.92;
  transition: transform 160ms ease, color 160ms ease;
}
.jg-howto-tab.is-active .jg-howto-tab-arrow {
  color: #7c3aed;
  transform: rotate(180deg);
}
.jg-howto-tab-arrow svg {
  width: 12px;
  height: 12px;
  display: block;
}
.jg-howto-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.jg-howto-row > .stripe {
  width: 100%;
}
.jg-howto-row > .stripe[hidden] {
  display: none !important;
}
#jgVariantInfoCard { grid-column: 1; }
#jgReviewsPreviewCard { grid-column: 2; }
body.dark-mode .jg-howto-head {
  box-shadow: var(--shadow);
  background: var(--surface);
  border-color: var(--border);
}
body.dark-mode .jg-howto-tab {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--fg);
}
body.dark-mode .jg-howto-tab.is-active {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  background: var(--elevated);
  color: var(--fg);
}
@media (max-width: 920px) {
  .jg-howto-head { grid-template-columns: 1fr; }
  .jg-howto-row { grid-template-columns: 1fr; }
  #jgVariantInfoCard,
  #jgReviewsPreviewCard { grid-column: auto; }
}
.stripe { display: grid; grid-template-columns: 1.15fr 1fr; gap: 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.stripe h2 { margin: 0 0 8px; font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; letter-spacing: 0.2px; position: relative; }
body.dark-mode .stripe { background: var(--surface); }

.stripe.jg-info-stripe { grid-template-columns: 1fr; cursor: default; }
.stripe.jg-info-stripe {
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 280px;
}
.stripe.jg-info-stripe .right-col { display: flex; flex-direction: column; justify-content: flex-start; gap: 10px; }
.stripe.jg-info-stripe .jg-info-steps { margin-top: -2px; font-weight: 900; font-size: 12px; color: var(--muted); }
.stripe.jg-info-stripe .jg-info-fileline { font-weight: 900; font-size: 13px; color: var(--fg); }
.stripe.jg-info-stripe .jg-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
.stripe.jg-info-stripe .jg-info-item { display: grid; grid-template-columns: 40px 1fr; gap: 10px; align-items: start; padding: 12px 12px; border-radius: 14px; border: 1px solid rgba(15,23,42,0.10); background: rgba(15,23,42,0.03); }
.stripe.jg-info-stripe .jg-info-ic { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(37,99,235,0.10); font-size: 18px; }
.stripe.jg-info-stripe .jg-info-title { font-weight: 900; font-size: 14px; color: var(--fg); line-height: 1.2; }
.stripe.jg-info-stripe .jg-info-sub { margin-top: 4px; font-weight: 800; font-size: 12px; color: var(--muted); line-height: 1.25; }
.stripe.jg-info-stripe .jg-info-sub.jg-info-sub-btn { font-weight: 800; font-size: 12px; color: var(--muted); }
.stripe.jg-info-stripe .jg-info-mini-cta { margin-top: 2px; border-radius: 12px; padding: 8px 10px; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; text-align: center; box-shadow: 0 10px 22px rgba(37,99,235,0.16); }
.stripe.jg-info-stripe .jg-info-mini-cta-pre { font-size: 11px; font-weight: 900; line-height: 1.1; opacity: 0.95; }
.stripe.jg-info-stripe .jg-info-mini-cta-main { margin-top: 3px; font-size: 12px; font-weight: 900; line-height: 1.12; }
.stripe.jg-info-stripe .jg-info-mini-choose.choose-btn { margin-top: 2px; padding: 10px 12px; border-radius: 12px; font-size: 13px; letter-spacing: 0.1px; pointer-events: none; box-shadow: 0 10px 22px rgba(37,99,235,0.16); }
.stripe.jg-info-stripe .jg-info-mini-choose.choose-btn .jg-cta-pre { font-size: 11px; margin-bottom: 3px; }
.stripe.jg-info-stripe .jg-info-mini-choose.choose-btn .jg-cta-main { font-size: 12px; }
.stripe.jg-info-stripe .jg-info-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 2px; }
.stripe.jg-info-stripe .jg-info-check { padding: 10px 12px; border-radius: 12px; border: 1px dashed rgba(15,23,42,0.14); background: rgba(255,255,255,0.70); font-weight: 900; font-size: 12px; color: var(--fg); }
.stripe.jg-info-stripe .jg-info-campaign { margin-top: 2px; padding: 14px 14px; border-radius: 16px; border: 1px solid rgba(37,99,235,0.22); background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(29,78,216,0.06)); }
.stripe.jg-info-stripe .jg-info-campaign-title { font-weight: 900; font-size: 15px; color: var(--fg); }
.stripe.jg-info-stripe .jg-info-campaign-sub { margin-top: 6px; font-weight: 800; font-size: 13px; color: var(--muted); line-height: 1.35; }
.stripe.jg-info-stripe .jg-info-campaign-cta { margin-top: 10px; width: 100%; border: 0; border-radius: 14px; padding: 12px 14px; cursor: pointer; font-weight: 900; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; box-shadow: 0 10px 22px rgba(37,99,235,0.18); }
.stripe.jg-info-stripe .jg-info-campaign-cta:hover { box-shadow: 0 12px 26px rgba(37,99,235,0.22); filter: brightness(1.01); }
.stripe.jg-info-stripe .jg-info-guide-preview { margin-top: 10px; display: grid; gap: 8px; }
.stripe.jg-info-stripe .jg-info-guide-preview-label { font-weight: 900; font-size: 12px; color: var(--muted); }
.stripe.jg-info-stripe .jg-info-guide-preview-imgwrap { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid rgba(15,23,42,0.12); background: rgba(255,255,255,0.7); cursor: zoom-in; }
.stripe.jg-info-stripe .jg-info-guide-preview-img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; filter: saturate(1.02); }
.stripe.jg-info-stripe .jg-info-guide-preview-zoom { position: absolute; right: 10px; bottom: 10px; padding: 8px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.22); background: rgba(0,0,0,0.55); color: #fff; font-weight: 900; font-size: 12px; }
body.dark-mode .stripe.jg-info-stripe .jg-info-guide-preview-imgwrap { border-color: var(--border); background: var(--surface-2); }
.stripe.jg-info-stripe .jg-info-foot { margin-top: 2px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.stripe.jg-info-stripe .jg-info-trust { flex: 1 1 240px; font-weight: 900; font-size: 12px; color: var(--muted); line-height: 1.4; }
.stripe.jg-info-stripe .jg-info-guide-btn { flex: 0 0 auto; border: 1px solid rgba(37,99,235,0.35); background: rgba(37,99,235,0.10); color: var(--fg); border-radius: 999px; padding: 10px 12px; font-weight: 900; cursor: pointer; }
.stripe.jg-info-stripe .jg-info-guide-btn:hover { background: rgba(37,99,235,0.16); }
body.dark-mode .stripe.jg-info-stripe .jg-info-item { border-color: var(--border); background: var(--surface-2); }
body.dark-mode .stripe.jg-info-stripe .jg-info-ic { background: var(--accent-soft); color: var(--accent); }
body.dark-mode .stripe.jg-info-stripe .jg-info-check { border-color: var(--border); background: var(--surface-2); color: var(--fg-secondary); }
body.dark-mode .stripe.jg-info-stripe .jg-info-campaign { border-color: var(--border); background: var(--elevated); }
body.dark-mode .stripe.jg-info-stripe .jg-info-guide-btn { border-color: var(--border); background: var(--surface-2); color: var(--fg); }
.jg-reviews-preview-card .right-col { gap: 12px; }
.jg-reviews-preview-head { display: grid; gap: 8px; }
.jg-reviews-preview-summary { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.jg-reviews-preview-stars { display: inline-flex; align-items: center; gap: 4px; color: #f59e0b; font-size: 14px; }
.jg-reviews-preview-meta { color: #475569; font-size: 13px; font-weight: 800; }
.jg-reviews-preview-list { display: grid; gap: 10px; }
.jg-reviews-preview-item {
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}
.jg-reviews-preview-item-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.jg-reviews-preview-name { color: #0f172a; font-size: 13px; font-weight: 900; }
.jg-reviews-preview-item-stars { display: inline-flex; align-items: center; gap: 3px; color: #f59e0b; font-size: 12px; }
.jg-reviews-preview-text {
  margin-top: 8px;
  color: #475569;
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jg-reviews-preview-actions { display: flex; justify-content: flex-start; }
body.dark-mode .jg-reviews-preview-meta,
body.dark-mode .jg-reviews-preview-text { color: #cbd5e1; }
body.dark-mode .jg-reviews-preview-name { color: #f8fafc; }
body.dark-mode .jg-reviews-preview-item {
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}
@media (max-width: 560px) {
  .stripe.jg-info-stripe .jg-info-grid { grid-template-columns: 1fr; }
  .stripe.jg-info-stripe .jg-info-checks { grid-template-columns: 1fr; }
}

.jg-unified-area {
  display: grid;
  gap: 12px;
  padding: 8px 0 14px;
}
.jg-unified-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
}
.jg-unified-tab {
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease;
}
.jg-unified-tab:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
  box-shadow: 0 10px 22px rgba(15,23,42,0.10);
}
.jg-unified-tab.is-active {
  background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
  border-color: rgba(139,92,246,0.20);
  color: #fff;
  box-shadow: 0 12px 26px rgba(109,40,217,0.22);
}
.jg-unified-panels {
  display: grid;
  gap: 12px;
}
.jg-unified-panel {
  display: none;
}
.jg-unified-panel.is-open {
  display: block;
}
.jg-templates-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
}
.jg-templates-embed iframe {
  width: 100%;
  height: 1200px;
  border: 0;
  display: block;
  background: transparent;
}
body.dark-mode .jg-unified-bar,
body.dark-mode .jg-templates-embed {
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 48px rgba(0,0,0,0.44);
}
body.dark-mode .jg-unified-tab {
  border-color: rgba(148,163,184,0.22);
  background: rgba(255,255,255,0.06);
  color: rgba(248,250,252,0.92);
  box-shadow: none;
}
body.dark-mode .jg-unified-tab:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
}

.jg-stripe-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.jg-stripe-title {
  color: #0f172a;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.1;
}
.jg-stripe-copy {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.is-kartvizit-product .stripes {
  gap: 16px;
  align-items: start;
}
.is-kartvizit-product .jg-kartvizit-stripe {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.07);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.is-kartvizit-product .jg-kartvizit-stripe:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15,23,42,0.12);
  border-color: rgba(96,165,250,0.18);
}
.is-kartvizit-product .jg-kartvizit-stripe .left-col {
  min-width: 0;
}
.is-kartvizit-product .jg-kartvizit-stripe .left-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
.is-kartvizit-product .jg-kartvizit-stripe .photo-stack {
  min-height: 196px;
  gap: 6px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248,250,252,0.92), rgba(255,255,255,0.98));
  border: 0;
}
.is-kartvizit-product .jg-kartvizit-stripe .stripe-photo {
  width: 100%;
  max-height: 196px;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  padding: 10px 12px;
}
.is-kartvizit-product .jg-kartvizit-stripe .variant-group {
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.is-kartvizit-product .jg-kartvizit-stripe .variant-group .btn {
  padding: 9px 10px;
  border-radius: 12px;
  font-size: 12px;
  min-height: 38px;
  background: rgba(15,23,42,0.04);
  border: 1px solid transparent;
  box-shadow: none;
}
.is-matbaa-ofset-variant-product .jg-kartvizit-stripe.jg-zarf-window-modes .variant-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.jg-zarf-window-label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 2px 0 0;
}
body.dark-mode .jg-zarf-window-label { color: #cbd5e1; }
.is-matbaa-ofset-variant-product .jg-zarf-window-btn {
  min-height: 42px;
  font-size: 13px;
  font-weight: 800;
}
.is-kartvizit-product .jg-kartvizit-stripe .variant-icons {
  display: none;
}
.is-kartvizit-product .jg-kartvizit-stripe .right-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-card-variant-box {
  order: 2;
}
.is-kartvizit-product .jg-kartvizit-stripe .qty-title {
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 18px;
  line-height: 1.2;
}
.is-kartvizit-product .jg-kartvizit-stripe .kv100-same-note {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-kicker {
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 900;
  background: rgba(37,99,235,0.10);
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(37,99,235,0.08);
  color: #1d4ed8;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-title {
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.08;
  color: #0f172a;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-copy {
  font-size: 13px;
  line-height: 1.4;
  color: #475569;
  min-height: 20px;
}
.is-kartvizit-product .jg-kartvizit-stripe .qty-row,
.is-kartvizit-product .jg-kartvizit-stripe .qty-row.no-label,
.is-kartvizit-product .jg-kartvizit-stripe .qty-row.grid-only {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 0;
}
.is-kartvizit-product .jg-kartvizit-stripe .qty-select,
.is-kartvizit-product .jg-kartvizit-stripe .qty-input {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 12px;
  background: rgba(15,23,42,0.04);
  border: 1px solid transparent;
  box-shadow: none;
}
.is-kartvizit-product .jg-kartvizit-stripe .qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-grid {
  gap: 8px;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-item {
  padding: 11px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(15,23,42,0.04);
  box-shadow: none;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-item .adet {
  font-size: 12px;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-item .fiyat {
  font-size: 11px;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-box {
  padding: 4px 0 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: 0;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-box.red,
.is-kartvizit-product .jg-kartvizit-stripe .price-box.green,
.is-kartvizit-product .jg-kartvizit-stripe .price-box.kv100-free {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-value {
  font-size: 24px;
  line-height: 1;
  color: #0f172a;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-note {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  color: #94a3b8;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-discount-meta {
  margin-top: 6px;
  padding: 0;
  font-size: 11px;
  border: 0;
  background: transparent;
  color: #2563eb;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-price-badge {
  top: -2px;
  right: 0;
  padding: 5px 8px;
  font-size: 10px;
  max-width: 150px;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-kv100-under-price {
  margin-top: 4px;
  padding: 7px 8px;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-kv100-under-price .t1,
.is-kartvizit-product .jg-kartvizit-stripe .jg-kv100-under-price .t2 {
  font-size: 10px;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-trust-line { margin-top: 6px; }
.is-kartvizit-product .jg-kartvizit-stripe .jg-trust-item { font-size: 10px; padding: 5px 8px; }
.is-kartvizit-product .jg-kartvizit-stripe .jg-price-stack {
  display: grid;
  gap: 4px;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-price-main {
  font-size: inherit;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-price-meta {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-price-old {
  font-size: 11px;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-detail-toggle {
  padding: 4px 8px;
  font-size: 11px;
}
.is-kartvizit-product .jg-kartvizit-stripe .price-header {
  align-items: flex-start;
}
.is-kartvizit-product .jg-kartvizit-stripe .features-panel.inline {
  margin-top: 0;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.4;
  border: 0;
  background: rgba(15,23,42,0.035);
  color: #64748b;
}
.is-kartvizit-product .jg-kartvizit-stripe .lead-time-row {
  margin-top: 6px;
  justify-content: flex-start;
}
.is-kartvizit-product .jg-kartvizit-stripe .lead-time {
  font-size: 11px;
}
.is-kartvizit-product .jg-kartvizit-stripe .cta-row {
  margin-top: 6px;
  gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
}
.is-kartvizit-product .jg-kartvizit-stripe .choose-btn,
.is-kartvizit-product .jg-kartvizit-stripe .upload-btn {
  min-height: 40px;
  margin-top: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}
.is-kartvizit-product .jg-kartvizit-stripe .choose-btn {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37,99,235,0.22);
}
.is-kartvizit-product .jg-kartvizit-stripe .choose-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(37,99,235,0.26);
}
.is-kartvizit-product .jg-kartvizit-stripe .upload-btn {
  background: rgba(15,23,42,0.04);
  border: 0;
  color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.14);
}
.is-kartvizit-product .jg-kartvizit-stripe .upload-btn:hover {
  background: rgba(15,23,42,0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15,23,42,0.08);
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-card-detail-toggle {
  order: 7;
  width: fit-content;
  padding: 0;
  margin-top: 2px;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  opacity: 0.9;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-card-detail-wrap {
  display: grid;
  gap: 6px;
}
.is-kartvizit-product .jg-kartvizit-stripe .qty-title { order: 1; }
.is-kartvizit-product .jg-kartvizit-stripe .variant-group { order: 2; }
.is-kartvizit-product .jg-kartvizit-stripe .qty-row { order: 3; }
.is-kartvizit-product .jg-kartvizit-stripe .price-box { order: 4; }
.is-kartvizit-product .jg-kartvizit-stripe .jg-vip-promo-box { order: 5; }
.is-kartvizit-product .jg-kartvizit-stripe .cta-row { order: 6; margin-top: 4px; }
.is-kartvizit-product .jg-kartvizit-stripe .jg-card-detail-wrap { order: 8; }
.is-kartvizit-product .jg-kartvizit-stripe[data-jg-reco-target="premium"] .photo-stack {
  min-height: 212px;
}
.is-kartvizit-product .jg-kartvizit-stripe[data-jg-reco-target="premium"] .jg-stripe-kicker {
  background: linear-gradient(180deg, rgba(217,119,6,0.16), rgba(180,83,9,0.12));
  color: #92400e;
  box-shadow: inset 0 0 0 1px rgba(217,119,6,0.12);
}
.is-kartvizit-product .jg-kartvizit-stripe[data-jg-reco-target="professional"] .photo-stack {
  min-height: 200px;
}
.is-kartvizit-product .jg-kartvizit-stripe[data-jg-reco-target="economic"] {
  gap: 12px;
}
.is-kartvizit-product .jg-kartvizit-stripe[data-jg-reco-target="economic"] .photo-stack {
  min-height: 184px;
}
.is-kartvizit-product .jg-kartvizit-stripe[data-jg-reco-target="economic"] .jg-stripe-copy {
  max-width: 30ch;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-card-detail-toggle:hover {
  color: #334155;
  opacity: 1;
}
.is-kartvizit-product .jg-kartvizit-stripe .jg-card-detail-toggle:focus-visible {
  outline: none;
  color: #1d4ed8;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.10);
  border-radius: 6px;
}
.is-kartvizit-product .jg-kartvizit-stripe .kv100-photo-badge {
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  font-size: 10px;
}
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .photo-stack {
  min-height: 204px;
}
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-title {
  font-size: clamp(21px, 2vw, 24px);
}
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-subtitle,
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-callout {
  font-size: 12px;
}
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-callout {
  display: none;
}
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-trust {
  margin-top: -2px;
  gap: 6px;
}
.is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-trust-item {
  padding: 0;
  font-size: 11px;
  border: 0;
  background: transparent;
  color: #808080;
  font-weight: 700;
}
html.is-kartvizit-product .jg-kartvizit-stripe.jg-founder-metal,
body.jg-kv-page .stripe.jg-discovery-card.jg-founder-metal {
  background: linear-gradient(180deg, #f3e6d4 0%, #e7d3b8 100%);
  border-color: rgba(120, 82, 46, 0.22);
  box-shadow: 0 10px 26px rgba(92, 58, 28, 0.10);
}
html.is-kartvizit-product .jg-kartvizit-stripe.jg-founder-metal:hover,
body.jg-kv-page .stripe.jg-discovery-card.jg-founder-metal:hover {
  border-color: rgba(120, 82, 46, 0.32);
  box-shadow: 0 16px 36px rgba(92, 58, 28, 0.14);
}
body.jg-kv-page .stripe.jg-discovery-card.jg-founder-metal.is-selected,
body.jg-kv-page .stripe.jg-discovery-card.jg-founder-metal.is-expanded {
  border-color: rgba(146, 96, 48, 0.55);
  box-shadow:
    0 0 0 3px rgba(180, 122, 64, 0.18),
    0 14px 32px rgba(92, 58, 28, 0.14);
}
.jg-founder-metal .jg-discovery-mini-btn.is-primary,
.jg-founder-metal .choose-btn {
  background: linear-gradient(180deg, #6b4423, #5a3819) !important;
  border-color: #4a2e12 !important;
  color: #f8efe4 !important;
}
.jg-founder-modal {
  position: fixed;
  inset: 0;
  z-index: 6200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.jg-founder-modal[hidden] { display: none !important; }
.jg-founder-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 10, 0.46);
}
.jg-founder-modal__panel {
  position: relative;
  width: min(520px, calc(100vw - 24px));
  max-height: min(88vh, 720px);
  overflow: auto;
  margin: 16px;
  background: #f7efe4;
  color: #2a1c12;
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: 0 24px 60px rgba(42, 28, 18, 0.28);
  z-index: 1;
}
.jg-founder-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 28, 18, 0.08);
  color: #2a1c12;
  font-size: 22px;
  cursor: pointer;
}
.jg-founder-modal__kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5a2b;
}
.jg-founder-modal h3 {
  margin: 6px 0 8px;
  font-size: 1.35rem;
}
.jg-founder-modal__lead {
  margin: 0 0 14px;
  color: #5c4633;
  font-size: 0.92rem;
  line-height: 1.45;
}
.jg-founder-form {
  display: grid;
  gap: 10px;
}
.jg-founder-field {
  display: grid;
  gap: 5px;
  font-weight: 700;
  font-size: 0.86rem;
}
.jg-founder-field em { font-weight: 600; color: #7a624c; font-style: normal; }
.jg-founder-field input,
.jg-founder-field select,
.jg-founder-field textarea {
  width: 100%;
  border: 1px solid rgba(90, 56, 25, 0.22);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fffdf8;
  color: #2a1c12;
}
.jg-founder-form__note {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: #6b5340;
  font-weight: 600;
}
.jg-founder-form__error {
  color: #b42318;
  font-weight: 700;
  font-size: 0.86rem;
}
.jg-founder-form__submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(180deg, #6b4423, #5a3819);
  color: #f8efe4;
  font-weight: 800;
  cursor: pointer;
}
.jg-founder-form__done {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(22, 101, 52, 0.1);
  color: #166534;
  font-weight: 700;
}
.jg-discovery-summary-founder-col .jg-discovery-summary-campaign-note strong {
  color: #5a3819;
}
body.dark-mode .jg-founder-modal__panel {
  background: #24180f;
  color: #f4eadc;
}
body.dark-mode .jg-founder-modal__lead,
body.dark-mode .jg-founder-form__note { color: #d4c0a8; }
body.dark-mode .jg-founder-field input,
body.dark-mode .jg-founder-field select,
body.dark-mode .jg-founder-field textarea {
  background: #1a120c;
  color: #f4eadc;
  border-color: rgba(244, 234, 220, 0.16);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe.jg-founder-metal,
body.dark-mode.jg-kv-page .stripe.jg-discovery-card.jg-founder-metal {
  background: linear-gradient(180deg, #3a2a1c, #2a1d12);
  border-color: rgba(210, 170, 120, 0.22);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe {
  background: linear-gradient(180deg, #111111, rgba(17,17,17,0.96));
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe:hover {
  box-shadow: 0 18px 46px rgba(0,0,0,0.36);
  border-color: rgba(255,255,255,0.08);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .photo-stack {
  background: #0B0B0B;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-title,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-title > div {
  color: #F5F5F5;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-stripe-title,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .kv100-title,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .ref10-title,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-value,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .upload-btn {
  color: #f5f5f5;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-stripe-copy,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-price-meta,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-note,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-card-detail-toggle,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .features-panel.inline,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .lead-time,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .kv100-trust-item,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .kv100-subtitle,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .ref10-subtitle {
  color: #A8A8A8;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .variant-group .btn,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-select,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-input,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-item,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .upload-btn,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .features-panel.inline {
  background: #1A1A1A;
  border-color: rgba(255,255,255,0.08);
  color: #F5F5F5;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-price-old {
  color: #808080;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-select,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-input,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-item,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-item .adet,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-item .fiyat,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-discount-meta {
  color: #D4D4D4;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-note,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-card-detail-toggle {
  color: #808080;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-stripe-kicker,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .kv100-badge,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .ref10-badge {
  background: rgba(37,99,235,0.14);
  color: #dbeafe;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe[data-jg-reco-target="premium"] .jg-stripe-kicker {
  background: linear-gradient(180deg, rgba(245,158,11,0.18), rgba(217,119,6,0.12));
  color: #fde68a;
  box-shadow: inset 0 0 0 1px rgba(245,158,11,0.12);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .price-value {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .jg-price-meta {
  color: #808080;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .choose-btn {
  color: #FFFFFF;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-select:hover,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-input:hover,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .variant-group .btn:hover,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .upload-btn:hover {
  background: #202020;
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-select:focus,
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .qty-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.14);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .choose-btn {
  background: linear-gradient(180deg, #2563EB, #1D4ED8);
  box-shadow: 0 8px 18px rgba(37,99,235,0.18);
}
html.is-kartvizit-product body.dark-mode .jg-kartvizit-stripe .choose-btn:hover {
  box-shadow: 0 10px 20px rgba(37,99,235,0.20);
  filter: brightness(1.02);
}
@media (min-width: 921px) {
  .is-kartvizit-product .stripes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
@media (max-width: 1200px) and (min-width: 921px) {
  .is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-title {
    font-size: 20px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .price-value {
    font-size: 24px;
  }
}

.stripe.jg-discovery-card {
  display: block;
  position: relative;
  padding: 10px 10px;
  border-radius: 18px;
  overflow: hidden;
  contain: layout paint style;
  content-visibility: auto;
  contain-intrinsic-size: 212px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.stripe.jg-discovery-card.is-collapsed {
  min-height: 196px;
}

.stripe.jg-discovery-card.is-selected {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--border));
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 28%, transparent),
    var(--shadow-hover);
}

.stripe.jg-discovery-card.is-collapsed:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.stripe.jg-discovery-card.is-expanded {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 16%, transparent), var(--shadow-hover);
  transform: scale(1.006);
  contain-intrinsic-size: 980px;
}

.jg-discovery-collapse-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(148,163,184,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15,23,42,0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.stripe.jg-discovery-card.is-expanded .jg-discovery-collapse-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.jg-discovery-collapse-btn:hover {
  background: #fff;
  border-color: rgba(37,99,235,0.22);
  color: #0f172a;
}

.jg-discovery-collapse-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.14), 0 10px 22px rgba(15,23,42,0.10);
}

.jg-discovery-collapse-text {
  white-space: nowrap;
}

.jg-discovery-collapse-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.jg-discovery-summary {
  display: grid;
  grid-template-columns: minmax(168px, 44%) minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  cursor: pointer;
  outline: none;
  min-height: 196px;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, transform 200ms ease, margin-bottom 200ms ease;
}

.jg-discovery-summary-body > .jg-monthly-orders,
.qty-title > .jg-monthly-orders {
  flex-shrink: 0;
}

.qty-title > .jg-monthly-orders {
  margin-top: 4px;
  margin-bottom: 2px;
}

.stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-copy {
  /* Keep title + monthly-orders badge above the fold on compact rail cards */
  max-height: 2.6em;
}

.jg-discovery-summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
  border-radius: 18px;
}

.stripe.jg-discovery-card.is-selected .jg-discovery-summary {
  cursor: default;
}

.stripe.jg-discovery-card.is-selected .jg-discovery-summary-photo {
  border-color: rgba(124,58,237,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 10px 22px rgba(124,58,237,0.10);
}

.jg-discovery-summary-media {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.jg-discovery-summary-photo {
  width: 100%;
  display: block;
  height: 176px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(248,250,252,0.98), rgba(241,245,249,0.96));
  border: 1px solid rgba(148,163,184,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
  padding: 6px 8px;
  transition: height 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.jg-discovery-summary-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.28);
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15,23,42,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, background 160ms ease, transform 120ms ease;
}

.jg-discovery-summary-media:hover .jg-discovery-summary-gallery-nav,
.jg-discovery-summary-media:focus-within .jg-discovery-summary-gallery-nav,
.jg-discovery-summary-gallery-nav:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.jg-discovery-summary-gallery-nav:hover {
  background: #fff;
}

.jg-discovery-summary-gallery-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.jg-discovery-summary-gallery-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.35), 0 4px 12px rgba(15,23,42,0.12);
}

.jg-discovery-summary-gallery-prev { left: 6px; }
.jg-discovery-summary-gallery-next { right: 6px; }

.jg-discovery-summary-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(15,23,42,0.28);
  backdrop-filter: blur(4px);
}

.jg-discovery-summary-gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}

.jg-discovery-summary-gallery-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.jg-discovery-summary-gallery-dot:focus-visible {
  outline: 2px solid rgba(37,99,235,0.55);
  outline-offset: 2px;
}

@media (hover: none), (pointer: coarse) {
  .jg-discovery-summary-gallery-nav {
    opacity: 0.92;
    pointer-events: auto;
  }
}

.jg-discovery-summary-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 2px;
  min-width: 0;
  align-content: start;
}

.jg-discovery-summary-tag,
.jg-discovery-summary-title,
.jg-discovery-summary-copy,
.jg-discovery-summary-lead,
.jg-discovery-summary-meta,
.jg-discovery-summary-ctas,
.jg-discovery-summary-reviews,
.jg-monthly-orders {
  grid-column: 1 / -1;
}

.jg-discovery-summary-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(15,23,42,0.05);
  color: #475569;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
}

.jg-discovery-summary-title {
  font-size: clamp(12px, 0.96vw, 14px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jg-discovery-summary-copy {
  max-width: none;
  color: #475569;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jg-discovery-summary-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
  min-height: 24px;
}

.jg-discovery-summary-qtystack {
  display: grid;
  gap: 1px;
  align-content: end;
}

.jg-discovery-summary-ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 5px;
  margin-top: 2px;
  margin-bottom: 0;
  min-width: 0;
}

.jg-discovery-summary-upload-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
}

.jg-discovery-summary-upload-col > .jg-discovery-mini-btn,
.jg-discovery-summary-upload-surface > .jg-discovery-mini-btn {
  width: 100%;
}

.jg-discovery-summary-upload-surface {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 6px;
}

.jg-discovery-upload-info-btn {
  position: absolute;
  top: -11px;
  right: -6px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  color: #0f172a;
  background: linear-gradient(135deg, #f8fafc, #dbeafe);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  z-index: 3;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.jg-discovery-upload-info-btn:hover,
.jg-discovery-upload-info-btn:focus-visible {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
  outline: none;
}

body.dark-mode .jg-discovery-upload-info-btn {
  color: #e2e8f0;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
}

.jg-discovery-ai-suitable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin: 0;
  padding: 0 2px;
  color: #7c3aed;
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: normal;
  pointer-events: none;
  user-select: none;
}

.jg-discovery-ai-suitable__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  color: #8b5cf6;
}

.jg-discovery-ai-suitable__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.jg-discovery-ai-suitable__text {
  min-width: 0;
}

.jg-discovery-upload-helper {
  margin: 0;
  padding: 0 2px;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  letter-spacing: -0.01em;
}
.jg-discovery-upload-helper__text { display: inline; }
.jg-discovery-upload-helper__more {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
  padding: 0 2px;
  margin: 0;
  color: #6d28d9;
  font: inherit;
  font-weight: 800;
  line-height: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

body.dark-mode .jg-discovery-ai-suitable {
  color: var(--muted);
}

body.dark-mode .jg-discovery-ai-suitable__icon {
  color: var(--fg-secondary);
}

body.dark-mode .jg-discovery-upload-helper {
  color: #cbd5e1;
}

.jg-discovery-summary-actionprimary,
.jg-discovery-summary-ctas > .jg-discovery-mini-btn {
  min-width: 0;
}

.jg-discovery-mini-btn {
  width: 100%;
  min-height: 24px;
  padding: 5px 6px;
  border-radius: 9px;
  font-size: 8.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  box-shadow: none;
  white-space: normal;
  overflow-wrap: break-word;
  overflow: visible;
  text-overflow: unset;
  text-align: center;
  hyphens: auto;
  transition: box-shadow 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.jg-discovery-mini-btn.is-primary {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 22%, transparent);
}

.jg-discovery-mini-btn.is-ghost {
  background: var(--surface-2);
  color: var(--fg-secondary);
}

.jg-discovery-mini-btn:hover {
  border-color: var(--border-strong);
  filter: none;
}

.jg-discovery-mini-btn.is-primary:hover {
  background: var(--accent-2);
  border-color: transparent;
}

.jg-discovery-mini-btn:active {
  transform: none;
}

.jg-discovery-mini-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

.jg-discovery-mini-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

body.dark-mode .jg-discovery-mini-btn {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--fg);
}

body.dark-mode .jg-discovery-mini-btn.is-ghost {
  background: var(--surface-2);
  color: var(--fg-secondary);
}

body.dark-mode .jg-discovery-mini-btn.is-primary {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
}

.jg-discovery-mini-btn.is-highlight {
  border-color: rgba(124,58,237,0.46);
  background: rgba(124,58,237,0.10);
  color: #4c1d95;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.14), 0 14px 28px rgba(15,23,42,0.10);
}

body.dark-mode .jg-discovery-mini-btn.is-highlight {
  border-color: rgba(167,139,250,0.46);
  background: rgba(124,58,237,0.16);
  color: rgba(237,233,254,0.96);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.14), 0 16px 34px rgba(0,0,0,0.30);
}

.jg-ownfile-cta-wrap.jg-ownfile-highlight .upload-btn,
.upload-btn.jg-ownfile-highlight {
  border-color: rgba(124,58,237,0.48);
  background: rgba(124,58,237,0.10);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12), 0 18px 40px rgba(15,23,42,0.10);
}

body.dark-mode .jg-ownfile-cta-wrap.jg-ownfile-highlight .upload-btn,
body.dark-mode .upload-btn.jg-ownfile-highlight {
  border-color: rgba(167,139,250,0.42);
  background: rgba(124,58,237,0.16);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.12), 0 20px 46px rgba(0,0,0,0.34);
}

.jg-discovery-select-expand {
  display: none;
  width: 100%;
  min-height: 28px;
  margin-top: 4px;
  padding: 0 10px;
  gap: 8px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 11px;
  background: rgba(124, 58, 237, 0.08);
  color: #5b21b6;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
  animation: jg-discovery-expand-pulse 1.35s ease-in-out infinite;
}

.jg-discovery-select-expand__label {
  min-width: 0;
}

.jg-discovery-select-expand__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  color: currentColor;
  opacity: 0.88;
  pointer-events: none;
}

.jg-discovery-select-expand__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes jg-discovery-expand-pulse {
  0%, 100% {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.28);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
  50% {
    background: rgba(124, 58, 237, 0.18);
    border-color: rgba(124, 58, 237, 0.48);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
  }
}

.stripe.jg-discovery-card.is-selected.is-collapsed .jg-discovery-select-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jg-discovery-select-expand:hover {
  border-color: rgba(109, 40, 217, 0.55);
  background: rgba(124, 58, 237, 0.22);
  color: #4c1d95;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
  animation: none;
}

.jg-discovery-select-expand:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
  animation: none;
}

body.dark-mode .jg-discovery-select-expand {
  border-color: rgba(167, 139, 250, 0.34);
  background: rgba(124, 58, 237, 0.16);
  color: #ddd6fe;
  box-shadow: none;
}

body.dark-mode .jg-discovery-select-expand:hover {
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(124, 58, 237, 0.28);
  color: #ede9fe;
}

.jg-discovery-summary-qty {
  color: #64748b;
  font-size: 8px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.jg-discovery-summary-qty.has-select,
.jg-discovery-summary-qty.has-stepper {
  text-transform: none;
  letter-spacing: 0;
  width: 100%;
}

.jg-discovery-summary-qty-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  max-width: 112px;
  min-height: 22px;
  padding: 3px 22px 3px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.75L10 12.25L14.5 7.75' stroke='%2371717a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--surface), var(--surface));
  background-repeat: no-repeat, no-repeat;
  background-position: right 7px center, 0 0;
  background-size: 12px 12px, auto;
  color: var(--fg);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.jg-discovery-summary-qty-select:hover,
.jg-discovery-summary-qty-select:focus {
  outline: none;
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px var(--ring);
}

.jg-discovery-summary-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  padding: 2px;
  border-radius: 8px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.jg-discovery-summary-qty-btn {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.08);
  color: #6d28d9;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.jg-discovery-summary-qty-input {
  width: 42px;
  min-height: 18px;
  border: 0;
  background: transparent;
  color: #4c1d95;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

body.jg-kv-page .jg-discovery-summary-qty-select {
  max-width: 110px;
  min-height: 22px;
  font-size: 10px;
  padding: 3px 20px 3px 7px;
}

body.dark-mode .jg-discovery-summary-qty-select {
  border-color: var(--border);
  color: var(--fg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.75L10 12.25L14.5 7.75' stroke='%23a1a1aa' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--surface-2), var(--surface-2));
}

.jg-discovery-summary-price {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  min-height: 0;
  color: #0f172a;
  justify-items: end;
  text-align: right;
}

.jg-discovery-summary-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.jg-discovery-summary-price-row > .jg-discovery-summary-price {
  flex: 1 1 auto;
  min-width: 0;
}

.jg-discovery-summary-features {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  max-width: 46%;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.08);
  color: #6d28d9;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: none;
}

.jg-discovery-summary-measure {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.stripe.jg-discovery-card.is-collapsed.has-measure-picker .jg-discovery-summary-measure {
  display: flex;
}
.jg-summary-measure-toggle {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}
.jg-summary-measure-toggle__hint {
  color: #7c3aed;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.jg-summary-measure-toggle::after {
  content: "▾";
  color: #7c3aed;
  font-size: 12px;
}
.stripe.jg-discovery-card.is-measure-open .jg-summary-measure-toggle::after {
  content: "▴";
}
.jg-discovery-summary-sizes {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  min-width: 0;
}
.stripe.jg-discovery-card.is-collapsed.is-measure-open .jg-discovery-summary-sizes {
  display: flex;
}
.stripe.jg-discovery-card.is-collapsed.has-measure-picker:not(.is-measure-open) .jg-discovery-summary-qty,
.stripe.jg-discovery-card.is-collapsed.has-measure-picker:not(.is-measure-open) .jg-discovery-summary-qtystack {
  display: none !important;
}
.jg-summary-size-chip {
  appearance: none;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: #fff;
  color: #0f172a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.jg-summary-size-chip.is-active {
  background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
}
.jg-measure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jg-measure-grid .price-item {
  width: auto;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
}

html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-meta,
html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-price-row,
html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-price-row {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  height: auto;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-price,
html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-price {
  min-width: 0;
  overflow: hidden;
}
html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-price-row > .jg-discovery-summary-price,
html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-price-row > .jg-discovery-summary-price {
  flex: 0 0 auto;
}
html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-features,
html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-features {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  height: auto;
  min-height: 28px;
  margin: 0;
  padding: 6px 8px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jg-discovery-summary-features:hover {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.42);
}

.jg-discovery-summary-features:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.jg-discovery-summary-price-old {
  display: none;
  color: #94a3b8;
  font-size: 9px;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: line-through;
  white-space: nowrap;
}

.jg-discovery-summary-price-old.is-visible {
  display: block;
}

.jg-discovery-summary-price-main {
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--fg);
}

.jg-tl {
  display: inline-block;
  font-size: 0.48em;
  font-weight: 800;
  margin-left: 0.18em;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.72;
  vertical-align: 0.22em;
}

.jg-price-main .jg-tl,
.price-value .jg-tl {
  font-size: 0.46em;
}

body.jg-kv-page .jg-discovery-summary-price-main {
  color: var(--success);
}

.jg-discovery-summary-unit {
  color: #64748b;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jg-discovery-summary .lead-time-row {
  margin-top: 0;
  min-height: 14px;
  justify-content: flex-start;
}

.jg-discovery-summary .lead-time {
  color: #64748b;
  font-size: 9px;
  line-height: 1.25;
  font-weight: 800;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.jg-discovery-summary-reviews {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 16px;
}

.jg-discovery-summary-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 12px;
  line-height: 1;
}

.jg-discovery-summary-review-count {
  color: #94a3b8;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.jg-discovery-summary-review-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.26);
  background: rgba(168,85,247,0.10);
  color: rgba(88,28,135,0.96);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.jg-discovery-summary-review-jump:hover {
  background: rgba(168,85,247,0.14);
  border-color: rgba(168,85,247,0.38);
}

.jg-discovery-summary-review-jump:active {
  transform: translateY(1px);
}

.jg-discovery-summary-review-jump:focus-visible {
  outline: 2px solid rgba(168,85,247,0.52);
  outline-offset: 2px;
}

body.dark-mode .jg-discovery-summary-review-jump {
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--fg-secondary);
}

body.dark-mode .jg-discovery-summary-review-jump:hover {
  background: var(--elevated);
  border-color: var(--border-strong);
  color: var(--fg);
}

body.dark-mode .stripe.jg-discovery-card.is-selected {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent) 26%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 34%, transparent),
    var(--shadow-hover);
}

.stripe.jg-discovery-card.is-collapsed:hover .jg-discovery-summary-photo {
  transform: scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 14px 30px rgba(15,23,42,0.08);
}

.jg-variant-selection-notice {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(124,58,237,0.18);
  background: linear-gradient(135deg, rgba(245,243,255,0.96), rgba(255,255,255,0.98));
  color: #6d28d9;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(124,58,237,0.08);
}

.jg-variant-selection-notice.is-visible {
  display: flex;
}

body.dark-mode .jg-variant-selection-notice {
  border-color: rgba(167,139,250,0.20);
  background: linear-gradient(135deg, rgba(46,16,101,0.36), rgba(15,23,42,0.96));
  color: rgba(233,213,255,0.96);
}

.jg-discovery-detail {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint style;
  transform: translateY(-6px);
  transition: max-height 200ms ease, opacity 180ms ease, transform 200ms ease, padding-top 200ms ease;
}

.stripe.jg-discovery-card.is-expanded .jg-discovery-detail {
  max-height: 9999px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding-top: 0;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.stripe.jg-discovery-card.is-expanded .jg-discovery-summary {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  margin-bottom: 0;
  pointer-events: none;
}

.stripe.jg-discovery-card.is-expanded .left-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.stripe.jg-discovery-card.is-expanded .photo-stack {
  min-height: 0;
  max-width: 100%;
}

.stripe.jg-discovery-card.is-expanded .stripe-photo {
  max-height: 260px;
  aspect-ratio: 8 / 5;
  transform: scale(1.04);
  padding: 10px 12px;
}

.stripe.jg-discovery-card .stripe-photo {
  transition: max-height 200ms ease, transform 200ms ease;
}

.stripe.jg-discovery-card.is-expanded .left-col,
.stripe.jg-discovery-card.is-expanded .right-col {
  min-width: 0;
  width: 100%;
  align-self: start;
}

.stripe.jg-discovery-card.is-expanded .right-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.stripe.jg-discovery-card.is-expanded .qty-title,
.stripe.jg-discovery-card.is-expanded .jg-stripe-copy,
.stripe.jg-discovery-card.is-expanded .price-box,
.stripe.jg-discovery-card.is-expanded .price-note,
.stripe.jg-discovery-card.is-expanded .price-discount-meta,
.stripe.jg-discovery-card.is-expanded .jg-card-detail-wrap,
.stripe.jg-discovery-card.is-expanded .lead-time-row {
  width: 100%;
  max-width: none;
  justify-self: start;
  text-align: left;
}

.stripe.jg-discovery-card.is-expanded .jg-trust-line,
.stripe.jg-discovery-card.is-expanded .cta-row {
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
}

.stripe.jg-discovery-card.is-expanded .cta-row .btn {
  flex: 1 1 0;
}

.stripe.jg-discovery-card.is-expanded .jg-discovery-summary-photo {
  height: 168px;
  transform: scale(1.03);
}


html.is-kartvizit-product body.dark-mode .stripe.jg-discovery-card,
body.dark-mode .stripe.jg-discovery-card {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

html.is-kartvizit-product body.dark-mode .stripe.jg-discovery-card.is-collapsed:hover,
body.dark-mode .stripe.jg-discovery-card.is-collapsed:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  background: var(--elevated);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-photo,
body.dark-mode .jg-discovery-summary-photo {
  background: var(--surface-2);
  border-color: var(--border);
}

body.dark-mode .jg-discovery-summary-gallery-nav {
  background: rgba(30, 41, 59, 0.92);
  border-color: var(--border);
  color: var(--fg);
}

body.dark-mode .jg-discovery-summary-gallery-nav:hover {
  background: var(--elevated);
}

body.dark-mode .jg-discovery-summary-gallery-dots {
  background: rgba(2, 6, 23, 0.5);
}

body.dark-mode .jg-discovery-summary-gallery-dot {
  background: rgba(255, 255, 255, 0.42);
}

body.dark-mode .jg-discovery-summary-gallery-dot.is-active {
  background: #fff;
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-title,
body.dark-mode .jg-discovery-summary-title {
  color: var(--fg);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-price,
body.dark-mode .jg-discovery-summary-price,
html.is-kartvizit-product body.dark-mode .jg-discovery-summary-price-main,
body.dark-mode .jg-discovery-summary-price-main {
  color: var(--success);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-tag,
body.dark-mode .jg-discovery-summary-tag {
  background: var(--surface-2);
  color: var(--fg-secondary);
  border: 1px solid var(--border);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-copy,
body.dark-mode .jg-discovery-summary-copy,
html.is-kartvizit-product body.dark-mode .jg-discovery-summary-qty,
body.dark-mode .jg-discovery-summary-qty,
html.is-kartvizit-product body.dark-mode .jg-discovery-summary-price-old,
body.dark-mode .jg-discovery-summary-price-old,
html.is-kartvizit-product body.dark-mode .jg-discovery-summary-review-count,
body.dark-mode .jg-discovery-summary-review-count {
  color: var(--muted);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-stars,
body.dark-mode .jg-discovery-summary-stars {
  color: #fbbf24;
}

html.is-kartvizit-product body.dark-mode .jg-discovery-summary-review-jump,
body.dark-mode .jg-discovery-summary-review-jump {
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--fg-secondary);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-collapse-btn,
body.dark-mode .jg-discovery-collapse-btn {
  background: var(--elevated);
  border-color: var(--border);
  color: var(--fg-secondary);
}

html.is-kartvizit-product body.dark-mode .jg-discovery-collapse-x,
body.dark-mode .jg-discovery-collapse-x {
  background: var(--surface-2);
}

@media (max-width: 920px) {
  .stripe.jg-discovery-card {
    padding: 12px;
    border-radius: 16px;
    min-height: 228px;
  }

  .jg-discovery-collapse-btn {
    top: 10px;
    right: 10px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .jg-discovery-summary {
    grid-template-columns: 1fr;
    min-height: 204px;
    max-height: none;
    overflow: visible;
    gap: 8px;
    align-items: start;
  }

  .jg-discovery-summary-photo {
    height: 168px;
    padding: 8px;
    border-radius: 14px;
  }

  .jg-discovery-summary-title {
    font-size: 14px;
  }

  .jg-discovery-summary-copy {
    max-width: none;
    font-size: 11px;
  }

  .jg-discovery-summary-meta,
  .jg-discovery-summary-ctas {
    grid-template-columns: 1fr;
  }

  .jg-discovery-select-expand {
    min-height: 30px;
    font-size: 10.5px;
  }

  .jg-discovery-summary-qty {
    font-size: 10px;
  }

  .jg-discovery-summary-price-main {
    font-size: 19px;
  }


  .jg-discovery-summary-price {
    font-size: 17px;
  }

  .jg-discovery-detail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-photo {
    height: 128px;
  }

  .stripe.jg-discovery-card.is-expanded .jg-discovery-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stripe.jg-discovery-card.is-expanded .photo-stack {
    min-height: 0;
  }

  .stripe.jg-discovery-card.is-expanded .stripe-photo {
    max-height: 240px;
    padding: 10px;
  }
}

/* VIP İkonu Stilleri */
.vip-icon {
  display: inline-block;
  margin-left: 8px;
  font-size: 20px;
  animation: vip-glow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  position: relative;
}

.vip-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: vip-pulse 2s ease-in-out infinite;
}

@keyframes vip-glow {
  0% { filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6)); }
  100% { filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 12px rgba(255, 215, 0, 0.4)); }
}

@keyframes vip-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.3; }
}

/* VIP ikonu türlerine göre özel renkler */
.vip-icon[data-vip-type="crown"] { filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8)); }
.vip-icon[data-vip-type="star"] { filter: drop-shadow(0 0 4px rgba(255, 255, 0, 0.8)); }
.vip-icon[data-vip-type="diamond"] { filter: drop-shadow(0 0 4px rgba(185, 242, 255, 0.8)); }
.vip-icon[data-vip-type="fire"] { filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.8)); }
.vip-icon[data-vip-type="trophy"] { filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8)); }
.vip-icon[data-vip-type="gem"] { filter: drop-shadow(0 0 4px rgba(255, 20, 147, 0.8)); }
.vip-icon[data-vip-type="sparkles"] { filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)); }

.variant-controls { border: 1px solid var(--border); border-radius: 18px; padding: 16px; background: var(--stripe); }
.vc-grid { display: grid; grid-template-columns: 1.4fr auto; gap: 16px; align-items: center; }
.vc-left { display: flex; flex-wrap: wrap; gap: 10px; }
.vc-right { display: flex; align-items: center; gap: 12px; }
.vc-price { font-size: 20px; font-weight: 800; }

.variant-group { display: grid; grid-template-columns: 1fr; gap: 8px; }
.variant-group .btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 16px 22px; border-radius: 16px; border: 1px solid var(--border); background: var(--stripe); color: var(--fg); font-weight: 800; letter-spacing: 0.2px; font-size: 17px; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease; }
.variant-group .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); border-color: rgba(99,102,241,0.45); }
.variant-group .btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring), 0 8px 24px rgba(0,0,0,0.25); }
.variant-group .btn.active { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); border-color: transparent; color: #fff; }
.variant-group .btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.choose-btn.jg-cta-stacked { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.choose-btn.jg-cta-stacked .jg-cta-pre { opacity: 0.95; }
.choose-btn.jg-cta-stacked .jg-cta-main { max-width: 100%; }
.choose-btn .jg-cta-pre { display: block; font-size: 12px; font-weight: 900; line-height: 1.1; opacity: 0.95; margin-bottom: 4px; }
.choose-btn .jg-cta-main { display: block; font-size: 15px; font-weight: 900; line-height: 1.15; }
@media (max-width: 480px) {
  .choose-btn .jg-cta-pre { font-size: 11px; margin-bottom: 3px; }
  .choose-btn .jg-cta-main { font-size: 14px; }
}

/* Özellikler butonu ve paneli */
.features-row { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 12px; margin-top: 12px; }
.features-btn { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--stripe); color: var(--fg); font-weight: 700; transition: box-shadow 160ms ease, border-color 160ms ease; }
.features-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); border-color: rgba(99,102,241,0.45); }
.features-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring), 0 8px 24px rgba(0,0,0,0.25); }
.features-panel { display: none; padding: 14px 16px; border-radius: 12px; border: 1px dashed var(--border); color: var(--muted); background: var(--stripe); }
.features-panel.open { display: block; }
/* Stripe altına tek satır inline panel */
.features-panel.inline { display: block; padding: 10px 12px; border-radius: 12px; border: 1px dashed var(--border); color: var(--muted); background: var(--stripe); margin-top: 8px; }
.features-panel.inline.open { display: block; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price-item { border: 1px dashed var(--border); border-radius: 14px; padding: 18px; display: flex; align-items: center; justify-content: space-between; background: var(--stripe); color: var(--fg); cursor: pointer; width: 100%; }
.price-item:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); border-color: rgba(99,102,241,0.45); }
.price-item:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring), 0 8px 24px rgba(0,0,0,0.18); }
.price-item.active { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); border-color: transparent; color: #fff; }
.price-item.active .fiyat { color: rgba(255,255,255,0.92); }
.price-item .adet { font-weight: 700; }
.price-item .fiyat { color: var(--muted); }

/* Adet seçimi ve fiyat kutusu */
.qty-row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; align-items: center; margin-bottom: 12px; }
.qty-row.no-label { grid-template-columns: 1fr auto; }
.qty-row.grid-only { grid-template-columns: 1fr; }
.qty-title { margin: 0 0 8px; color: var(--fg); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.4; }
.qty-label { color: var(--muted); font-weight: 600; }
.qty-select { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: var(--stripe); color: var(--fg); transition: box-shadow 160ms ease, border-color 160ms ease; font-size: 15px; }
.qty-select:focus-visible { outline: none; border-color: rgba(99,102,241,0.45); box-shadow: 0 0 0 2px var(--ring); }
.qty-stepper { display: inline-flex; align-items: center; gap: 8px; }
.qty-btn { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--stripe); color: var(--fg); font-weight: 900; font-size: 18px; line-height: 1; cursor: pointer; transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease; }
.qty-btn:hover { transform: translateY(-1px); border-color: rgba(99,102,241,0.45); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.qty-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring), 0 8px 24px rgba(0,0,0,0.18); }
.qty-input { width: 84px; height: 42px; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--stripe); color: var(--fg); font-size: 15px; font-weight: 800; text-align: center; }
.qty-input:focus-visible { outline: none; border-color: rgba(99,102,241,0.45); box-shadow: 0 0 0 2px var(--ring); }
.price-box { border: 1px solid var(--border); border-radius: 14px; padding: 14px; background: var(--stripe); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.price-box { position: relative; }
.price-box.red { background: linear-gradient(180deg, rgba(227,27,35,0.14) 0%, rgba(227,27,35,0.08) 100%); border-color: rgba(227, 27, 35, 0.45); }
.price-box.green { background: linear-gradient(180deg, rgba(46,204,113,0.14) 0%, rgba(46,204,113,0.08) 100%); border-color: rgba(46, 204, 113, 0.45); }
.price-box.kv100-free { background: linear-gradient(180deg, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.08) 100%); border-color: rgba(245, 158, 11, 0.55); }

.jg-price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  max-width: 160px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jg-kv100-under-price {
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.10);
  color: #92400e;
  display: grid;
  gap: 2px;
}
.jg-kv100-under-price .t1 { font-size: 11px; font-weight: 900; }
.jg-kv100-under-price .t2 { font-size: 11px; font-weight: 800; color: #0f172a; }
.jg-kv100-under-price .muted { font-weight: 800; color: #475569; opacity: 0.9; }

.jg-popular-stripe { box-shadow: 0 14px 30px rgba(0,0,0,0.10); border-color: rgba(245, 158, 11, 0.35); }
.jg-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  color: #111827;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.jg-trust-line { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.jg-trust-item {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.03);
  color: #0f172a;
  font-size: 11px;
  font-weight: 900;
}

.jg-social-proof {
  margin: 8px 0 12px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.jg-social-proof::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .jg-social-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    padding: 10px;
    overflow: visible;
    flex-wrap: unset;
  }
  .jg-social-item {
    font-size: 11px;
    min-width: 0;
    flex: unset;
    white-space: normal;
    align-items: flex-start;
  }
  .jg-social-tx {
    white-space: normal;
    line-height: 1.25;
  }
}
.jg-social-item { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: #0f172a; white-space: nowrap; flex: 0 0 auto; }
.jg-social-ic { width: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
.jg-social-tx { color: #334155; font-weight: 700; line-height: 1.1; white-space: nowrap; }

body.jg-kv-page .page-h1 {
  display: none !important;
}

@media (max-width: 920px) {
  .product-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px 14px;
  }
  .trust-list {
    justify-content: flex-start;
    width: 100%;
  }
  .product-head .product-title {
    font-size: clamp(16px, 5vw, 22px);
  }
}

body.dark-mode .jg-social-proof {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, #2e1065 0%, #1e1b4b 42%, #0f0f1b 100%);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.45);
}
body.dark-mode .jg-social-item { color: #ffffff; }
body.dark-mode .jg-social-tx { color: rgba(255, 255, 255, 0.94); }

body.dark-mode .jg-trust-item {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.jg-quick-products-wrap { position: relative; margin: 0 0 6px; z-index: 1; isolation: isolate; }
.jg-quick-categories-wrap { margin: 0; min-height: 0; }
.jg-quick-categories-wrap + .jg-quick-products-wrap { margin-top: 2px; }
body.jg-kv-page .jg-social-proof + .jg-quick-categories-wrap,
.jg-social-proof + .jg-quick-categories-wrap { margin-top: -2px; }
.jg-quick-products { display: flex; gap: 6px; overflow-x: auto; padding: 4px 34px; margin: 0; scrollbar-width: none; scroll-behavior: smooth; position: relative; z-index: 0; }
.jg-quick-categories { gap: 4px; padding: 0 28px; margin: 0; min-height: 0; }
.jg-quick-products::-webkit-scrollbar { display: none; }
.jg-quick-chip {
  border: 1px solid var(--border);
  background: var(--stripe);
  color: var(--fg);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.25;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  box-shadow: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
a.jg-quick-chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.jg-quick-cat-chip {
  padding: 2px 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: 0.9;
  box-shadow: none !important;
}
.jg-quick-cat-chip.active {
  opacity: 1;
}
.jg-quick-categories-wrap .jg-quick-scroll {
  width: 20px;
  height: 20px;
  font-size: 11px;
  box-shadow: none;
}
.jg-quick-chip:hover { transform: none; filter: none; box-shadow: none; border-color: var(--border-strong); }
.jg-quick-chip.active { background: var(--accent); border-color: transparent; color: #fff; box-shadow: none; }
body.dark-mode .jg-quick-chip { background: var(--surface); border-color: var(--border); color: var(--fg-secondary); box-shadow: none; }
body.dark-mode .jg-quick-chip:hover { transform: none; border-color: var(--border-strong); background: var(--surface-2); color: var(--fg); box-shadow: none; }
body.dark-mode .jg-quick-chip.active { background: var(--accent); border-color: transparent; color: #fff; box-shadow: none; }
.jg-quick-scroll {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--stripe);
  color: var(--fg);
  box-shadow: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 12px;
  pointer-events: auto;
}
.jg-quick-scroll:hover { box-shadow: var(--shadow); border-color: var(--border-strong); }
body.dark-mode .jg-quick-scroll { background: var(--elevated); border-color: var(--border); color: var(--fg-secondary); box-shadow: var(--shadow); }
body.dark-mode .jg-quick-scroll:hover { border-color: var(--border-strong); color: var(--fg); background: var(--surface-2); box-shadow: var(--shadow-hover); }
.jg-quick-scroll:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }
.jg-quick-scroll.prev { left: 0; }
.jg-quick-scroll.next { right: 0; }

.jg-micro-toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1100;
  max-width: min(360px, calc(100vw - 32px));
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.jg-micro-toast.show { opacity: 1; transform: translateY(0); }

.stripe.kv100-campaign { background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, #f3f4f6 100%); }
.stripe.kv100-campaign .photo-stack { min-height: clamp(240px, 46vw, 380px); }
.stripe.kv100-campaign .stripe-photo { aspect-ratio: 9 / 6; }
.kv100-countdown {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.08);
  color: #5b21b6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.kv100-countdown.is-ended {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(148, 163, 184, 0.12);
  color: #475569;
}
.kv100-photo-badge { position: absolute; top: 12px; left: 12px; z-index: 5; padding: 8px 10px; border-radius: 999px; background: rgba(220, 38, 38, 0.95); color: #fff; font-weight: 900; letter-spacing: .4px; font-size: 12px; border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 10px 24px rgba(0,0,0,0.22); }

.kv100-badge { display: inline-flex; width: fit-content; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; background: rgba(220,38,38,0.10); border: 1px solid rgba(220,38,38,0.25); color: #b91c1c; font-weight: 900; font-size: 12px; margin-bottom: 8px; }
.kv100-badge-icon { display: inline-flex; align-items: center; justify-content: center; }
.kv100-title { font-size: clamp(26px, 3vw, 36px); font-weight: 900; color: #0f172a; line-height: 1.12; }
.kv100-subtitle { margin-top: 8px; font-size: 15px; color: #334155; font-weight: 800; }
.kv100-callout { margin-top: 10px; font-size: 13px; color: #0f172a; font-weight: 900; opacity: 0.95; }

.kv100-trust { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.kv100-trust-item { padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: rgba(15,23,42,0.02); color: var(--fg); font-size: 12px; font-weight: 900; }

.ref10-badge { display: inline-flex; width: fit-content; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; background: rgba(37,99,235,0.10); border: 1px solid rgba(37,99,235,0.25); color: var(--fg); font-weight: 900; font-size: 12px; margin-bottom: 8px; }
.ref10-title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; color: var(--fg); line-height: 1.15; }
.ref10-subtitle { margin-top: 6px; font-size: 14px; color: var(--muted); font-weight: 700; }
.ref10-callout { margin-top: 10px; font-size: 13px; color: var(--fg); font-weight: 900; opacity: 0.95; }
.ref10-actions { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn.ref10-btn { padding: 12px 16px; border-radius: 14px; }
.ref10-timer { margin-top: 10px; font-size: 13px; color: var(--fg); font-weight: 900; }

.kv100-feat-title { font-weight: 900; color: var(--fg); margin-bottom: 8px; }
.kv100-feat-list { margin: 0; padding-left: 18px; display: grid; gap: 6px; color: var(--muted); font-weight: 700; }
.price-value { font-size: 18px; font-weight: 800; }
.price-value.is-kv100-gift,
.jg-discovery-summary-price.is-kv100-gift {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #047857;
}
.price-note { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.price-discount-meta { display: none; margin-top: 10px; padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(34,197,94,0.20); background: rgba(34,197,94,0.08); color: #166534; font-size: 13px; font-weight: 700; line-height: 1.5; }
.price-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-detail-toggle { padding: 4px 8px; font-size: 12px; border-radius: 999px; border: 1px solid var(--border); background: rgba(15,23,42,0.02); color: var(--muted); cursor: pointer; }
.price-detail-toggle:focus-visible { outline: 2px solid var(--ring); outline-offset: 1px; }
.info-toggle-row { display: flex; gap: 8px; margin-top: 8px; }
.info-toggle-row .btn { flex: 1 1 0; text-align: center; }

.no-scroll { overflow: hidden; }
.img-lightbox { position: fixed; inset: 0; background: rgba(2, 6, 23, 0.78); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 18px; }
.img-lightbox.open { display: flex; }
.img-lightbox-inner { position: relative; width: min(1020px, 96vw); height: min(740px, 84vh); display: flex; align-items: center; justify-content: center; }
.img-lightbox-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 14px; border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 18px 60px rgba(0,0,0,0.50); background: rgba(255,255,255,0.02); }
.img-lightbox-close { position: fixed; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.35); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.img-lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.35); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.img-lightbox-nav.prev { left: 14px; }
.img-lightbox-nav.next { right: 14px; }
.img-lightbox-close:focus-visible, .img-lightbox-nav:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(255,255,255,0.22), 0 10px 28px rgba(0,0,0,0.35); }

.badge { display: none; margin-left: 8px; padding: 2px 6px; font-size: 11px; border-radius: 8px; border: 1px solid rgba(99,102,241,0.35); color: #c4c6ff; background: rgba(99,102,241,0.12); }

.summary { display: none; margin-top: 8px; color: var(--muted); font-size: 14px; }
.footer { border-top: 1px solid var(--border); margin-top: 28px; padding: 16px 0; color: var(--muted); font-size: 13px; }

/* Alt Sabit Bottom Bar */
.bottom-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--stripe); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(0,0,0,0.08); padding: 12px 0; }
.bottom-content { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.bottom-left { display: flex; flex-wrap: wrap; gap: 10px; }
.bb-field { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 8px; background: transparent; border: 1px dashed var(--border); padding: 8px 10px; border-radius: 12px; }
.bb-field label { color: var(--muted); font-size: 12px; }
.bb-select { padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border); background: #ffffff; color: var(--fg); }
.bottom-right { display: flex; align-items: center; gap: 12px; justify-content: center; }
.bb-price { font-size: 18px; font-weight: 800; }

.bottom-content.solo { grid-template-columns: 1fr; }

.jg-mobile-quick-nav,
.jg-mobile-quick-chip {
  display: none !important;
}

@media (max-width: 920px) {
  .jg-mobile-quick-nav,
  .jg-mobile-quick-chip {
    display: none !important;
  }
  .jg-mobile-quick-nav {
    position: sticky;
    top: 8px;
    z-index: 25;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 10px;
    margin: 0 0 10px;
    background: linear-gradient(180deg, var(--bg), rgba(255,255,255,0));
    scrollbar-width: none;
  }
  .jg-mobile-quick-nav::-webkit-scrollbar { display: none; }
  .jg-mobile-quick-chip {
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.16);
    background: rgba(15,23,42,0.04);
    color: var(--fg);
    font-size: 12px;
    font-weight: 700;
  }
  .jg-mobile-quick-chip.is-active {
    background: rgba(168,85,247,0.16);
    border-color: rgba(168,85,247,0.28);
    color: rgba(88,28,135,0.96);
  }
  body.dark-mode .jg-mobile-quick-chip { border-color: rgba(148,163,184,0.18); background: rgba(255,255,255,0.06); color: rgba(226,232,240,0.92); }
  body.dark-mode .jg-mobile-quick-chip.is-active { background: rgba(168,85,247,0.18); border-color: rgba(167,139,250,0.32); color: rgba(237,233,254,0.96); }
  #jgSmartRecoMount {
    right: 14px;
    bottom: 14px;
  }
  .jg-smart-ai-panel {
    width: min(360px, calc(100vw - 20px));
  }
  .jg-smart-ai-stepper {
    grid-template-columns: 1fr;
  }
  .jg-smart-ai-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-page { grid-template-columns: 1fr; }
  .stripe { grid-template-columns: 1fr; padding: 12px; gap: 12px; }
  .is-kartvizit-product .stripes { grid-template-columns: 1fr; }
  .is-kartvizit-product .jg-kartvizit-stripe {
    padding: 12px;
    gap: 9px;
    border-radius: 16px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .left-grid { gap: 8px; }
  .is-kartvizit-product .jg-kartvizit-stripe .photo-stack { min-height: 156px; }
  .is-kartvizit-product .jg-kartvizit-stripe .stripe-photo { max-height: 156px; padding: 8px 10px; }
  .is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-kicker { padding: 5px 8px; font-size: 9px; }
  .is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-title { font-size: 18px; }
  .is-kartvizit-product .jg-kartvizit-stripe .jg-stripe-copy {
    font-size: 12px;
    min-height: auto;
    max-width: 28ch;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .variant-group,
  .is-kartvizit-product .jg-kartvizit-stripe .price-grid,
  .is-kartvizit-product .jg-kartvizit-stripe .jg-vip-promo-box {
    display: none;
  }
  /* Matbaa/ofset (zarf dahil): varyant butonları mobilde gizlenmesin */
  .is-matbaa-ofset-variant-product .jg-kartvizit-stripe .variant-group {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .is-matbaa-ofset-variant-product .jg-kartvizit-stripe.jg-zarf-window-modes .variant-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .qty-row,
  .is-kartvizit-product .jg-kartvizit-stripe .qty-row.no-label,
  .is-kartvizit-product .jg-kartvizit-stripe .qty-row.grid-only {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .qty-select,
  .is-kartvizit-product .jg-kartvizit-stripe .qty-input {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 12px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .recommended-hint {
    margin-left: 0;
    font-size: 10px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .price-box { padding-top: 0; }
  .is-kartvizit-product .jg-kartvizit-stripe .price-value { font-size: 24px; }
  .is-kartvizit-product .jg-kartvizit-stripe .price-note { font-size: 10px; }
  .is-kartvizit-product .jg-kartvizit-stripe .cta-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 2px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .choose-btn,
  .is-kartvizit-product .jg-kartvizit-stripe .upload-btn {
    min-height: 42px;
    font-size: 13px;
    border-radius: 13px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .upload-btn {
    min-height: 38px;
    font-size: 12px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe .jg-card-detail-toggle {
    margin-top: 0;
    font-size: 10px;
  }
  .bottom-content { grid-template-columns: 1fr; }
  .bottom-right { justify-content: space-between; }
  .vc-grid { grid-template-columns: 1fr; gap: 12px; }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign {
    gap: 8px;
    padding: 12px 14px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .left-col {
    display: block;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .left-grid {
    gap: 0;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .photo-stack {
    min-height: 132px;
    border-radius: 14px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .stripe-photo {
    max-height: 132px;
    padding: 6px 8px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .right-col {
    gap: 8px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-title {
    font-size: 18px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-subtitle {
    font-size: 12px;
    max-width: 28ch;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .price-value {
    font-size: 26px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .kv100-trust {
    margin-top: -2px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .cta-row {
    margin-top: 0;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .jg-card-detail-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    font-size: 11px;
  }
  .is-kartvizit-product .jg-kartvizit-stripe.kv100-campaign .jg-card-detail-wrap {
    display: grid;
    gap: 8px;
  }
}

.kv100-same-note {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #dc2626;
}
body.dark-mode .kv100-same-note { color: #fca5a5; }
@media (max-width: 600px) {
  .jg-mobile-quick-nav {
    top: 6px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  #jgSmartRecoMount {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .jg-smart-ai {
    justify-items: stretch;
  }
  .jg-smart-ai-launcher {
    justify-items: end;
  }
  .jg-smart-ai-bubble {
    max-width: min(300px, calc(100vw - 40px));
  }
  .jg-smart-ai-panel {
    width: 100%;
    max-height: min(76vh, 640px);
    border-radius: 24px;
  }
  .jg-smart-ai-stage {
    min-height: 0;
  }
  .jg-smart-ai-grid,
  .jg-smart-ai-actions {
    grid-template-columns: 1fr;
  }
  .jg-smart-ai-section.is-active,
  .jg-smart-ai-result {
    padding: 14px;
  }
  .jg-smart-ai-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .jg-smart-ai-btn,
  .jg-smart-ai-btn.subtle {
    width: 100%;
  }
  .jg-smart-ai-fab {
    padding-right: 12px;
  }
  .jg-smart-ai-fab-sub {
    display: none;
  }
  .product-head { grid-template-columns: 1fr; gap: 12px; }
  .trust-list { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .variant-group { grid-template-columns: 1fr; }
  .bb-field { grid-template-columns: 1fr; }
  .btn { padding: 10px 16px; font-size: 14px; border-radius: 12px; }
  .choose-btn { padding: 12px 18px; font-size: 15px; border-radius: 14px; }
  .jg-template-soon-note { padding: 13px 14px 14px; border-radius: 14px; }
  .jg-template-soon-text { font-size: 12.5px; line-height: 1.6; }
}

@media (max-width: 640px) {
  .top-band { display: none; }
  .container { padding: 0 6px; }
  .trust-list .trust-item:nth-child(n+3) { display: none; }
  .product-head .product-title { font-size: 22px; }
}

/* Sol görsel kolon düzeni */
.left-grid { display: grid; grid-template-columns: 480px 1fr; gap: 12px; align-items: start; }
.stripe-photo, .gallery-main .main-image { max-width: 100%; height: auto; }
@media (max-width: 920px) {
  .left-grid { grid-template-columns: 1fr; }
}
.right-col { min-width: 0; }
.photo-stack { display: grid; grid-template-columns: 1fr; gap: 10px; position: relative; min-height: clamp(200px, 42vw, 340px); }
.photo-loading { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(248, 250, 252, 0.8); color: #334155; font-weight: 700; font-size: 15px; letter-spacing: 0.2px; border-radius: 12px; z-index: 3; text-align: center; padding: 12px; }
.photo-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,0.88); color: var(--fg); font-weight: 900; font-size: 26px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 28px rgba(0,0,0,0.12); backdrop-filter: blur(6px); z-index: 2; }
.photo-nav:hover { background: rgba(255,255,255,0.98); }
.photo-nav:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring), 0 10px 28px rgba(0,0,0,0.12); }
.photo-nav.prev { left: 10px; }
.photo-nav.next { right: 10px; }
.photo-nav:active { transform: translateY(-50%) scale(0.98); }
.stripe-photo { width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); background: var(--stripe); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.stripe-photo.zoomable { cursor: zoom-in; }
.is-dijital-product .stripe-photo { aspect-ratio: 35 / 50; object-fit: contain; }
.is-textile-product .stripe-photo { object-fit: contain; }
.is-bayrak-product .stripe-photo { object-fit: contain; }
.is-ambalaj-product .stripe-photo { object-fit: contain; }
.is-kartvizit-product .stripe-photo { object-fit: contain; }
.is-teklifdosyasi-product .stripe-photo { object-fit: contain; }
.is-bloknot-product .stripe-photo { object-fit: contain; }
.is-antetli-product .stripe-photo { object-fit: contain; }
.is-elilani-product .stripe-photo { object-fit: contain; }
.is-amerikanservis-product .stripe-photo { object-fit: contain; }
.is-centered-photo-product .stripe-photo { object-fit: contain; object-position: center; }

/* Varyant ikonları — Seç butonunun altında gösterilir */
.variant-icons { margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--fg); }
.variant-icons .vip-icon { margin: 0; font-size: 18px; }

/* Mobil görünüm iyileştirmeleri */
@media (max-width: 768px) {
  .price-box { padding: 10px; border-radius: 10px; }
  .price-box .price-value { font-size: 16px; font-weight: 700; }
  .price-box .price-note { font-size: 12px; }
  .price-box .price-discount-meta { font-size: 12px; padding: 8px 10px; }
  .features-toggle { margin-top: 8px; padding: 8px 12px; font-size: 13px; border-radius: 10px; }
}

.cta-row { display: flex; gap: 8px; align-items: center; justify-content: space-between; margin-top: 10px; }
.cta-row .btn { flex: 1 1 0; text-align: center; }
.recommended-hint { margin-left: 8px; font-size: 12px; color: #6b7280; }

.jg-size-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.jg-size-toggle .jg-size-ic { font-size: 16px; opacity: 0.9; }
.jg-size-toggle .jg-size-meta { margin-left: auto; font-weight: 900; font-size: 12px; color: rgba(100,116,139,0.95); }
.jg-size-toggle:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 10px 26px rgba(15,23,42,0.10);
  transform: translateY(-1px);
}
.jg-size-toggle:active { transform: translateY(0); box-shadow: none; }
.jg-size-toggle.active {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12), 0 10px 26px rgba(15,23,42,0.10);
}
@media (max-width: 480px) {
  .jg-size-toggle { padding: 10px 12px; border-radius: 12px; font-size: 13px; }
  .jg-size-toggle .jg-size-meta { font-size: 11px; }
}

/* Özellik paneli altındaki Seç butonu tam genişlikte olsun */
.choose-btn { width: 100%; margin-top: 14px; padding: 16px 22px; border-radius: 16px; border: none; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; font-weight: 800; letter-spacing: .2px; font-size: 17px; transition: filter 140ms ease, transform 140ms ease; }
.choose-btn:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.choose-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring), 0 10px 28px rgba(0,0,0,0.25); }
.choose-btn:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; filter: none; box-shadow: none; transform: none; }
.jg-template-soon-wrap { display: flex; flex-direction: column; gap: 12px; flex: 1 1 100%; }
.jg-template-soon-wrap .choose-btn { margin-top: 0; }
.jg-template-soon-wrap .choose-btn.is-soon-disabled { opacity: 1; color: #e2e8f0; background: linear-gradient(180deg, #64748b 0%, #475569 100%); border: 1px solid rgba(255,255,255,0.08); }
.jg-template-soon-note { position: relative; overflow: hidden; padding: 14px 15px 15px; border-radius: 16px; background: linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(30,41,59,0.98) 100%); border: 1px solid rgba(59,130,246,0.20); box-shadow: 0 14px 34px rgba(15,23,42,0.14); color: #dbe7f5; }
.jg-template-soon-note::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%); }
.jg-template-soon-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: rgba(96,165,250,0.16); border: 1px solid rgba(96,165,250,0.24); color: #bfdbfe; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.jg-template-soon-text { margin-top: 10px; font-size: 13px; line-height: 1.65; color: #cbd5e1; }

/* Seç butonunun üstünde tek satır kargo bilgisi */
.lead-time-row { margin-top: 8px; display: flex; align-items: center; justify-content: center; }
.lead-time { color: var(--muted); font-size: 14px; font-weight: 700; }

@media (min-width: 769px) {
  header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
  }

  header nav {
    margin-left: 18px;
  }

  header nav ul {
    gap: 10px;
  }

  .account-area {
    float: none;
    margin-top: 0;
    margin-left: 12px;
  }
}

.size-box { display: none; margin-top: 12px; border: 1px solid var(--border); border-radius: 14px; padding: 12px; background: var(--stripe); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.size-box.open { display: block; }
.size-title { font-weight: 900; color: var(--fg); font-size: 14px; margin-bottom: 10px; }
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.size-cell { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 10px 10px; border-radius: 12px; border: 1px dashed var(--border); background: rgba(15,23,42,0.02); }
.size-label { font-weight: 900; color: var(--fg); font-size: 13px; }
.size-input { width: 70px; padding: 10px 10px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--fg); font-weight: 900; text-align: center; }
.size-input:focus-visible { outline: none; border-color: rgba(99,102,241,0.45); box-shadow: 0 0 0 2px var(--ring); }
.size-summary { margin-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-weight: 800; font-size: 13px; }
.size-summary .size-status { color: var(--muted); font-weight: 900; display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 12px; border: 1px solid currentColor; background: rgba(255,255,255,0.75); user-select: none; transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease; }
.size-summary .size-status:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ring); }
.size-box.invalid { border-color: rgba(227, 27, 35, 0.55); background: linear-gradient(180deg, rgba(227,27,35,0.10) 0%, rgba(227,27,35,0.06) 100%); }
.size-box.invalid .size-status { color: #b91c1c; }
.size-box.valid { border-color: rgba(46, 204, 113, 0.55); background: linear-gradient(180deg, rgba(46,204,113,0.10) 0%, rgba(46,204,113,0.06) 100%); }
.size-box.valid .size-status { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); border-color: transparent; color: #fff; }

.custom-size-box { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 12px; background: var(--stripe); box-shadow: 0 8px 24px rgba(0,0,0,0.06); opacity: 0.8; }
.custom-size-box.enabled { opacity: 1; }
.afis-passive { opacity: 0.45; filter: grayscale(0.15); }
.afis-passive button,
.afis-passive input,
.afis-passive select { pointer-events: none; }
.custom-size-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.custom-size-toggle { flex: 0 0 auto; }
.custom-size-toggle.active { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; border-color: transparent; }
.custom-size-hint { color: var(--muted); font-weight: 800; font-size: 13px; }
.custom-size-fields { margin-top: 10px; display: grid; grid-template-columns: 90px 1fr 1fr; gap: 10px; }
.custom-size-unit { width: 100%; padding: 10px 10px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--fg); font-weight: 900; }
.custom-size-fields input { width: 100%; padding: 10px 10px; border-radius: 12px; border: 1px solid var(--border); background: #fff; color: var(--fg); font-weight: 900; }
.custom-size-unit:focus-visible, .custom-size-fields input:focus-visible { outline: none; border-color: rgba(99,102,241,0.45); box-shadow: 0 0 0 2px var(--ring); }

@media (max-width: 560px) {
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .size-input { width: 64px; }
  .custom-size-fields { grid-template-columns: 1fr 1fr; }
  .custom-size-unit { grid-column: 1 / -1; }
}

.reviews-section {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  content-visibility: auto;
  contain-intrinsic-size: 820px;
}
.seo-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
.reviews-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.reviews-head h2 { margin: 0; font-size: 1.35rem; color: #0f172a; font-weight: 800; }
.reviews-summary { margin-top: 0.35rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.reviews-stars { display: inline-flex; align-items: center; gap: 4px; color: #f59e0b; font-size: 1.05rem; }
.reviews-meta { color: #475569; font-weight: 700; }
.reviews-variant-filter {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.reviews-variant-chip {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  border-radius: 999px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1.1;
}
.reviews-variant-chip:hover {
  border-color: rgba(109, 40, 217, 0.28);
  background: rgba(109, 40, 217, 0.04);
}
.reviews-variant-chip.is-active {
  border-color: rgba(109, 40, 217, 0.35);
  background: rgba(109, 40, 217, 0.10);
  color: #5b21b6;
}
.reviews-variant-chip__count {
  min-width: 1.5em;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}
.reviews-variant-chip.is-active .reviews-variant-chip__count {
  background: rgba(109, 40, 217, 0.14);
}
.review-variant-badge {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.08);
  color: #6d28d9;
  font-size: 11px;
  font-weight: 800;
}
.review-variant-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #0f172a;
  font-weight: 700;
}
body.dark-mode .reviews-variant-chip {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}
body.dark-mode .reviews-variant-chip.is-active {
  background: rgba(167, 139, 250, 0.16);
  border-color: rgba(167, 139, 250, 0.35);
  color: #e9d5ff;
}
body.dark-mode .review-variant-select {
  background: #0b1220;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.reviews-body { margin-top: 1rem; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.25rem; }
.reviews-list { display: flex; flex-direction: column; gap: 0.9rem; }
.review-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #ffffff;
}
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.review-name { font-weight: 800; color: #0f172a; }
.review-name.is-verified,
.jg-reviews-preview-name.is-verified {
  color: #0f172a;
  letter-spacing: 0.01em;
}
.review-name.is-verified::before,
.jg-reviews-preview-name.is-verified::before {
  content: '✓';
  display: inline-block;
  margin-right: 6px;
  color: #1d4ed8;
  font-weight: 900;
}
body.dark-mode .review-name.is-verified,
body.dark-mode .jg-reviews-preview-name.is-verified { color: #f8fafc; }
body.dark-mode .review-name.is-verified::before,
body.dark-mode .jg-reviews-preview-name.is-verified::before { color: #93c5fd; }
.review-date { color: #94a3b8; font-weight: 700; font-size: 0.85rem; }
.review-stars { display: inline-flex; align-items: center; gap: 3px; color: #f59e0b; font-size: 0.95rem; }
.review-text { margin-top: 0.55rem; color: #334155; line-height: 1.55; }
.review-translate { margin-top: 0.45rem; display: grid; gap: 0.35rem; }
.review-translate-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0;
  cursor: pointer;
  width: fit-content;
  text-align: left;
}
.review-translate-btn:hover { text-decoration: underline; }
.review-text-tr {
  color: #475569;
  line-height: 1.5;
  font-size: 0.92rem;
  padding: 0.45rem 0.6rem;
  border-left: 2px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
}
.jg-reviews-preview-item .review-translate { margin-top: 0.35rem; }
.jg-reviews-preview-item .review-translate-btn { font-size: 0.8rem; }
.jg-reviews-preview-item .review-text-tr { font-size: 0.84rem; padding: 0.35rem 0.5rem; }
.review-item.is-real {
  border-color: #bfdbfe;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.06);
}
.reviews-more-wrap {
  display: flex;
  justify-content: center;
  padding: 0.85rem 0 0.25rem;
  grid-column: 1 / -1;
}
.reviews-more-wrap[hidden] {
  display: none !important;
}
.reviews-more-btn {
  appearance: none;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.85rem 1.55rem;
  cursor: pointer;
  min-width: min(100%, 280px);
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease, background 0.12s ease;
}
.reviews-more-btn:hover {
  border-color: #2563eb;
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}
body.dark-mode .reviews-more-btn {
  background: #0b1220;
  border-color: rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
}
body.dark-mode .reviews-more-btn:hover {
  border-color: #60a5fa;
  background: #111c31;
}
.review-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 1rem;
  color: #64748b;
  font-weight: 700;
  background: #f8fafc;
}
.review-form {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  background: #f8fafc;
}
.review-form-title { margin: 0 0 0.75rem 0; font-weight: 900; color: #0f172a; }
.review-form-row { display: grid; gap: 0.45rem; margin-bottom: 0.8rem; }
.review-label { font-weight: 800; color: #0f172a; font-size: 0.95rem; }
.review-form input[type="text"], .review-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.review-form textarea { min-height: 110px; resize: vertical; }
.review-rating-input { display: inline-flex; align-items: center; gap: 6px; }
.review-rating-input .star-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #f59e0b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.review-rating-input .star-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08); border-color: #fcd34d; }
.review-form-actions { display: grid; gap: 0.5rem; }
.review-submit {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.review-note { color: #dc2626; font-weight: 800; min-height: 1.1em; }
@media (max-width: 900px) {
  .reviews-body { grid-template-columns: 1fr; }
}

/* ===== Kartvizit page premium UX polish (scoped) ===== */
body.jg-kv-page .jg-social-proof {
  margin: 6px 0 4px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,243,255,0.94));
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.06);
}
body.jg-kv-page .jg-social-item {
  font-size: 12px;
}
body.jg-kv-page .jg-social-tx {
  color: #0f172a;
  font-weight: 800;
}
body.dark-mode.jg-kv-page .jg-social-tx {
  color: rgba(255, 255, 255, 0.96);
}

body.jg-kv-page .jg-quick-chip {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  border-color: rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
body.jg-kv-page .jg-quick-cat-chip {
  padding: 2px 7px;
  font-size: 0.62rem;
  font-weight: 700;
  border-color: rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  color: #64748b;
  box-shadow: none !important;
}
body.jg-kv-page .jg-quick-cat-chip:hover {
  border-color: rgba(124, 58, 237, 0.18);
  color: #475569;
  background: #fff;
  box-shadow: none !important;
}
body.jg-kv-page .jg-quick-cat-chip.active {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  color: #fff;
  box-shadow: none !important;
}
body.jg-kv-page .jg-quick-categories-wrap {
  margin: 0;
}
body.jg-kv-page .jg-quick-categories {
  padding: 0 28px;
  gap: 4px;
}
body.jg-kv-page .jg-quick-chip:hover {
  transform: none;
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: none;
}
body.jg-kv-page .jg-quick-scroll {
  z-index: 10;
  width: 24px;
  height: 24px;
  font-size: 12px;
  background: #fff;
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: none;
}
body.jg-kv-page .jg-quick-chip.active {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: none;
}

body.jg-kv-page .stripe.jg-discovery-card {
  display: flex;
  flex-direction: column;
  padding: 5px 5px 6px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  content-visibility: visible;
  contain: none;
  min-height: 100%;
}
body.jg-kv-page .stripe.jg-discovery-card > .jg-discovery-summary {
  flex: 1 1 auto;
  height: 100%;
}
body.jg-kv-page .stripe.jg-discovery-card.is-collapsed:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  border-color: rgba(124, 58, 237, 0.22);
}
body.jg-kv-page .stripe.jg-discovery-card.is-selected {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.18),
    0 0 0 1px rgba(124, 58, 237, 0.28),
    0 16px 32px rgba(15, 23, 42, 0.08);
}
body.jg-kv-page .jg-discovery-summary {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  max-height: none;
  min-height: 0;
  overflow: visible;
}
body.jg-kv-page .jg-discovery-summary-media {
  position: relative;
  order: 0;
  grid-column: unset;
  grid-row: unset;
  width: 100%;
  align-self: stretch;
}
body.jg-kv-page .jg-discovery-cargo-free {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 0;
  width: 100%;
  min-height: 20px;
  margin: -6px 0 0;
  padding: 4px 8px;
  box-sizing: border-box;
  background: #5c5c5c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
body.jg-kv-page .jg-discovery-cargo-free[hidden] {
  display: none !important;
}
body.dark-mode .jg-discovery-cargo-free {
  background: #3f3f46;
  color: #f4f4f5;
}
body.jg-kv-page .jg-discovery-summary-photo {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  border-radius: 8px;
}
body.jg-kv-page .jg-discovery-summary.is-cargo-free .jg-discovery-summary-photo {
  border-radius: 8px 8px 0 0;
}
body.jg-kv-page .jg-discovery-summary-body {
  order: 1;
  grid-column: unset;
  grid-row: unset;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  padding: 0 2px;
}
body.jg-kv-page .jg-discovery-summary-cargo {
  display: none;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  color: #64748b;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
body.jg-kv-page .jg-discovery-summary-cargo:not([hidden]) {
  display: block;
}
body.jg-kv-page .stripe.kv100-campaign.jg-discovery-card,
body.jg-kv-page .stripe.is-kv100-discovery.jg-discovery-card {
  background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.12);
  transform: scale(1.015);
  transform-origin: center top;
}
body.jg-kv-page .stripe.kv100-campaign.jg-discovery-card.is-collapsed:hover,
body.jg-kv-page .stripe.is-kv100-discovery.jg-discovery-card.is-collapsed:hover {
  border-color: rgba(168, 85, 247, 0.28);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.08);
}
body.jg-kv-page .jg-discovery-summary.is-kv100-summary .jg-discovery-summary-body {
  align-items: flex-start;
  text-align: left;
}
body.jg-kv-page .jg-discovery-summary.is-kv100-summary .jg-discovery-summary-tag {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
  border: 1px solid rgba(124, 58, 237, 0.18);
}
body.jg-kv-page .jg-discovery-summary.is-kv100-summary .jg-discovery-summary-meta,
body.jg-kv-page .jg-discovery-summary-meta.is-kv100-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  min-height: 0;
  width: 100%;
}
body.jg-kv-page .jg-discovery-summary.is-kv100-summary .jg-discovery-summary-price-row,
body.jg-kv-page .jg-discovery-summary-meta.is-kv100-meta .jg-discovery-summary-price-row {
  width: 100%;
  justify-content: flex-start;
}
body.jg-kv-page .jg-discovery-summary.is-kv100-summary .jg-discovery-summary-price,
body.jg-kv-page .jg-discovery-summary-meta.is-kv100-meta .jg-discovery-summary-price {
  justify-items: start;
  text-align: left;
}
body.jg-kv-page .jg-discovery-summary.is-kv100-summary .jg-discovery-summary-cargo {
  color: #7c3aed;
}
body.jg-kv-page .jg-discovery-campaign-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.24);
  pointer-events: none;
}
body.jg-kv-page .jg-discovery-summary-tag { display: none !important; }
body.jg-kv-page .jg-discovery-summary-title {
  order: 1;
  font-size: 11.5px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  -webkit-line-clamp: 2;
  min-height: calc(1.2em * 2);
  height: calc(1.2em * 2);
  overflow-wrap: anywhere;
  word-break: break-word;
  cursor: pointer;
}
body.jg-kv-page .jg-discovery-summary-title.is-open {
  -webkit-line-clamp: unset;
  display: block;
  height: auto;
  max-height: none;
  overflow: visible;
  white-space: normal;
}
body.jg-kv-page .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-copy {
  display: none;
}
body.jg-kv-page .jg-discovery-cta-hint {
  display: none !important;
}
body.jg-kv-page .jg-discovery-summary-reviews {
  order: 3;
  min-height: 16px;
  max-height: none;
  gap: 2px 6px;
  flex-wrap: nowrap;
  overflow: visible;
  align-items: center;
  width: 100%;
}
body.jg-kv-page .jg-discovery-summary-stars { font-size: 10px; }
body.jg-kv-page .jg-discovery-summary-review-count {
  color: #64748b;
  font-size: 9px;
  font-weight: 800;
}
body.jg-kv-page .jg-discovery-summary-review-jump {
  padding: 1px 5px;
  font-size: 9px;
  margin-left: auto;
}
body.jg-kv-page .jg-monthly-orders {
  font-size: 10px;
  gap: 3px;
}
body.jg-kv-page .jg-monthly-orders__star { font-size: 9px; }
body.jg-kv-page .jg-discovery-summary-meta { order: 4; min-height: 0; }
body.jg-kv-page .jg-discovery-summary-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}
body.jg-kv-page .jg-discovery-summary-price-row > .jg-discovery-summary-price {
  justify-items: start;
  text-align: left;
}
body.jg-kv-page .jg-discovery-summary-features {
  display: inline-flex;
  max-width: 46%;
  min-height: 18px;
  height: auto;
  padding: 2px 6px;
  font-size: 8px;
  line-height: 1.15;
  border-radius: 6px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
body.jg-kv-page .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-features,
body.jg-kv-page .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-features-panel {
  display: none !important;
}
body.jg-kv-page .jg-discovery-summary-features-panel {
  display: none;
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px dashed rgba(124, 58, 237, 0.22);
  background: rgba(245, 243, 255, 0.9);
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}
body.jg-kv-page .jg-discovery-summary-features-panel:not([hidden]) {
  display: block;
}
body.jg-kv-page .jg-discovery-summary-features.is-open {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.4);
}
body.jg-kv-page .jg-discovery-summary-price-main {
  font-size: 15px;
  line-height: 1.1;
  color: #059669;
  letter-spacing: -0.03em;
}
body.jg-kv-page .jg-discovery-summary-copy {
  order: 5;
  color: #64748b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.jg-kv-page .jg-discovery-summary .lead-time-row {
  order: 6;
  min-height: 0;
  align-items: flex-start;
}
body.jg-kv-page .jg-discovery-summary .lead-time {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  color: #475569;
}
body.jg-kv-page .jg-discovery-summary-ctas {
  order: 18;
  grid-column: unset;
  grid-row: unset;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 4px;
  width: 100%;
  margin-top: auto;
  padding-top: 2px;
  flex: 0 0 auto;
}
body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-summary-actionprimary,
body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-summary-upload-col,
body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-summary-campaign-col,
body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-wa-row {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  height: auto;
}
.jg-discovery-wa-row {
  flex: 0 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%;
  height: auto;
  min-height: 24px;
  max-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
  margin-top: 2px;
  padding: 3px 6px;
  border-radius: 8px;
  border: 1px solid rgba(37, 211, 102, 0.18);
  background: rgba(240, 253, 244, 0.7);
  box-sizing: border-box;
}
.jg-discovery-wa-row__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
  line-height: 1.1;
}
.jg-discovery-wa-row__label i {
  color: #25d366;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.jg-discovery-wa-switch {
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 auto;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.jg-discovery-wa-switch__opt {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  letter-spacing: 0.03em;
  padding: 4px 8px;
  color: #64748b;
  line-height: 1;
  border-radius: 0;
  box-shadow: none;
  min-width: 28px;
}
.jg-discovery-wa-switch__opt.is-active {
  background: #25d366;
  color: #fff;
}
.jg-discovery-wa-switch[data-on="0"] .jg-discovery-wa-switch__opt.is-active {
  background: #94a3b8;
  color: #fff;
}
body.dark-mode .jg-discovery-wa-row {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.18);
}
body.dark-mode .jg-discovery-wa-row__label {
  color: #94a3b8;
}
body.dark-mode .jg-discovery-wa-switch {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.22);
}
body.dark-mode .jg-discovery-wa-switch__opt {
  color: #94a3b8;
}
body.jg-kv-page .jg-discovery-summary-campaign-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 72px;
}
body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-summary-upload-col {
  min-height: 72px;
}
body.jg-kv-page .jg-discovery-summary-campaign-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 72px;
  box-sizing: border-box;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px dashed rgba(5, 150, 105, 0.28);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), rgba(240, 253, 244, 0.72));
  color: #065f46;
  text-align: center;
}
body.jg-kv-page .jg-discovery-summary-campaign-note strong {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
body.jg-kv-page .jg-discovery-summary-campaign-note span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: #047857;
}
body.jg-kv-page .jg-discovery-upload-helper {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2px;
  width: 100%;
  margin-top: 1px;
  padding: 0;
  font-size: 9px;
  line-height: 1.3;
  text-align: left;
  max-height: none;
  -webkit-line-clamp: unset;
}
body.jg-kv-page .jg-discovery-upload-helper__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.jg-kv-page .jg-discovery-upload-helper__more {
  display: inline;
  flex: 0 0 auto;
}
body.jg-kv-page .jg-discovery-upload-helper.is-open {
  flex-wrap: wrap;
}
body.jg-kv-page .jg-discovery-upload-helper.is-open .jg-discovery-upload-helper__text {
  flex: 1 1 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
body.jg-kv-page .jg-discovery-upload-helper.is-open .jg-discovery-upload-helper__more {
  display: none;
}
body.jg-kv-page .jg-discovery-summary-upload-col {
  overflow: visible;
}
body.jg-kv-page .jg-discovery-summary-reviews {
  flex-wrap: wrap;
  max-width: 100%;
}
body.jg-kv-page .jg-discovery-summary-review-jump {
  flex: 0 1 auto;
  max-width: 100%;
}
body.jg-kv-page .jg-discovery-summary-actionprimary {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
}
body.jg-kv-page .jg-discovery-summary-actionprimary > .jg-discovery-mini-btn,
body.jg-kv-page .jg-discovery-summary-actionprimary > .jg-cta-with-arrows {
  flex: 1 1 auto;
  width: 100%;
  align-self: stretch;
}
body.jg-kv-page .jg-discovery-summary-actionprimary .jg-discovery-mini-btn {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: auto;
  align-self: stretch;
}
body.jg-kv-page .jg-discovery-ai-suitable {
  font-size: 8.5px;
  gap: 3px;
  color: #6d28d9;
  justify-content: center;
  text-align: center;
}
body.jg-kv-page .jg-discovery-ai-suitable__icon {
  width: 11px;
  height: 11px;
}
body.jg-kv-page .jg-discovery-select-expand,
body.jg-kv-page .jg-discovery-select-expand[hidden] {
  display: flex !important;
  order: 20;
  visibility: hidden;
  pointer-events: none;
  min-height: 24px;
  height: 24px;
  margin-top: 4px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 9px;
}
body.jg-kv-page .stripe.jg-discovery-card.is-selected.is-collapsed .jg-discovery-select-expand,
body.jg-kv-page .stripe.jg-discovery-card.is-selected.is-collapsed .jg-discovery-select-expand[hidden] {
  visibility: visible;
  pointer-events: auto;
}
body.jg-kv-page .jg-discovery-mini-btn {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  min-height: 28px;
  height: auto;
  max-height: none;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 10.5px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
  white-space: normal;
  overflow-wrap: break-word;
  overflow: visible;
  text-overflow: unset;
  text-align: center;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}
body.jg-kv-page .jg-discovery-summary-actionprimary .jg-discovery-mini-btn.is-primary {
  min-height: 34px;
  max-height: none;
  padding: 7px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.2);
}
body.jg-kv-page .jg-discovery-summary-cta-arrows {
  align-items: center;
  justify-content: center;
  min-height: 34px;
  height: auto;
  gap: 3px;
  padding: 0 6px;
  border-radius: 10px;
  background: #7c3aed;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.2);
}
body.jg-kv-page .jg-discovery-summary-actionprimary .jg-discovery-summary-cta-arrows > .jg-discovery-mini-btn.is-primary {
  min-height: 0;
  padding: 6px 2px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
}
body.jg-kv-page .jg-discovery-summary-cta-arrows > .jg-cta-bounce-arrow {
  align-self: center;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  color: #fff;
  opacity: 0.95;
}
body.jg-kv-page .jg-discovery-mini-btn.is-primary {
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.14);
}
body.jg-kv-page .jg-discovery-mini-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
body.jg-kv-page .jg-discovery-summary-actionprimary .jg-discovery-mini-btn.is-primary:hover {
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

body.jg-kv-page .reviews-section {
  margin-top: 18px;
  border: 1px solid rgba(124, 58, 237, 0.10);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  padding: 16px;
}
body.jg-kv-page .reviews-section h2 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
body.jg-kv-page .reviews-summary {
  margin-top: 6px;
}

body.jg-kv-page #jgSmartRecoMount {
  right: max(12px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 4100;
}
body.jg-kv-page .jg-smart-ai-launcher,
body.jg-kv-page .jg-smart-ai-fab,
body.jg-kv-page .jg-corner-wa {
  display: none !important;
}
body.jg-kv-page:has(.jg-home-ai) #jgSmartRecoMount:not(:has(.jg-smart-ai.is-open)) {
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* Speech bubble covered the right-hand variant cards; FAB stays. */
body.jg-kv-page .jg-smart-ai-bubble {
  display: none !important;
}
@media (min-width: 769px) {
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) #stripesRoot,
  body.jg-kv-page .jg-variant-rail-shell:has(#stripesRoot > .stripe:nth-child(2)) #stripesRoot {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
  }
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) #stripesRoot,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .jg-variant-rail-track {
    scroll-padding-right: 88px;
    padding-right: 88px;
  }
  body.jg-kv-page .jg-smart-ai-fab {
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
  }
}
@media (max-width: 920px) {
  body.jg-kv-page .jg-smart-ai-fab {
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
  }
  body.jg-kv-page .jg-smart-ai-fab-text {
    display: none;
  }
}

/* Mobile: Trendyol-style 2-col compact tiles + expand to full summary (UI only) */
@media (max-width: 768px) {
  body.jg-kv-page #jgSmartRecoMount {
    left: auto;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    width: auto;
    z-index: 4300;
  }

  body.jg-kv-page .jg-social-proof {
    margin: 8px 0 12px;
  }

  /* Default stacked card (single-variant / non-grid pages) */
  body.jg-kv-page .stripe.jg-discovery-card {
    padding: 12px;
    border-radius: 16px;
    min-height: 0;
  }

  body.jg-kv-page .stripe.jg-discovery-card.is-collapsed:hover {
    transform: none;
  }

  body.jg-kv-page .jg-discovery-summary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  body.jg-kv-page .jg-discovery-summary-media {
    order: 0;
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    align-self: stretch;
  }

  body.jg-kv-page .jg-discovery-summary-photo {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    padding: 12px;
    border-radius: 14px;
  }
  body.jg-kv-page .jg-discovery-summary.is-cargo-free .jg-discovery-summary-photo {
    border-radius: 14px 14px 0 0;
  }

  body.jg-kv-page .jg-discovery-cargo-free {
    min-height: 22px;
    font-size: 11px;
  }

  body.jg-kv-page .jg-discovery-summary-body {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    grid-column: unset;
    grid-row: unset;
  }

  body.jg-kv-page .jg-discovery-summary-tag {
    display: none !important;
  }

  body.jg-kv-page .jg-discovery-summary-title {
    grid-column: unset;
    grid-row: unset;
    order: 1;
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    -webkit-line-clamp: 4;
    align-self: stretch;
    cursor: pointer;
  }

  body.jg-kv-page .jg-discovery-summary-title.is-open {
    -webkit-line-clamp: unset;
    display: block;
    height: auto;
    max-height: none;
    overflow: visible;
    white-space: normal;
  }

  body.jg-kv-page .jg-discovery-summary-reviews {
    grid-column: unset;
    grid-row: unset;
    order: 3;
    min-height: 0;
    flex-wrap: nowrap;
    gap: 4px 6px;
    align-self: stretch;
    align-items: center;
    white-space: nowrap;
    overflow: visible;
    max-height: none;
    width: 100%;
  }

  body.jg-kv-page .jg-discovery-summary-stars {
    font-size: 13px;
    flex: 0 0 auto;
  }

  body.jg-kv-page .jg-discovery-summary-review-count {
    font-size: 12px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  body.jg-kv-page .jg-discovery-summary-review-jump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    min-height: 18px;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.22);
    background: rgba(124, 58, 237, 0.06);
    color: #6d28d9;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  body.jg-kv-page .jg-discovery-summary-meta {
    grid-column: unset;
    grid-row: unset;
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    min-height: 0;
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
  }

  body.jg-kv-page .jg-discovery-summary-qtystack {
    display: grid;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    gap: 4px;
  }

  body.jg-kv-page .jg-discovery-summary-qty-select {
    max-width: none;
    width: 100%;
    min-height: 40px;
    font-size: 14px;
    padding: 8px 32px 8px 12px;
  }

  body.jg-kv-page .jg-discovery-summary-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  body.jg-kv-page .jg-discovery-summary-price,
  body.jg-kv-page .jg-discovery-summary-price-row > .jg-discovery-summary-price {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    justify-items: start;
    text-align: left;
  }

  body.jg-kv-page .jg-discovery-summary-price-main {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 3px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  body.jg-kv-page .jg-discovery-summary-price-main .jg-tl {
    display: inline;
    font-size: 0.55em;
    margin-left: 1px;
    vertical-align: super;
    line-height: 1;
    opacity: 0.85;
  }

  body.jg-kv-page .jg-discovery-summary-features {
    display: inline-flex !important;
    flex: 0 0 auto;
    width: auto;
    max-width: 46%;
    min-height: 20px;
    height: auto;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
    color: #7c3aed;
  }

  html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-meta,
  html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    min-height: 0;
  }

  html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-qtystack,
  html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-qtystack {
    width: 100%;
  }

  html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-price-row,
  html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-price-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 0 0 auto;
    gap: 4px;
    min-width: 0;
    min-height: 0;
    height: auto;
  }

  html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-price,
  html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-price {
    flex: 0 0 auto;
    justify-items: start;
    text-align: left;
    min-width: 0;
    max-width: 100%;
  }

  html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-features,
  html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-features {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    height: auto;
    min-height: 28px;
    margin: 0;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    writing-mode: horizontal-tb;
  }

  html.is-bayrak-product body.jg-kv-page .jg-discovery-summary-measure,
  html.is-ambalaj-product body.jg-kv-page .jg-discovery-summary-measure {
    order: 3;
    margin-top: 2px;
  }

  html.is-bayrak-product body.jg-kv-page .stripe.jg-discovery-card.is-collapsed.is-measure-open .jg-discovery-summary-sizes,
  html.is-ambalaj-product body.jg-kv-page .stripe.jg-discovery-card.is-collapsed.is-measure-open .jg-discovery-summary-sizes {
    display: flex;
  }

  body.jg-kv-page .jg-discovery-summary-unit {
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  body.jg-kv-page .jg-discovery-summary-copy {
    grid-column: unset;
    grid-row: unset;
    order: 5;
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.jg-kv-page .jg-discovery-summary .lead-time-row {
    grid-column: unset;
    grid-row: unset;
    order: 6;
    margin-top: 0;
  }

  body.jg-kv-page .jg-discovery-summary .lead-time {
    font-size: 12px;
    line-height: 1.35;
  }

  body.jg-kv-page .jg-discovery-select-expand,
  body.jg-kv-page .jg-discovery-select-expand[hidden] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    min-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  body.jg-kv-page .jg-discovery-summary-ctas {
    order: 18;
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: auto;
  }

  body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-summary-actionprimary,
  body.jg-kv-page .jg-discovery-summary-ctas > .jg-discovery-summary-upload-col {
    flex: 1 1 auto;
    width: 100%;
  }

  body.jg-kv-page .jg-discovery-mini-btn {
    width: 100%;
    min-height: 32px;
    height: auto;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  body.jg-kv-page .jg-discovery-summary-actionprimary .jg-discovery-mini-btn.is-primary {
    min-height: 48px;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.25;
    font-weight: 800;
    white-space: normal;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.22);
  }

  body.jg-kv-page .jg-discovery-ai-suitable {
    font-size: 10px;
    line-height: 1.3;
    justify-content: center;
    text-align: center;
  }

  body.jg-kv-page .jg-discovery-ai-suitable__icon {
    width: 12px;
    height: 12px;
  }

  body.jg-kv-page .jg-discovery-upload-helper {
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
  }

  body.jg-kv-page .jg-discovery-summary-upload-surface {
    margin-top: 8px;
  }

  body.jg-kv-page .jg-discovery-upload-info-btn {
    top: -12px;
    right: -4px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  body.jg-kv-page .jg-discovery-summary-cta-arrows {
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 4px;
    min-height: 34px;
    padding: 0 6px;
    border-radius: 10px;
    background: #7c3aed;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.2);
  }

  body.jg-kv-page .jg-discovery-summary-cta-arrows > .jg-discovery-mini-btn,
  body.jg-kv-page .jg-discovery-summary-actionprimary .jg-discovery-summary-cta-arrows > .jg-discovery-mini-btn.is-primary {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 6px 2px;
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #fff;
  }

  body.jg-kv-page .jg-discovery-summary-cta-arrows .jg-cta-bounce-arrow {
    display: inline-flex;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    color: #fff;
    opacity: 0.95;
  }

  /* Multi-variant: compact tiles only in grid mode (no expanded card) */
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card {
    padding: 8px;
    border-radius: 12px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .jg-discovery-summary {
    gap: 6px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .jg-discovery-summary-body {
    gap: 4px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed {
    contain-intrinsic-size: auto 320px;
    align-self: stretch;
    min-height: 0;
    height: auto;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-copy,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-gallery-nav {
    display: none !important;
  }

  /* Amazon ray: kompakt kartta CTA/WP yok (sahneye taşındı) */
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-ctas,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-wa-row,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-features {
    display: none !important;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-ctas > .jg-discovery-summary-actionprimary,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-ctas > .jg-discovery-summary-upload-col {
    flex: 0 0 auto;
    width: 100%;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) #stripesRoot > .stripe.jg-discovery-card.is-collapsed {
    align-self: stretch;
    min-height: 0;
    height: auto;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) #stripesRoot > .stripe.jg-discovery-card.is-collapsed > .jg-discovery-summary {
    flex: 1 1 auto;
    height: 100%;
    min-height: 100%;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-ctas {
    flex: 0 0 auto;
    margin-top: auto;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-wa-row {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    max-height: 32px;
    margin-top: 2px;
    padding: 3px 5px;
    gap: 4px;
    border-radius: 8px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-wa-row__label {
    font-size: 8.5px;
    gap: 3px;
    letter-spacing: -0.01em;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-wa-row__label i {
    font-size: 10px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-wa-switch__opt {
    font-size: 8px;
    padding: 3px 6px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-upload-surface > .jg-discovery-mini-btn.is-ghost,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-upload-col > .jg-discovery-mini-btn.is-ghost {
    min-height: 28px;
    height: auto;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: none;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-actionprimary .jg-discovery-mini-btn.is-primary {
    font-size: 8.5px;
    padding: 6px 0;
    min-height: 0;
    height: auto;
    letter-spacing: -0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    line-height: 1.1;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-cta-arrows {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2px;
    min-height: 32px;
    padding: 0 4px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-cta-arrows > .jg-discovery-mini-btn {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-cta-arrows > .jg-cta-bounce-arrow {
    display: inline-flex;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    color: #fff;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-row > .jg-discovery-summary-price {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    justify-items: start;
    text-align: left;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-features {
    display: none !important;
    flex: 0 0 auto;
    width: auto;
    max-width: 46%;
    min-height: 20px;
    height: auto;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
    border-radius: 999px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
    color: #7c3aed;
  }

  html.is-bayrak-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-row,
  html.is-ambalaj-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    gap: 4px;
  }

  html.is-bayrak-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-row > .jg-discovery-summary-price,
  html.is-ambalaj-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-row > .jg-discovery-summary-price {
    flex: 0 0 auto;
  }

  html.is-bayrak-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-features,
  html.is-ambalaj-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-features {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    height: auto;
    min-height: 28px;
    margin: 0;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 8px;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    justify-content: center;
  }

  html.is-bayrak-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed.has-measure-picker:not(.is-measure-open) .jg-discovery-summary-qty,
  html.is-ambalaj-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed.has-measure-picker:not(.is-measure-open) .jg-discovery-summary-qty,
  html.is-bayrak-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed.has-measure-picker:not(.is-measure-open) .jg-discovery-summary-qtystack,
  html.is-ambalaj-product body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed.has-measure-picker:not(.is-measure-open) .jg-discovery-summary-qtystack {
    display: none !important;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-upload-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-ai-suitable {
    display: inline-flex !important;
    flex-wrap: nowrap;
    font-size: 7px;
    line-height: 1;
    gap: 2px;
    color: #7c3aed;
    justify-content: center;
    text-align: center;
    padding: 0 1px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-ai-suitable__icon {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-ai-suitable__text {
    font-size: 7px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-helper {
    display: flex !important;
    align-items: baseline;
    justify-content: flex-start;
    gap: 2px;
    width: 100%;
    margin-top: 2px;
    padding: 0;
    font-size: 10px;
    line-height: 1.3;
    text-align: left;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-helper__text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-helper__more {
    display: inline;
    flex: 0 0 auto;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-helper.is-open {
    flex-wrap: wrap;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-helper.is-open .jg-discovery-upload-helper__text {
    flex: 1 1 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-helper.is-open .jg-discovery-upload-helper__more {
    display: none;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-upload-surface {
    position: relative;
    margin-top: 4px;
    overflow: visible;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-upload-col {
    overflow: visible;
    min-height: 0;
    gap: 2px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-upload-info-btn {
    display: inline-flex !important;
    top: -7px;
    right: 1px;
    width: 20px;
    height: 20px;
    font-size: 11px;
    z-index: 5;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.12);
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-select-expand,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-select-expand[hidden],
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-selected.is-collapsed .jg-discovery-select-expand,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-selected.is-collapsed .jg-discovery-select-expand[hidden] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 0;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qtystack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    order: 0;
    width: 100%;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty-stepper {
    display: flex !important;
    width: 100%;
    max-width: none;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty-select {
    display: block !important;
    width: 100%;
    max-width: none;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty {
    order: 1;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty-select {
    min-height: 36px;
    padding: 6px 28px 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    background-position: right 8px center, 0 0;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty-stepper {
    min-height: 36px;
    justify-content: space-between;
    padding: 3px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-qty-input {
    width: 48px;
    min-height: 28px;
    font-size: 13px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-unit {
    display: block;
    order: 2;
    font-size: 10px;
    line-height: 1.25;
    font-weight: 800;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-photo {
    height: 118px;
    min-height: 0;
    max-height: 118px;
    aspect-ratio: unset;
    padding: 6px;
    border-radius: 10px;
  }
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary.is-cargo-free .jg-discovery-summary-photo {
    border-radius: 10px 10px 0 0;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-gallery-dots {
    bottom: 4px;
    gap: 3px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-gallery-dot {
    width: 5px;
    height: 5px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-title {
    font-size: 12px;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    min-height: calc(1.25em * 2);
    height: calc(1.25em * 2);
    cursor: pointer;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-title.is-open {
    -webkit-line-clamp: unset;
    display: block;
    height: auto;
    max-height: none;
    overflow: visible;
    white-space: normal;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-monthly-orders {
    font-size: 10px;
    min-height: 0;
    padding: 2px 6px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-reviews {
    gap: 3px 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
    max-height: none;
    align-items: center;
    width: 100%;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-review-jump {
    display: inline-flex !important;
    margin-left: auto;
    min-height: 16px;
    padding: 2px 6px;
    font-size: 8.5px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-stars {
    font-size: 11px;
    flex: 0 0 auto;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-review-count {
    font-size: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price {
    justify-items: start;
    text-align: left;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary-price-main {
    font-size: 15px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant):not(:has(.stripe.is-expanded)) .stripe.jg-discovery-card.is-collapsed .jg-discovery-summary .lead-time {
    font-size: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Expanded in rail: eski küçük summary; detail gizli */
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded {
    padding: 12px;
    border-radius: 16px;
    contain-intrinsic-size: 640px;
    transform: none;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary {
    min-height: 0;
    max-height: none;
    opacity: 1;
    transform: none;
    margin-bottom: 0;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    overflow: visible;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-detail {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-photo {
    height: auto;
    min-height: 200px;
    max-height: none;
    aspect-ratio: 16 / 10;
    padding: 12px;
    border-radius: 14px;
    transform: none;
  }
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary.is-cargo-free .jg-discovery-summary-photo {
    border-radius: 14px 14px 0 0;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-title {
    font-size: 16px;
    line-height: 1.3;
    -webkit-line-clamp: 5;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-copy {
    max-height: none;
    opacity: 1;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 12px;
    line-height: 1.4;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-meta {
    min-height: 48px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 10px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-qtystack {
    display: grid;
    flex: 1 1 auto;
    min-width: min(100%, 168px);
    max-width: 100%;
    gap: 4px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-unit {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 11px;
    line-height: 1.35;
    max-width: none;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-price-row {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-features,
  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-features-panel {
    display: none !important;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-price-main {
    font-size: 22px;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-select-expand {
    display: none !important;
  }

  body.jg-kv-page .jg-variant-rail-shell:not(.is-single-variant) .stripe.jg-discovery-card.is-expanded .jg-discovery-summary-ctas {
    display: flex;
  }
}
