:root {
  --rog-bg: #03070a;
  --rog-bg-2: #07131d;
  --rog-panel: rgba(7, 18, 28, .94);
  --rog-panel-2: rgba(9, 28, 40, .88);
  --rog-gold: #d4a13e;
  --rog-gold-soft: #ffdf8d;
  --rog-gold-dark: #6d420b;
  --rog-water: #54c7ff;
  --rog-water-2: #9ce9ff;
  --rog-blood: #c8142d;
  --rog-blood-2: #ff4967;
  --rog-fruit: #ff8a2b;
  --rog-green: #7ff08d;
  --rog-text: #fff1d8;
  --rog-muted: #d2c0a0;
  --rog-line: rgba(212, 161, 62, .52);
  --rog-shadow: 0 26px 100px rgba(0,0,0,.78);
}

.rog-shop-overlay,
.rog-shop-overlay * {
  box-sizing: border-box;
}

.rog-shop-demo-body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--rog-text);
  background:
    radial-gradient(circle at 20% 10%, rgba(84,199,255,.12), transparent 23%),
    radial-gradient(circle at 85% 20%, rgba(200,20,45,.10), transparent 22%),
    linear-gradient(135deg, #07131d, #020304 65%);
}

.rog-shop-overlay button,
.rog-shop-overlay input {
  font: inherit;
}

.rog-shop-demo {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
}

.rog-shop-demo-card {
  position: relative;
  overflow: hidden;
  width: min(920px, 100%);
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  border: 1px solid var(--rog-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 40%, rgba(84,199,255,.18), transparent 20%),
    radial-gradient(circle at 70% 42%, rgba(200,20,45,.14), transparent 20%),
    linear-gradient(135deg, rgba(6,16,24,.98), rgba(2,4,7,.98));
  box-shadow: var(--rog-shadow);
}

.rog-shop-demo-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    conic-gradient(from 90deg, transparent, rgba(255,223,141,.12), transparent, rgba(84,199,255,.12), transparent);
  animation: demoSpin 16s linear infinite;
}

.rog-shop-demo-card > * {
  position: relative;
  z-index: 1;
}

@keyframes demoSpin {
  to { transform: rotate(360deg); }
}

.rog-shop-demo-kicker {
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
}

.rog-shop-demo-card h1 {
  margin: 0 0 12px;
  color: var(--rog-gold-soft);
  font-size: 72px;
  line-height: .92;
  text-shadow: 0 4px 0 #533008, 0 0 28px rgba(212,161,62,.45);
}

.rog-shop-demo-card p {
  max-width: 630px;
  color: #fff2dc;
  font-size: 20px;
}

.rog-shop-gold-button {
  border: 1px solid #ffdf8d;
  color: #fff4d6;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #f5ce70, #9b5a11 56%, #5b2c05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 10px 28px rgba(0,0,0,.42);
}

.rog-shop-gold-button.full {
  width: 100%;
}

.rog-shop-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.rog-shop-overlay.is-open {
  display: flex;
}

.rog-shop-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 15%, rgba(84,199,255,.10), transparent 22%),
    radial-gradient(circle at 68% 25%, rgba(200,20,45,.10), transparent 24%),
    rgba(0,0,0,.80);
  backdrop-filter: blur(8px);
}

.rog-shop-modal {
  position: relative;
  overflow: auto;
  width: min(1580px, 99vw);
  max-height: 95vh;
  padding: 14px;
  border: 2px solid var(--rog-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(84,199,255,.08), transparent 24%),
    radial-gradient(circle at 70% 0%, rgba(200,20,45,.07), transparent 24%),
    linear-gradient(180deg, rgba(4,9,14,.99), rgba(6,16,24,.99));
  box-shadow:
    var(--rog-shadow),
    inset 0 0 80px rgba(212,161,62,.06);
}

.rog-shop-modal::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255,223,141,.20);
  border-radius: 10px;
}

.rog-shop-orb-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 14px;
}

