/* ===== MINECRAFT.NET STORE PDP — DESKTOP SCALE ===== */
:root {
  --mc-store-bg: #060504;
  --mc-store-surface: #0e0c0a;
  --mc-store-card: #221c18;
  --mc-store-border: rgba(229, 163, 72, 0.2);
  --mc-store-border-light: rgba(126, 200, 80, 0.25);
  --mc-store-green: #63a636;
  --mc-store-green-hover: #6fad42;
  --mc-store-green-bright: #7bc44a;
  --mc-store-cyan: #7ec850;
  --mc-store-text: #f4f2ea;
  --mc-store-muted: #aaafae;
  --mc-store-dim: #7a8080;
  /* ~78% of 1920px content width */
  --mc-store-max: 1520px;
}

body.store-download-page {
  background: var(--mc-store-bg);
  color: var(--mc-store-text);
}

.mc-store {
  padding-top: calc(var(--nav-h) + var(--announce-h));
  background: var(--mc-store-bg);
  min-height: 100vh;
}

.mc-store-inner {
  width: min(100%, 78vw);
  max-width: var(--mc-store-max);
  margin: 0 auto;
  padding-inline: clamp(1rem, 1.5vw, 1.75rem);
}

/* --- PDP TOP: product + editions --- */
.mc-store-pdp {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.mc-store-pdp-grid {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .mc-store-pdp-grid {
    grid-template-columns: 58fr 42fr;
    gap: 1.75rem;
  }
}

/* Left product card */
.mc-store-product {
  background: var(--mc-store-surface);
  border: 1px solid var(--mc-store-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .mc-store-product {
    min-height: 580px;
  }
}

.mc-store-product-art {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  line-height: 0;
}

.mc-store-product-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 42vw, 430px);
  object-fit: cover;
  object-position: center top;
}

.mc-store-gamepass--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.625rem 1.125rem;
  background: rgba(18, 18, 18, 0.88);
  border-top: 1px solid var(--mc-store-border);
  font-size: 0.8125rem;
}

.mc-store-product-meta {
  flex: 0 0 auto;
  padding: 1.375rem 1.5rem 1.625rem;
}

.mc-store-gamepass {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mc-store-muted);
  margin: 0;
}

.mc-store-gamepass span {
  color: var(--mc-store-green-bright);
}

.mc-store-gamepass a {
  color: var(--mc-store-green-bright);
  text-decoration: none;
}

.mc-store-gamepass a:hover { text-decoration: underline; }

.mc-store-product-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.8vw, 2.375rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

.mc-store-ratings {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.mc-store-ratings img {
  height: clamp(22px, 2.2vw, 30px);
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.mc-store-rating-count {
  font-size: 0.9375rem;
  color: var(--mc-store-muted);
}

.mc-store-pc-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-end;
}

.mc-store-pc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.mc-store-pc-icon img {
  width: clamp(32px, 3vw, 38px);
  height: clamp(32px, 3vw, 38px);
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mc-store-pc-icon span {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mc-store-dim);
  max-width: 5.5rem;
  line-height: 1.25;
}

/* Right: edition picker */
.mc-store-editions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 100%;
}

.mc-store-editions-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mc-store-muted);
  padding-bottom: 0.25rem;
}

.mc-store-editions-head a {
  color: var(--mc-store-green-bright);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.mc-store-editions-head a:hover { text-decoration: underline; }

.mc-store-edition-card {
  position: relative;
  background: var(--mc-store-card);
  border: 2px solid var(--mc-store-border);
  padding: 1.125rem 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}

.mc-store-edition-card--ultimate {
  min-height: clamp(170px, 14vw, 200px);
  padding-top: 1.375rem;
}

.mc-store-edition-card--deluxe {
  min-height: clamp(155px, 12vw, 180px);
}

.mc-store-edition-card--standard {
  min-height: clamp(140px, 11vw, 165px);
}

.mc-store-edition-card:hover {
  border-color: var(--mc-store-border-light);
}

.mc-store-edition-card.is-selected {
  border-color: var(--mc-store-green-bright);
  border-width: 2px;
}

.mc-store-edition-card--best {
  border-top: 3px solid var(--mc-store-cyan);
}

.mc-store-edition-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.125rem;
  background: var(--mc-store-cyan);
  color: #000;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
}

