/* IDN Poker — layout clone olxwil.com (Footlocker Magento PDP) + brand assets */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --fl-navy: #003776;
  --fl-navy-2: #036ad8;
  --fl-black: #0e1111;
  --fl-text: #303030;
  --fl-muted: #777;
  --fl-border: #ddd;
  --fl-bg: #fff;
  --fl-gray: #f7f7f7;
  --gold: #ffd700;
  --gold-2: #ffd900f2;
  --gold-dark: #b8860b;
  --dark: #0a0a0a;
  --dark-2: #120000;
  --cream: #fffdd6;
  --cream-2: #fffccc;
  --wrap: 1280px;
  --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--fl-text);
  background: var(--fl-bg);
  padding-bottom: 96px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--fl-navy); text-decoration: none; }
a:hover { color: var(--fl-navy-2); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
.wrap {
  width: min(100% - 32px, var(--wrap));
  margin: 0 auto;
}

/* ===== Fairy dust (subtle over light shell) ===== */
.fx-dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
  opacity: .55;
}
.page-shell,
.stickycart,
.popup-overlay {
  position: relative;
  z-index: 2;
}
.popup-overlay { z-index: 9999; }

/* ===== HEADER (Footlocker / olxwil) ===== */
.page-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-main {
  padding: 10px 0;
}
.header-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  max-width: 170px;
}
.logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
}
.block-search {
  width: 100%;
}
.search-form {
  display: flex;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
}
.search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  min-height: 46px;
  padding: 0 14px;
  font-size: 14px;
  color: #333;
  background: transparent;
}
.search-form button {
  width: 48px;
  height: 46px;
  border: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hdr-btn {
  padding: 8px 16px;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1.2;
  white-space: nowrap;
}
.hdr-btn-login {
  background: #fff;
  color: var(--fl-navy) !important;
}
.hdr-btn-daftar {
  background: var(--fl-navy);
  color: #fff !important;
}
.hdr-btn-daftar:hover { filter: brightness(1.08); color: #fff !important; }
.hdr-btn-login:hover { background: #f5f5f5; color: var(--fl-navy) !important; }

/* ===== NAV ===== */
.h-navigation {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #e5e5e5;
}
.h-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.h-navigation a {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.h-navigation a:hover { color: var(--fl-navy); }

/* ===== GOLD CTA (olxwil mega buttons) ===== */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 28px auto 8px;
  gap: 30px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.button {
  width: 460px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000 !important;
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 50%, #ffd700 100%);
  background-size: 200% auto;
  border: 2px solid #ffd700;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow:
    0 8px 25px rgba(184, 134, 11, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.5);
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-30deg);
  z-index: 2;
  animation: goldShine 3.5s infinite ease-in-out;
}
.button:hover {
  transform: translateY(-5px) scale(1.02);
  background: linear-gradient(135deg, #fff3a1 0%, #ffd700 50%, #ffaa00 100%);
  border-color: #fff;
  box-shadow:
    0 15px 35px rgba(255, 215, 0, 0.7),
    0 0 15px rgba(255, 215, 0, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.8);
  color: #000 !important;
}
.divider {
  width: 4px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #b8860b, #ffd700, transparent);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes goldShine {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 14px 0 6px;
  font-size: 13px;
  color: #555;
  position: relative;
  z-index: 2;
}
.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #aaa;
}
.breadcrumbs a { color: #111; }
.breadcrumbs strong { color: #111; font-weight: 600; }

/* ===== PRODUCT LAYOUT ===== */
.page-main {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.sticky-gall-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: start;
  margin-top: 10px;
}
.product-media {
  min-width: 0;
}
.sticky-gallery {
  position: sticky;
  top: 88px;
}
.gallery-stage {
  border: 1px solid #e5e5e5;
  background: #fff;
  position: relative;
}
.gallery-stage a { display: block; }
.gallery-stage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  padding: 6px 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
}
/* Caption strip under banner — dofollow KW links (neutral, not yellow chips) */
.gallery-kw-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  font-size: 12px;
  line-height: 1.4;
}
.gallery-kw-strip a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 2px 8px;
  border-right: 1px solid #d4d4d4;
  transition: color .15s ease;
}
.gallery-kw-strip a:last-child {
  border-right: 0;
}
.gallery-kw-strip a:hover {
  color: #003776;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid #111;
}
.banner-under-actions {
  display: none !important;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
  border: 1px solid #111;
}
.banner-under-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.banner-under-actions .login {
  background: #a71313;
  color: #fff !important;
}
.banner-under-actions .daftar {
  background: linear-gradient(180deg, #1e8fd6 0%, #0f6fb0 55%, #0a527f 100%);
  color: #fff !important;
  border-left: 1px solid #111;
}

/* ===== PRODUCT INFO ===== */
.product-info-main { min-width: 0; }
.pdp-brand-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: rgb(128, 119, 0);
  text-transform: uppercase;
}
.page-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.25;
  color: #111;
  font-weight: 700;
}
.prod-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}
.prod-attributes .gender {
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}
.prod-attributes .sku { color: #777; }
.price-box .price {
  font-size: 28px;
  font-weight: 800;
  color: #111;
}
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 12px 0 16px;
  font-size: 14px;
  color: #515151;
}
.rating-row .stars { color: #111; letter-spacing: 1px; }
.rating-row .score { font-weight: 800; color: #111; }
.swatch-label {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}
.swatch-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.swatch-option {
  border: 1px solid #ccc;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  background: #fff;
  text-transform: uppercase;
}
.swatch-option.is-selected,
.swatch-option:hover {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}
.return-policy-pdp,
.free-shipping {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.return-policy-pdp .ico,
.free-shipping .ico {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.free-shipping h3 {
  margin: 0 0 2px;
  font-size: 14px;
  color: #111;
}
.free-shipping p { margin: 0; }
.box-tocart {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
.field-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.field-qty label {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.field-qty select {
  min-width: 72px;
  min-height: 40px;
  border: 1px solid #ccc;
  padding: 0 10px;
  font-size: 14px;
  background: #fff;
}
.buynow-button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.buynow-button a,
.buynow-button button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 0;
  text-decoration: none !important;
}
.buynow-button .btn-login {
  background: #111;
  color: #fff !important;
}
.buynow-button .btn-daftar {
  background: var(--fl-navy);
  color: #fff !important;
}
.buynow-button a:hover { filter: brightness(1.08); }

.side-info {
  margin-top: 18px;
  border: 1px solid #e5e5e5;
}
.side-info__head {
  background: var(--fl-navy);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  background: #fff;
}
.info-row:last-child { border-bottom: 0; }
.info-label { color: #777; }
.info-value { color: #111; font-weight: 700; text-align: right; }

/* ===== DETAILS / FAQ / REVIEWS ===== */
.product-tabs {
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.tab-title {
  display: inline-block;
  padding: 12px 18px;
  border-bottom: 3px solid #111;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}
.pdp-description-section {
  background: #0a0a0a;
  padding: 25px;
  border: 2px solid rgba(255, 234, 0, 0.976);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 255, 0, 0.4);
}
.desc-title {
  color: #ffd900f2;
  text-shadow: 0 0 15px #ffd900f2;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  letter-spacing: 2px;
  margin: 0 0 22px;
  text-transform: uppercase;
  line-height: 1.3;
}
.pdp-desc {
  color: #fffccc;
  line-height: 1.7;
  font-size: 16px;
  text-align: justify;
}
.pdp-desc p { margin: 0 0 14px; }
/* Anchors: dofollow, NO yellow keyword highlight (business rule) */
.pdp-desc a,
.content-explain a,
.kw-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.pdp-desc a:hover,
.content-explain a:hover,
.kw-list a:hover {
  color: #fff;
}
.pdp-desc strong { color: #fffccc; font-weight: 700; }
.kw-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 4px;
}
.kw-list span,
.kw-list a {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.22);
  color: #fffccc;
  background: transparent;
  text-decoration: none;
}
.kw-list a { text-decoration: none; }
.kw-list a:hover { border-color: rgba(255,255,255,.45); }

.games {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 8px;
}
.game {
  background: rgba(255, 211, 106, 0.08);
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.faq-section {
  margin-top: 30px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #140000, #220000, #120000);
  border: 1px solid rgba(252, 255, 60, 0.45);
  box-shadow: 0 0 30px rgba(0, 255, 13, .18);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 221, 0, 0.28), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.faq-section h2 {
  position: relative;
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 28px;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 0 15px #ffd700;
}
.faq-box {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 227, 70, 0.35);
  transition: all .35s ease;
  position: relative;
}
.faq-box:last-child { border-bottom: none; }
.faq-box::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #ffd700, #ff5c7c);
  border-radius: 10px;
  transition: all .35s ease;
  box-shadow: 0 0 15px #ffd700;
}
.faq-box:hover { transform: translateX(6px); }
.faq-box:hover::before { height: 70%; }
.faq-box .cok-faq-q,
.faq-box strong.q {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  color: #ffe23b;
  letter-spacing: .3px;
  text-shadow: 0 0 12px rgba(255, 238, 0, 0.8);
  cursor: pointer;
  font-family: inherit;
}
.faq-box .cok-faq-a,
.faq-box p {
  margin: 12px 0 0;
  font-size: 15.8px;
  line-height: 1.9;
  color: #fffdd6;
  display: none;
}
.faq-box .cok-faq-a.open,
.faq-box.is-open p,
.faq-box.is-open .cok-faq-a {
  display: block;
}

.review-wrapper {
  margin-top: 34px;
  position: relative;
  padding: 28px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0d0d0d, #161010);
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.18);
}
.review-title {
  text-align: center;
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 12px #ffd700;
}
.review-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.review-card:last-child { margin-bottom: 0; }
.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}
.review-user strong {
  display: block;
  color: #ffe6a3;
  font-size: 14px;
}
.review-stars { color: #ffd700; letter-spacing: 1px; font-size: 13px; }
.review-user small { color: #aaa; font-size: 12px; }
.review-card h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}
.review-card p {
  margin: 0;
  color: #fffdd6;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 28px 0 18px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  color: #666;
  font-size: 13px;
  background: #fff;
}
.site-footer p { margin: 0; }

/* ===== STICKY CART (olxwil) ===== */
.stickycart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -4px 18px rgba(0,0,0,.12);
}
.sticky-cart-content {
  width: min(100% - 20px, var(--wrap));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
  padding: 8px 0;
}
.sticky-ung-content {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.sticky-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.sticky-product-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sticky-size {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}
.sticky-size a { color: var(--fl-navy); font-weight: 700; }
.sticky-box-tocart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sticky-box-tocart .price {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}
.buynow-btn-sticky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #fff !important;
  background: var(--fl-navy);
  border: 1px solid #000;
}
.buynow-btn-sticky.login { background: #111; }
.buynow-btn-sticky:hover { filter: brightness(1.08); }

/* Bottom quick menu (kept; all → sagamingforum) */
.cleo-fixed-footer {
  display: none;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay.is-ready { display: flex; }
.popup-overlay-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.popup-overlay-dust.is-on { opacity: 1; }
.popup-container {
  position: relative;
  width: 90%;
  max-width: 420px;
  background: linear-gradient(145deg, rgba(10,10,10,.94), rgba(26,21,16,.9));
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,.7), 0 0 30px rgba(255,215,0,.25);
  padding-bottom: 18px;
  animation: popIn .35s ease;
}
@keyframes popIn {
  from { transform: translateY(12px) scale(.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.popup-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}
.popup-dust.is-on { opacity: 1; }
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
}
.close-btn::before { content: "×"; font-size: 22px; line-height: 1; }
.popup-media { position: relative; z-index: 2; }
.popup-image { width: 100%; height: auto; }
.popup-buttons {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px 8px;
}
.popup-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 10px;
}
.popup-buttons a:first-child {
  background: #111;
  color: #fff !important;
  border: 1px solid #ffd700;
}
.popup-buttons a:last-child {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #000 !important;
  border: 1px solid #ffd700;
}
.popup-footer {
  position: relative;
  z-index: 2;
  padding: 4px 14px 8px;
  color: #ddd;
  font-size: 11px;
  line-height: 1.45;
}
.popup-footer span { color: #ffd700; font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  body { padding-bottom: 0; }
  .stickycart { display: none !important; }
  .header-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo auth"
      "search search";
    gap: 10px;
  }
  .logo { grid-area: logo; }
  .header-auth { grid-area: auth; }
  .block-search { grid-area: search; }
  .button-container {
    flex-direction: column;
    gap: 16px;
    padding: 0 15px;
  }
  .button {
    width: 100%;
    max-width: 460px;
    height: 58px;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .divider { display: none; }
  .sticky-gall-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sticky-gallery { position: static; }
  .h-navigation ul {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .h-navigation a {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 12px;
  }
  .games { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sticky-product-name { font-size: 12px; }
  .sticky-box-tocart .price { display: none; }
}

@media (max-width: 640px) {
  .hdr-btn { padding: 7px 12px; font-size: 12px; }
  .logo img { height: 40px; }
  .page-title { font-size: 1.25rem; }
  .price-box .price { font-size: 22px; }
  .gallery-kw-strip {
    font-size: 11px;
    padding: 8px 6px;
  }
  .gallery-kw-strip a {
    padding: 2px 6px;
  }
  .pdp-description-section,
  .faq-section { padding: 18px 14px; }
  .faq-box .cok-faq-q,
  .faq-box strong.q { font-size: 15px; }
  .faq-box .cok-faq-a,
  .faq-box p { font-size: 14px; line-height: 1.75; }
  .sticky-img img { width: 44px; height: 44px; }
  .buynow-btn-sticky {
    min-width: 78px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .sticky-size { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fx-dust,
  .popup-dust,
  .popup-overlay-dust { display: none !important; }
  .button::before { animation: none; }
}