.orb {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: .16;
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.orb-a {
  left: 20%;
  top: -70px;
  background: var(--rog-water);
}

.orb-b {
  right: 12%;
  top: 90px;
  background: var(--rog-blood);
  animation-delay: -3s;
}

.orb-c {
  left: 55%;
  bottom: -110px;
  background: var(--rog-fruit);
  animation-delay: -5s;
}

@keyframes orbFloat {
  from { transform: translate3d(-20px, 0, 0) scale(.95); }
  to { transform: translate3d(26px, 22px, 0) scale(1.12); }
}

.rog-shop-close {
  position: sticky;
  top: 6px;
  z-index: 50;
  float: right;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rog-gold);
  border-radius: 50%;
  color: var(--rog-gold-soft);
  background: rgba(3,7,10,.94);
  cursor: pointer;
  font-size: 34px;
  line-height: .9;
  box-shadow: 0 0 20px rgba(212,161,62,.28);
}

.rog-shop-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,161,62,.28);
}

.rog-shop-logo-main {
  color: var(--rog-gold-soft);
  font-size: 60px;
  line-height: .8;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 0 #533008, 0 0 26px rgba(255,223,141,.42);
}

.rog-shop-logo-sub {
  color: var(--rog-gold-soft);
  letter-spacing: 0;
  font-weight: 900;
  margin-left: 5px;
}

.rog-shop-logo img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.36));
}

.rog-shop-nav {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.rog-shop-nav button,
.rog-shop-wallet {
  color: #f8ecd0;
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
  padding: 11px 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  font-size: 13px;
}

.rog-shop-nav button.active,
.rog-shop-nav button:hover,
.rog-shop-wallet {
  color: var(--rog-gold-soft);
  border-color: rgba(212,161,62,.55);
  background: linear-gradient(180deg, rgba(212,161,62,.13), rgba(0,0,0,.12));
}

.rog-shop-wallet {
  border-radius: 6px;
}

.rog-shop-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 520px 320px;
  gap: 14px;
  min-height: 170px;
  align-items: center;
  margin: 10px 0 12px;
  border: 1px solid var(--rog-line);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,13,19,.95), rgba(12,28,39,.90), rgba(5,12,18,.95));
}

.rog-shop-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stable-light {
  position: absolute;
  left: 15%;
  top: 10%;
  width: 70%;
  height: 80%;
  background:
    linear-gradient(90deg, transparent, rgba(255,223,141,.13), transparent),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(212,161,62,.07) 50px, transparent 54px);
  filter: blur(.2px);
}

.horse-silhouette {
  position: absolute;
  top: 26px;
  width: 180px;
  height: 110px;
  opacity: .55;
  filter: drop-shadow(0 0 20px rgba(255,223,141,.16));
}

.horse-silhouette::before {
  content: "";
  position: absolute;
  inset: 20px 20px 12px 15px;
  border-radius: 48% 42% 38% 45%;
  background: linear-gradient(145deg, #dcc7a2, #4c3217);
}

.horse-silhouette::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 6px;
  width: 48px;
  height: 58px;
  border-radius: 50% 55% 35% 45%;
  transform: rotate(-18deg);
  background: linear-gradient(145deg, #fff1c5, #5a3617);
}

.horse-silhouette.one { left: 265px; }
.horse-silhouette.two { left: 395px; transform: scale(.86) rotateY(180deg); opacity: .42; }

.water-aura,
.blood-aura,
.fruit-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .25;
}

.water-aura {
  right: 390px;
  top: 28px;
  width: 150px;
  height: 80px;
  background: var(--rog-water);
  animation: liquidPulse 3.6s ease-in-out infinite;
}

.blood-aura {
  right: 230px;
  bottom: 22px;
  width: 130px;
  height: 72px;
  background: var(--rog-blood);
  animation: liquidPulse 4.4s ease-in-out infinite reverse;
}

.fruit-aura {
  left: 55%;
  bottom: 18px;
  width: 160px;
  height: 64px;
  background: var(--rog-fruit);
  animation: liquidPulse 4s ease-in-out infinite;
}

@keyframes liquidPulse {
  0%, 100% { transform: scale(.95); opacity: .18; }
  50% { transform: scale(1.12); opacity: .31; }
}

.rog-shop-hero-title {
  position: relative;
  z-index: 2;
  grid-column: 2;
  text-align: center;
  padding: 18px 10px;
}

.rog-shop-crest {
  position: absolute;
  left: 50%;
  top: -48px;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--rog-gold-soft);
  border: 2px solid rgba(255,223,141,.64);
  border-radius: 50%;
  background: radial-gradient(circle, #8a5211, #1b0c00);
  box-shadow: 0 0 18px rgba(255,223,141,.25);
  font-size: 32px;
  font-weight: 900;
}