.mc-store-edition-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: #fff;
  line-height: 1.15;
}

.mc-store-edition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  flex: 1 1 auto;
  align-content: flex-start;
}

.mc-store-edition-tag {
  display: inline-block;
  padding: 0.35rem 0.625rem;
  background: #1a1a1a;
  border: 1px solid var(--mc-store-border);
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--mc-store-muted);
}

.mc-store-edition-foot {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--mc-store-border);
}

.mc-store-edition-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--mc-store-border-light);
  flex-shrink: 0;
  position: relative;
}

.mc-store-edition-card.is-selected .mc-store-edition-radio {
  border-color: var(--mc-store-green-bright);
}

.mc-store-edition-card.is-selected .mc-store-edition-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--mc-store-green-bright);
}

.mc-store-edition-price {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-left: auto;
  margin-right: 0.875rem;
}

.mc-store-edition-pass {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mc-store-green-bright);
  text-transform: uppercase;
}

.mc-store-checkout-row {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.mc-store-btn-gift {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 56px;
  padding: 0 1.25rem;
  background: transparent;
  border: 1px solid var(--mc-store-border-light);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.mc-store-btn-gift:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mc-store-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 56px;
  padding: 0 1.5rem;
  background: var(--mc-store-green);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.mc-store-btn-checkout:hover {
  background: var(--mc-store-green-hover);
  color: #fff;
}

.mc-store-disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--mc-store-dim);
}

.mc-store-disclaimer--below {
  margin: 1.25rem 0 0;
  text-align: center;
}

.mc-store-disclaimer a {
  color: var(--mc-store-green-bright);
  text-decoration: none;
}

/* Other platforms */
.mc-store-other {
  padding: 0 0 clamp(2.5rem, 4vw, 3.5rem);
}

.mc-store-other-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.mc-store-platform-grid {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .mc-store-platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.mc-store-vault-platform-btn {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-height: 58px;
  padding: 0 1.25rem;
  background: var(--mc-store-card);
  border: 1px solid var(--mc-store-border);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.mc-store-vault-platform-btn:hover {
  border-color: var(--mc-store-green-bright);
  background: #2a2a2a;
  color: #fff;
}

.mc-store-vault-platform-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.mc-store-platform-name {
  flex: 1 1 auto;
}

.mc-store-platform-arrow {
  flex-shrink: 0;
  margin-left: auto;
}

.mc-store-platform-note {
  font-size: 0.8125rem;
  color: var(--mc-store-dim);
  margin-top: 1rem;
}

/* Sticky edition bar — hidden until scroll past PDP */
.mc-store-sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--announce-h));
  z-index: 45;
  background: var(--mc-store-bg);
  border-top: 1px solid var(--mc-store-border);
  border-bottom: 1px solid var(--mc-store-border);
}

.mc-store-sticky[hidden] {
  display: none;
}

.mc-store-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem clamp(1rem, 1.5vw, 1.75rem);
  width: min(100%, 78vw);
  max-width: var(--mc-store-max);
  margin: 0 auto;
}

.mc-store-sticky-edition {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mc-store-sticky-edition img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 1px solid var(--mc-store-border);
}

.mc-store-sticky .mc-store-btn-checkout {
  width: auto;
  min-width: 12rem;
  min-height: 48px;
  padding: 0 1.75rem;
  font-size: 1rem;
}

/* Tabs */
.mc-store-tabs-wrap {
  background: var(--mc-store-bg);
  border-bottom: 1px solid var(--mc-store-border);
}

.mc-store-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.mc-store-tabs::-webkit-scrollbar { display: none; }