.rog-shop-hero-title h2 {
  margin: 0;
  color: var(--rog-gold-soft);
  font-size: 52px;
  letter-spacing: 0;
  line-height: .92;
  text-shadow: 0 4px 0 #533008, 0 0 26px rgba(255,223,141,.38);
}

.rog-shop-hero-title p {
  margin: 8px 0 4px;
  color: #fff3db;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 20px;
}

.rog-shop-hero-title strong {
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 16px;
}

.rog-shop-wallet-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-right: 10px;
  border: 1px solid rgba(212,161,62,.45);
  border-radius: 8px;
  background: rgba(0,0,0,.28);
}

.rog-shop-wallet-panel div {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(212,161,62,.2);
}

.rog-shop-wallet-panel div:last-child { border-right: 0; }

.rog-shop-wallet-panel span {
  display: block;
  color: #fff0ce;
  text-transform: uppercase;
  font-size: 11px;
}

.rog-shop-wallet-panel b {
  display: block;
  margin-top: 4px;
  color: var(--rog-gold-soft);
  font-size: 18px;
}

.rog-shop-non-transferable {
  position: relative;
  z-index: 2;
  grid-column: 3;
  margin: 0 10px 0 0;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,161,62,.5);
  border-radius: 8px;
  background: rgba(0,0,0,.35);
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  text-align: center;
}

.rog-shop-non-transferable span {
  font-size: 32px;
}

.rog-shop-content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 12px;
}

.rog-shop-panel,
.rog-shop-products .product-card,
.rog-shop-banner,
.rog-shop-footer article {
  border: 1px solid var(--rog-line);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(8,19,29,.94), rgba(3,8,12,.96));
  box-shadow: inset 0 0 25px rgba(212,161,62,.04);
}

.rog-shop-panel {
  padding: 12px;
  margin-bottom: 12px;
}

.rog-shop-panel h3 {
  margin: 0 0 11px;
  text-align: center;
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 18px;
}

.rog-shop-categories {
  display: grid;
  gap: 7px;
}

.rog-shop-category {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(212,161,62,.26);
  border-radius: 6px;
  color: var(--rog-text);
  background: rgba(0,0,0,.25);
  cursor: pointer;
  text-align: left;
}

.rog-shop-category.active,
.rog-shop-category:hover {
  border-color: rgba(255,223,141,.75);
  background: linear-gradient(90deg, rgba(212,161,62,.22), rgba(0,0,0,.12));
}

.rog-shop-category .cat-icon {
  font-size: 22px;
}

.rog-shop-category .cat-title {
  text-transform: uppercase;
  font-size: 13px;
}

.rog-shop-category .cat-arrow {
  color: var(--rog-gold-soft);
}

.rog-coin-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
}

.rog-coin {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,223,141,.65);
  color: var(--rog-gold-soft);
  background: radial-gradient(circle, #8b5212, #2d1400);
  font-size: 35px;
  font-weight: 900;
}

.rog-coin-card strong {
  display: block;
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  font-size: 18px;
}

.rog-coin-card p,
.rog-coin-card small {
  margin: 2px 0;
  color: #fff0ce;
  text-transform: uppercase;
}

.rog-shop-reasons {
  display: grid;
  gap: 8px;
}

.rog-shop-reasons article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid rgba(212,161,62,.14);
  padding-bottom: 8px;
}

.rog-shop-reasons span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,223,141,.45);
  color: var(--rog-gold-soft);
}

.rog-shop-reasons p {
  margin: 0;
  color: #fff0d5;
}

.rog-cart-panel {
  position: sticky;
  top: 8px;
}

.rog-cart-items {
  min-height: 60px;
  display: grid;
  gap: 7px;
}

.rog-cart-items .empty {
  margin: 0;
  color: var(--rog-muted);
  text-align: center;
  font-size: 13px;
}

.rog-cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(212,161,62,.18);
  border-radius: 5px;
  background: rgba(0,0,0,.18);
  font-size: 12px;
}

.rog-cart-row button {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,223,141,.45);
  border-radius: 50%;
  color: var(--rog-gold-soft);
  background: rgba(0,0,0,.28);
  cursor: pointer;
}

.rog-cart-total {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding-top: 10px;
  border-top: 1px solid rgba(212,161,62,.22);
}

.rog-cart-total b {
  color: var(--rog-gold-soft);
}

.rog-shop-toolbar {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.rog-shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.rog-shop-tabs button,
.rog-shop-search button {
  padding: 9px 12px;
  border: 1px solid rgba(212,161,62,.38);
  border-radius: 6px;
  color: var(--rog-text);
  background: rgba(0,0,0,.25);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
}

.rog-shop-tabs button.active {
  color: #201203;
  background: linear-gradient(180deg, #ffdf8d, #9a5a11);
}

.rog-shop-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.rog-shop-search input {
  width: 100%;
  border: 1px solid rgba(212,161,62,.36);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--rog-text);
  background: rgba(0,0,0,.24);
}

.rog-shop-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 12px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 10px;
  display: grid;
  grid-template-rows: auto 92px 1fr auto;
  gap: 6px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  opacity: .14;
  background: conic-gradient(from 45deg, transparent, var(--fx-color), transparent 34%);
  animation: cardAura 9s linear infinite;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

@keyframes cardAura {
  to { transform: rotate(360deg); }
}

.product-title {
  min-height: 38px;
  text-align: center;
}

.product-title h4 {
  margin: 0;
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 16px;
}

.product-title p {
  margin: 2px 0 0;
  color: #fff0d1;
  font-size: 12px;
}

.product-visual {
  position: relative;
  width: 100%;
  height: 92px;
  display: grid;
  place-items: center;
}

.fx-water .product-visual::before {
  content: "";
  width: 82px;
  height: 58px;
  border-radius: 50% 50% 43% 43%;
  background:
    radial-gradient(circle at 30% 25%, #fff, transparent 14%),
    linear-gradient(180deg, var(--rog-water-2), #1c6da3 65%, #073b5a);
  box-shadow:
    0 0 24px rgba(84,199,255,.62),
    inset 0 -10px 18px rgba(0,0,0,.25);
  animation: waterFloat 2.8s ease-in-out infinite;
}

.fx-water .product-visual::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 18px;
  bottom: 11px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(156,233,255,.44) 0 2px, transparent 3px 9px);
  animation: ripple 2.2s ease-in-out infinite;
}

@keyframes waterFloat {
  0%, 100% { transform: translateY(1px) scale(1); }
  50% { transform: translateY(-7px) scale(1.04); }
}

@keyframes ripple {
  0%, 100% { transform: scale(.88); opacity: .38; }
  50% { transform: scale(1.1); opacity: .82; }
}

.fx-blood .product-visual::before {
  content: "";
  width: 70px;
  height: 82px;
  border-radius: 52% 48% 50% 50% / 62% 62% 38% 38%;
  background:
    radial-gradient(circle at 32% 20%, #ffd5dc, transparent 12%),
    linear-gradient(180deg, #ff4967, #9b001b 66%, #2d0007);
  box-shadow:
    0 0 25px rgba(255,73,103,.65),
    inset 0 -14px 20px rgba(0,0,0,.28);
  animation: bloodPulse 2.1s ease-in-out infinite;
}

.fx-blood .product-visual::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 8px;
  height: 18px;
  border-radius: 50%;
  background: var(--rog-blood-2);
  filter: drop-shadow(0 0 10px rgba(255,73,103,.8));
  animation: dropFall 2.1s infinite;
}

@keyframes bloodPulse {
  0%, 100% { transform: scale(.98); }
  50% { transform: scale(1.06); }
}

@keyframes dropFall {
  0% { opacity: 0; transform: translateY(-18px) scale(.6); }
  45% { opacity: .9; }
  100% { opacity: 0; transform: translateY(10px) scale(1); }
}

.fx-cocktail .product-visual::before {
  content: "🍸";
  font-size: 72px;
  filter: drop-shadow(0 0 18px rgba(255,223,141,.55));
  animation: cocktailShine 2.8s ease-in-out infinite;
}

.fx-cocktail .product-visual::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  top: 17px;
  transform: rotate(-25deg);
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: shineMove 1.9s ease-in-out infinite;
}

@keyframes cocktailShine {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.04); }
}