.mc-store-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  color: var(--mc-store-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.mc-store-tab:hover { color: #fff; }

.mc-store-tab.is-active {
  color: #fff;
  border-bottom-color: var(--mc-store-green-bright);
}

.mc-store-tab svg {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

/* Tab panels */
.mc-store-panels {
  padding: 2rem 0 3rem;
}

.mc-store-panel { display: none; }
.mc-store-panel.is-active { display: block; }

/* Details: screenshots + details side by side */
.mc-store-details-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .mc-store-details-grid {
    grid-template-columns: 1.22fr 0.78fr;
    gap: clamp(1.25rem, 2vw, 2rem);
    align-items: start;
  }
}

.mc-store-details-grid > * {
  min-width: 0;
}

.mc-store-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #fff;
}

/* Gallery: main + vertical thumbs (Details tab) */
.mc-store-gallery {
  background: var(--mc-store-surface);
  border: 1px solid var(--mc-store-border);
  padding: clamp(0.625rem, 1vw, 0.875rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  min-width: 0;
}

.mc-store-gallery-stage {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .mc-store-gallery-stage {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    align-items: start;
  }
}

.mc-store-gallery-primary {
  min-width: 0;
}

.mc-store-gallery-main {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  min-width: 0;
}

.mc-store-gallery-main img,
.mc-store-gallery-main video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-store-gallery-main video {
  position: relative;
  z-index: 1;
  background: #000;
}

.mc-store-gallery-main img[data-store-gallery-active] {
  position: relative;
  z-index: 2;
}

.mc-store-gallery-main video[hidden],
.mc-store-gallery-main img[hidden] {
  display: none !important;
}

.mc-store-gallery-main.is-showing-image video {
  display: none !important;
}

.mc-store-gallery-main.is-showing-image img[data-store-gallery-active] {
  display: block;
  z-index: 2;
}

.mc-store-gallery-main.is-showing-image .mc-store-gallery-play {
  opacity: 0;
  pointer-events: none;
}

.mc-store-gallery-main.is-video-idle img[data-store-gallery-active] {
  display: none;
}

.mc-store-gallery-main.is-video-idle video {
  object-fit: contain;
}

.mc-store-gallery-main:not(.is-video-idle) video {
  object-fit: cover;
}

.mc-store-gallery-main:not(.is-video-idle) video[controls] {
  object-fit: contain;
}

.mc-store-gallery-play {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  background: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.mc-store-gallery-main.is-video-idle {
  cursor: pointer;
}

.mc-store-gallery-main.is-video-idle .mc-store-gallery-play {
  opacity: 1;
  pointer-events: auto;
}

.mc-store-gallery-play-icon {
  display: block;
  flex-shrink: 0;
}

.mc-store-gallery-thumbs {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

@media (min-width: 640px) {
  .mc-store-gallery-thumbs {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    width: clamp(100px, 7.5vw, 118px);
    flex-shrink: 0;
    align-self: start;
    max-height: 100%;
  }
}

.mc-store-gallery-thumb {
  position: relative;
  flex: 0 0 auto;
  width: clamp(100px, 7.5vw, 118px);
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 2px solid transparent;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.mc-store-gallery-thumb.is-active {
  border-color: var(--mc-store-green-bright);
}

.mc-store-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-store-gallery-thumb-play {
  position: absolute;
  left: 0.25rem;
  bottom: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.mc-store-gallery-thumb-play::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.28rem;
  border-style: solid;
  border-width: 0.28rem 0 0.28rem 0.45rem;
  border-color: transparent transparent transparent #121212;
}

.mc-store-gallery-caption {
  margin: 0.75rem 0 0;
  padding-top: 0;
  border-top: none;
}

.mc-store-gallery-caption-main {
  margin: 0 0 0.35rem;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.55;
  color: #fff;
}

.mc-store-gallery-caption-sub {
  margin: 0;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  line-height: 1.5;
  color: var(--mc-store-muted);
}

.mc-store-gallery-caption.is-image-only .mc-store-gallery-caption-sub {
  display: none;
}

/* Details column */
.mc-store-details-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.mc-store-detail-box {
  background: var(--mc-store-surface);
  border: 1px solid var(--mc-store-border);
  padding: 1rem 1.125rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.mc-store-detail-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}

.mc-store-detail-box-head h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  color: var(--mc-store-muted);
}

.mc-store-detail-box-head a {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--mc-store-green-bright);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mc-store-show-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--mc-store-green-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.mc-store-show-more svg {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.15s ease;
}

.mc-store-show-more[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mc-store-detail-body:not(.is-expanded) .mc-store-detail-item--extra {
  display: none;
}

.mc-store-detail-item {
  margin-bottom: 0.875rem;
}

.mc-store-detail-item:last-child { margin-bottom: 0; }

.mc-store-detail-item h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: #fff;
}

.mc-store-detail-item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--mc-store-muted);
}

.mc-store-cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.mc-store-cap-tag {
  padding: 0.35rem 0.625rem;
  background: var(--mc-store-card);
  border: 1px solid var(--mc-store-border);
  font-size: 0.6875rem;
  color: var(--mc-store-muted);
  line-height: 1.3;
}

/* Compare table */
.mc-store-compare-intro {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--mc-store-muted);
  margin: 0 0 1.5rem;
  max-width: 65ch;
}

.mc-store-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.mc-store-compare-table th,
.mc-store-compare-table td {
  border: 1px solid var(--mc-store-border);
  padding: 0.875rem 1rem;
  text-align: left;
  vertical-align: top;
}

.mc-store-compare-table th {
  background: var(--mc-store-surface);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.mc-store-compare-table td { color: var(--mc-store-muted); }
.mc-store-compare-table .yes { color: var(--mc-store-green-bright); }
.mc-store-compare-table .no { color: #666; }

/* Explore grid */
.mc-store-explore-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .mc-store-explore-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.mc-store-explore-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--mc-store-surface);
  border: 1px solid var(--mc-store-border);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}

.mc-store-explore-card:hover {
  border-color: var(--mc-store-green-bright);
  transform: translateY(-2px);
  color: inherit;
}

.mc-store-explore-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mc-store-explore-card span {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

/* FAQ */
.mc-store-faq {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--mc-store-border);
}

.mc-store-faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.5rem;
  color: #fff;
}