@keyframes shineMove {
  from { opacity: 0; transform: translateX(-35px) rotate(-25deg); }
  50% { opacity: .9; }
  to { opacity: 0; transform: translateX(35px) rotate(-25deg); }
}

.fx-fruit .product-visual::before {
  content: "🥕🍎🍪";
  font-size: 44px;
  letter-spacing: 0;
  filter: drop-shadow(0 0 16px rgba(255,138,43,.55));
  animation: fruitBounce 2.2s ease-in-out infinite;
}

.fx-fruit .product-visual::after {
  content: "";
  position: absolute;
  bottom: 14px;
  width: 88px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,138,43,.20);
  animation: fruitShadow 2.2s ease-in-out infinite;
}

@keyframes fruitBounce {
  0%, 100% { transform: translateY(3px); }
  50% { transform: translateY(-9px); }
}

@keyframes fruitShadow {
  0%, 100% { transform: scale(1); opacity: .36; }
  50% { transform: scale(.75); opacity: .18; }
}

.fx-box .product-visual::before {
  content: "";
  width: 88px;
  height: 62px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(180deg, #c4935b, #6b3b13);
  border: 1px solid rgba(255,223,141,.6);
  box-shadow: 0 0 18px rgba(212,161,62,.32);
  animation: boxGlow 3.5s ease-in-out infinite;
}

.fx-box .product-visual::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 12px;
  top: 24px;
  background: linear-gradient(90deg, transparent, rgba(255,223,141,.72), transparent);
}

@keyframes boxGlow {
  50% { filter: brightness(1.18); }
}

.fx-health .product-visual::before {
  content: "✚";
  width: 78px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #ff4a4a;
  font-size: 46px;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 10px;
  background: linear-gradient(180deg, #e9e4dc, #6c675d);
  box-shadow: 0 0 22px rgba(255,255,255,.25);
  animation: healthPulse 2.4s ease-in-out infinite;
}

@keyframes healthPulse {
  50% { transform: scale(1.06); filter: brightness(1.15); }
}

.fx-sugar .product-visual::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 12px;
  transform: rotate(10deg);
  background:
    radial-gradient(circle at 20% 25%, #fff, transparent 13%),
    linear-gradient(135deg, #fff, #d7d1c7);
  box-shadow:
    0 0 24px rgba(255,255,255,.52),
    inset -10px -10px 18px rgba(0,0,0,.12);
  animation: sugarTwinkle 3s ease-in-out infinite;
}

.fx-sugar .product-visual::after {
  content: "✦";
  position: absolute;
  right: 44px;
  top: 12px;
  color: #fff;
  animation: twinkle 1.4s ease-in-out infinite;
}

@keyframes sugarTwinkle {
  50% { transform: rotate(-7deg) scale(1.04); }
}

@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.product-prices {
  display: grid;
  gap: 4px;
  margin-top: 5px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 7px;
  border: 1px solid rgba(212,161,62,.18);
  border-radius: 4px;
  background: rgba(0,0,0,.22);
  color: #fff0d2;
  font-size: 12px;
}

.price-row b {
  color: var(--rog-gold-soft);
  white-space: nowrap;
}

.product-add {
  width: 100%;
  margin-top: 5px;
  padding: 8px 10px;
  border: 1px solid rgba(255,223,141,.55);
  border-radius: 6px;
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  background: rgba(0,0,0,.28);
  cursor: pointer;
}

.product-add:hover {
  background: linear-gradient(180deg, rgba(212,161,62,.24), rgba(0,0,0,.16));
}

.rog-shop-banner {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr 270px;
  align-items: center;
  margin-top: 12px;
  padding: 18px 24px;
  background:
    radial-gradient(circle at 75% 50%, rgba(200,20,45,.20), transparent 28%),
    linear-gradient(90deg, rgba(11,26,37,.95), rgba(5,10,14,.95));
}

.rog-shop-banner h3 {
  margin: 0;
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  font-size: 26px;
}

.rog-shop-banner p {
  margin: 6px 0 0;
  color: #fff0d1;
  text-transform: uppercase;
}

.banner-horses {
  position: relative;
  height: 95px;
}

.banner-horse {
  position: absolute;
  bottom: 9px;
  width: 94px;
  height: 58px;
  border-radius: 48% 42% 38% 45%;
  filter: drop-shadow(0 0 18px rgba(255,223,141,.24));
}

.banner-horse::after {
  content: "";
  position: absolute;
  right: 3px;
  top: -22px;
  width: 34px;
  height: 42px;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.banner-horse.black {
  right: 115px;
  background: linear-gradient(145deg, #0a0a0b, #563018);
}

.banner-horse.black::after {
  background: #151112;
}

.banner-horse.white {
  right: 30px;
  background: linear-gradient(145deg, #fff, #9eb4c8);
}

.banner-horse.white::after {
  background: #e4f1ff;
}

.rog-shop-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.rog-shop-footer article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
}

.rog-shop-footer article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,223,141,.5);
  border-radius: 50%;
  font-size: 22px;
  background: rgba(0,0,0,.22);
}

.rog-shop-footer b {
  display: block;
  color: var(--rog-gold-soft);
  text-transform: uppercase;
  font-size: 12px;
}

.rog-shop-footer p {
  margin: 3px 0 0;
  color: var(--rog-muted);
  font-size: 12px;
}

body.rog-consumables-lock {
  overflow: hidden;
}

@media (max-width: 1380px) {
  .rog-shop-products {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }

  .rog-shop-hero {
    grid-template-columns: 1fr;
  }

  .rog-shop-hero-title,
  .rog-shop-wallet-panel,
  .rog-shop-non-transferable {
    grid-column: auto;
    margin: 0 10px 10px;
  }
}

@media (max-width: 1040px) {
  .rog-shop-header,
  .rog-shop-content-grid,
  .rog-shop-toolbar,
  .rog-shop-footer {
    grid-template-columns: 1fr;
  }

  .rog-shop-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .rog-shop-products {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .rog-shop-wallet-panel {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .rog-shop-overlay {
    padding: 0;
  }

  .rog-shop-modal {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .rog-shop-demo-card {
    padding: 32px;
  }

  .rog-shop-logo-main {
    font-size: 48px;
  }

  .rog-shop-hero-title h2 {
    font-size: 34px;
  }

  .rog-shop-products,
  .rog-shop-wallet-panel {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 250px;
  }

  .rog-shop-banner {
    grid-template-columns: 1fr;
  }
}

/* Store refinements for the in-ranch fullscreen shopping flow. */
.rog-shop-modal {
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rog-shop-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.rog-shop-orb-layer {
  display: none;
}

.rog-shop-header {
  position: sticky;
  top: 0;
  z-index: 40;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  margin: -14px -14px 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,223,141,.22);
  background: rgba(3,7,10,.14);
  backdrop-filter: blur(5px);
  transition: background .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.rog-shop-overlay.is-shop-scrolled .rog-shop-header {
  border-color: rgba(255,223,141,.34);
  background: rgba(0,0,0,.74);
  box-shadow: 0 14px 34px rgba(0,0,0,.38);
}

.rog-shop-nav {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.rog-shop-nav::-webkit-scrollbar {
  display: none;
}

.rog-shop-nav button {
  white-space: nowrap;
}

.rog-shop-header-balance {
  justify-self: end;
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  min-width: 172px;
  border: 1px solid rgba(255,223,141,.48);
  border-radius: 8px;
  padding: 8px 11px;
  color: var(--rog-gold-soft);
  background: linear-gradient(145deg, rgba(212,161,62,.18), rgba(0,0,0,.34));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.rog-shop-header-balance::before {
  content: "R";
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #211202;
  background: linear-gradient(145deg, #ffe29a, #bd791c);
  font-weight: 900;
}

.rog-shop-header-balance span {
  color: #fff2d3;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.rog-shop-header-balance b {
  color: #fff8df;
  line-height: 1;
  font-size: 17px;
}

.rog-shop-hero {
  display: block;
  min-height: 560px;
  height: min(76vh, 820px);
  margin: 0 0 16px;
  border-color: rgba(255,223,141,.46);
  border-radius: 8px;
  background: #030507;
}

.rog-shop-hero-slides,
.rog-shop-hero-slides img,
.rog-shop-hero-shade {
  position: absolute;
  inset: 0;
}

.rog-shop-hero-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: rogStoreHeroSlide 18s infinite;
}

.rog-shop-hero-slides img:nth-child(2) {
  animation-delay: 9s;
}

@keyframes rogStoreHeroSlide {
  0%, 44% { opacity: 1; transform: scale(1); }
  50%, 94% { opacity: 0; transform: scale(1.018); }
  100% { opacity: 1; transform: scale(1); }
}

.rog-shop-hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.14) 42%, rgba(0,0,0,.52)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.52));
}

.rog-shop-hero-title {
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: min(520px, calc(100% - 56px));
  padding: 18px 20px;
  text-align: left;
  border: 1px solid rgba(255,223,141,.28);
  border-radius: 8px;
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(3px);
}

.rog-shop-crest {
  left: auto;
  right: 18px;
  top: 18px;
  transform: none;
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.rog-shop-hero-title h2 {
  max-width: 420px;
  font-size: 48px;
}

.rog-shop-hero-title p {
  max-width: 360px;
  font-size: 15px;
}

.rog-shop-hero-title strong {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.rog-shop-content-grid {
  grid-template-columns: 230px minmax(0, 1fr);
}

.rog-shop-toolbar {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

.rog-shop-tabs {
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.rog-shop-tabs::-webkit-scrollbar {
  display: none;
}

.rog-shop-tabs button {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 8px 10px;
}

.rog-shop-search input {
  min-width: 0;
}

.product-card {
  min-height: 255px;
  grid-template-rows: auto auto 86px 1fr;
}

.product-details {
  display: grid;
  gap: 3px;
  margin: 2px 0 0;
  padding: 0 0 0 14px;
  color: #ffe9b9;
  font-size: 11px;
  line-height: 1.2;
}

.product-details li::marker {
  color: var(--rog-gold-soft);
}

.product-visual {
  height: 86px;
}

.price-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 7px;
  align-items: center;
  border-color: rgba(255,223,141,.25);
  color: #fff3d8;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.price-row:hover,
.price-row:focus-visible {
  border-color: rgba(255,223,141,.78);
  background: rgba(212,161,62,.18);
  transform: translateY(-1px);
  outline: none;
}

.price-row span {
  overflow: hidden;
  color: #fff4df;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-row em {
  border-radius: 999px;
  padding: 3px 7px;
  color: #211305;
  background: linear-gradient(180deg, #ffe6a4, #b87921);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-add {
  display: none;
}

.rog-cart-row,
.rog-cart-row span,
.rog-cart-row small {
  color: #fff1d7;
}

.rog-cart-row b {
  color: var(--rog-gold-soft);
}

.rog-shop-social-footer {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 33px;
  padding: 0 16px 75px;
  color: #fff6e6;
  text-align: center;
}

.rog-shop-divider {
  width: min(720px, 92%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,246,230,.58), transparent);
}

.rog-shop-social-footer > strong {
  color: #fff6e6;
  text-transform: uppercase;
  font-size: 14px;
}

.rog-shop-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.rog-shop-social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,246,230,.26);
  border-radius: 8px;
  color: #fff6e6;
  background: rgba(255,255,255,.04);
}

.rog-shop-social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.rog-shop-social-footer p {
  margin: 0;
  color: rgba(255,246,230,.78);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .rog-shop-header {
    grid-template-columns: 1fr;
    margin: -14px -14px 10px;
  }

  .rog-shop-header-balance {
    justify-self: stretch;
  }

  .rog-shop-content-grid,
  .rog-shop-toolbar,
  .rog-shop-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .rog-shop-hero {
    min-height: 380px;
    height: 62vh;
  }

  .rog-shop-hero-title {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
  }

  .rog-shop-crest {
    display: none;
  }

  .rog-shop-hero-title h2 {
    font-size: 30px;
  }

  .rog-shop-hero-title p {
    font-size: 12px;
  }

  .rog-shop-products {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .price-row em {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* PDF correction pass: premium modal width and 3-column product rhythm. */
.rog-shop-modal {
  width: min(85vw, 1560px);
  max-height: 85vh;
}

.rog-shop-products {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.rog-shop-modal::-webkit-scrollbar {
  width: 9px;
}

.rog-shop-modal::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 231, 166, 0.34);
}

@media (max-width: 1180px) {
  .rog-shop-products {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 720px) {
  .rog-shop-modal {
    width: min(94vw, 1560px);
  }

  .rog-shop-products {
    grid-template-columns: 1fr;
  }
}