.mc-store-faq-item {
  border-top: 1px solid var(--mc-store-border);
  background: var(--mc-store-surface);
}

.mc-store-faq-item:last-child {
  border-bottom: 1px solid var(--mc-store-border);
}

.mc-store-faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.mc-store-faq-item button span:last-child {
  color: var(--mc-store-muted);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mc-store-faq-panel {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mc-store-muted);
}

.mc-store-faq-panel[hidden] { display: none; }
.mc-store-faq-panel a { color: var(--mc-store-green-bright); }

/* Server download section */
.mc-store-server {
  padding: 3rem 0 4rem;
  background: #0e0e0e;
  border-top: 1px solid var(--mc-store-border);
}

.mc-store-server-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 2rem);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1rem;
  color: #fff;
}

.mc-store-server-lead {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--mc-store-muted);
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.mc-store-server-lead a {
  color: var(--mc-store-green-bright);
  text-decoration: none;
}

.mc-store-server-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mc-store-server-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.mc-store-server-card {
  background: var(--mc-store-card);
  border: 1px solid var(--mc-store-border);
  padding: 1.5rem;
}

.mc-store-server-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 1rem;
  color: #fff;
}

.mc-store-server-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--mc-store-muted);
  margin: 0 0 0.75rem;
}

.mc-store-server-card code {
  display: block;
  padding: 0.625rem 0.75rem;
  background: #1a1a1a;
  border: 1px solid var(--mc-store-border);
  font-size: 0.75rem;
  color: #ddd;
  margin: 0.75rem 0;
  word-break: break-all;
}

.mc-store-server-versions {
  margin: 1rem 0;
}

.mc-store-server-versions p {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.mc-store-server-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--mc-store-muted);
}

.mc-store-server-radio label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.mc-store-server-radio input {
  accent-color: var(--mc-store-green-bright);
}

.mc-store-server-eula {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--mc-store-dim);
  margin: 1rem 0;
}

.mc-store-server-eula a {
  color: var(--mc-store-green-bright);
  text-decoration: none;
}

.mc-store-server-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: #e8e8e8;
  border: none;
  color: #333;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.mc-store-server-dl:hover { background: #fff; }

.mc-store-server-dl svg {
  width: 18px;
  height: 18px;
}

.store-download-page .vault-fab-dl { display: none; }

@media (max-width: 639px) {
  .mc-store-checkout-row { grid-template-columns: 1fr; }
  .mc-store-sticky-inner { flex-wrap: wrap; }
  .mc-store-sticky .mc-store-btn-checkout { width: 100%; }
}
