/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/

@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:wght@400;600;700;800&display=swap");

:root {
  --mc-grass: #5fbf3f;
  --mc-grass-dark: #2e6b2f;
  --mc-leaf: #83d451;
  --mc-dirt: #6b4a2b;
  --mc-stone: #52605a;
  --mc-gold: #f2c94c;
  --mc-water: #35a7ff;
  --mc-night: #0d1222;
  --mc-panel: #172019;
  --mc-panel-2: #222d24;
  --mc-border: #5b7b5f;
  --mc-shadow: #0a0e0b;
  --bs-border-radius: 2px;
  --bs-font-sans-serif: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--mc-night);
}

body {
  color: #f5f0dc;
  background:
    linear-gradient(rgba(11, 17, 13, 0.88), rgba(11, 17, 13, 0.94)),
    linear-gradient(45deg, rgba(95, 191, 63, 0.08) 25%, transparent 25% 75%, rgba(95, 191, 63, 0.08) 75%),
    linear-gradient(45deg, rgba(82, 96, 90, 0.1) 25%, transparent 25% 75%, rgba(82, 96, 90, 0.1) 75%),
    var(--mc-night);
  background-position: 0 0, 0 0, 16px 16px, 0 0;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.mc-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(8, 13, 10, 0.94), rgba(8, 13, 10, 0.98)),
    linear-gradient(45deg, rgba(95, 191, 63, 0.1) 25%, transparent 25% 75%, rgba(95, 191, 63, 0.1) 75%),
    linear-gradient(45deg, rgba(107, 74, 43, 0.16) 25%, transparent 25% 75%, rgba(107, 74, 43, 0.16) 75%);
  background-size: auto, 32px 32px, 32px 32px;
  background-position: 0 0, 0 0, 16px 16px;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease, visibility .45s ease;
}

.mc-page-loader.mc-loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mc-loader-card {
  width: min(92vw, 30rem);
  padding: 1.4rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 12px, transparent 12px 24px);
  border: 5px solid var(--mc-border);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.48), inset 0 0 0 3px rgba(0, 0, 0, 0.28);
}

.mc-loader-cape {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 6rem;
  margin: 0 auto 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(90deg, #26372b 0 12px, #1a261d 12px 24px);
  border: 3px solid rgba(0, 0, 0, 0.6);
  animation: mc-loader-bob 1.25s ease-in-out infinite;
}

.mc-loader-cape span {
  display: block;
  width: 2.8rem;
  height: 4.3rem;
  background: linear-gradient(135deg, #38164f, #7e45d8 45%, #2a113e);
  border: 4px solid rgba(0, 0, 0, 0.65);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.1), 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.mc-loader-title {
  margin: 0 0 1rem;
  color: #fff3b8;
  font-family: "Press Start 2P", "Inter", sans-serif;
  font-size: clamp(1rem, 4vw, 1.4rem);
  text-shadow: 3px 3px 0 var(--mc-shadow);
}

.mc-loader-bar {
  height: 1.35rem;
  overflow: hidden;
  background: rgba(13, 18, 34, 0.92);
  border: 3px solid var(--mc-border);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.32);
}

.mc-loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  background:
    linear-gradient(180deg, var(--mc-leaf), var(--mc-grass)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 10px, transparent 10px 20px);
  animation: mc-loader-progress 1.1s ease-in-out infinite;
}

.mc-loader-status {
  margin: 0.9rem 0 0;
  color: #d9e7c5;
  font-weight: 800;
}

@keyframes mc-loader-progress {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes mc-loader-bob {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

a {
  color: var(--mc-leaf);
}

header.sticky-top {
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
}

.navbar {
  background:
    linear-gradient(180deg, rgba(43, 67, 46, 0.96), rgba(23, 32, 25, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 12px, rgba(0, 0, 0, 0.08) 12px 24px);
  border-bottom: 3px solid var(--mc-border);
}

.navbar .container {
  width: 100%;
  max-width: none;
  padding-right: clamp(1rem, 6vw, 6rem);
  padding-left: clamp(1rem, 6vw, 6rem);
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 2.15rem;
  padding: 0.28rem 1rem;
  color: #fff7dd;
  background:
    linear-gradient(90deg, #203b23, #172019, #203b23),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 12px, transparent 12px 24px);
  border-bottom: 2px solid var(--mc-border);
  font-size: 0.9rem;
  font-weight: 900;
}

.announcement .mc-announcement-label {
  display: inline-block;
  padding: 0.12rem 0.38rem;
  color: #0b120b;
  background: var(--mc-gold);
  border: 2px solid #4d3814;
  text-transform: uppercase;
}

.announcement a {
  color: var(--mc-leaf);
  font-weight: 900;
  text-decoration: none;
}

.navbar .navbar-brand,
.footer .logo p,
.section-title h2,
.hero .content h1 {
  font-family: "Press Start 2P", "Inter", sans-serif;
  letter-spacing: 0;
}

.navbar .navbar-brand {
  color: #fff7ce;
  font-size: 0.9rem;
  text-shadow: 2px 2px 0 var(--mc-shadow);
}

.navbar .navbar-brand img {
  width: auto;
  max-width: 11rem;
  max-height: 4rem;
  image-rendering: pixelated;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.navbar .nav-link {
  color: #d9e7c5;
  font-weight: 800;
  text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-item a.nav-link.active {
  color: var(--mc-gold);
}

@media (min-width: 992px) {
  .navbar .container {
    position: relative;
  }

  .navbar .navbar-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
  }

  .navbar .navbar-collapse {
    flex: 1 1 auto;
    width: 100%;
  }

  .navbar .navbar-collapse > .navbar-nav:first-child {
    margin-right: auto !important;
  }

  .navbar .navbar-collapse > .navbar-nav:last-child {
    align-items: center;
    margin-left: auto;
  }
}

.btn,
.form-control,
.form-select,
.modal-content,
.card,
.choices__inner,
.choices__list--dropdown {
  border-radius: 2px !important;
}

.currency-selector .choices__inner {
  min-height: 3rem;
  background: rgba(13, 18, 14, 0.9) !important;
  border: 3px solid var(--mc-grass) !important;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.34);
}

.currency-selector .choices__list--dropdown {
  width: 15rem !important;
  margin-top: 0.75rem !important;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.99)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px) !important;
  border: 3px solid var(--mc-border) !important;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.42);
}

.currency-selector .choices__list--dropdown .choices__input {
  color: #fff7dd;
  background: rgba(13, 18, 34, 0.9);
  border-bottom: 2px solid rgba(131, 212, 81, 0.2);
  font-weight: 700;
}

.currency-selector .choices__list--dropdown .choices__item {
  min-height: 3.2rem;
  padding: 0.55rem 0.8rem !important;
  color: #fff7dd;
}

.currency-selector .choices__list--dropdown .choices__item > span,
.currency-selector .choices__list--single .choices__item > span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.currency-selector .symbol {
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 3rem;
  min-width: 3rem;
  height: 2.2rem;
  color: var(--mc-leaf) !important;
  background: rgba(217, 231, 197, 0.12);
  border: 2px solid rgba(131, 212, 81, 0.22);
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0 !important;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.currency-selector .symbol::before {
  content: attr(data-code);
  color: var(--mc-leaf);
  font-size: 0.9rem;
}

.currency-selector .choices__list--dropdown .symbol::before {
  content: attr(data-symbol);
  color: var(--mc-leaf);
  font-size: 1.05rem;
}

.currency-selector .choices__list--dropdown .symbol[data-symbol=""]::before {
  content: attr(data-code);
  font-size: 0.76rem;
}

.currency-selector .choices__list--single .symbol {
  flex-basis: 3.25rem;
  min-width: 3.25rem;
  height: 2rem;
}

.currency-selector .choices__list--single .symbol::before {
  font-size: 0.78rem;
}

.currency-selector .code {
  color: #fff7dd;
  font-weight: 900;
}

.currency-selector .default {
  margin-left: auto;
  color: #d9e7c5;
  font-weight: 800;
}

.currency-selector .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: rgba(95, 191, 63, 0.16) !important;
}

.currency-selector {
  max-width: 6rem;
}

.currency-selector .choices[data-type*="select-one"]::after {
  border-color: #8ba18b transparent transparent !important;
  right: 0.85rem !important;
}

.currency-selector .choices[data-type*="select-one"].is-open::after {
  border-color: transparent transparent #8ba18b !important;
}

.currency-selector .choices__inner {
  display: flex;
  align-items: center;
  min-width: 5.25rem !important;
  width: 5.25rem !important;
  height: 2.9rem !important;
  min-height: 2.9rem !important;
  padding: 0 1.65rem 0 0.75rem !important;
}

.currency-selector .choices__list--single {
  padding: 0 !important;
}

.currency-selector .choices__list--single .choices__item {
  max-width: none !important;
  overflow: visible !important;
}

.currency-selector .choices__list--single .choices__item > span {
  display: block;
  width: auto;
}

.currency-selector .choices__list--single .symbol {
  display: inline !important;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.currency-selector .choices__list--single .symbol::before {
  color: var(--mc-leaf);
  font-size: 0.95rem;
  line-height: 1;
}

.btn-primary,
.btn-outline-primary {
  font-weight: 800;
  text-transform: uppercase;
  border: 3px solid #1d3a1e !important;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.22), 0 4px 0 #1d3a1e;
}

.btn-primary {
  color: #0b120b;
  background: linear-gradient(180deg, var(--mc-leaf), var(--mc-grass)) !important;
}

.btn-outline-primary {
  color: #f7f0c3;
  background: rgba(14, 22, 16, 0.8);
}

.btn-primary:hover,
.btn-outline-primary:hover {
  color: #0b120b;
  background: linear-gradient(180deg, #f8dc71, var(--mc-gold)) !important;
  transform: translateY(1px);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.22), 0 3px 0 #1d3a1e;
}

.hero {
  flex-direction: column;
  border-bottom: 5px solid var(--mc-border);
  background-position: center;
  image-rendering: auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background:
    linear-gradient(90deg, var(--mc-grass) 0 25%, var(--mc-leaf) 25% 50%, var(--mc-grass-dark) 50% 75%, var(--mc-dirt) 75%),
    linear-gradient(90deg, var(--mc-dirt) 0 50%, #4b321f 50%);
  background-size: 64px 9px, 48px 9px;
  background-position: 0 0, 0 9px;
}

.mc-trust-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 2rem));
  margin: -1.5rem auto 2.5rem;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.98)),
    repeating-linear-gradient(90deg, rgba(131, 212, 81, 0.08) 0 12px, transparent 12px 24px);
  border: 4px solid var(--mc-border);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.45);
}

.mc-trust-bar div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.75rem;
  padding: 1rem;
}

.mc-trust-bar div + div {
  border-left: 3px solid rgba(131, 212, 81, 0.22);
}

.mc-trust-icon {
  display: inline-grid;
  grid-row: span 2;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #0b120b;
  font-weight: 900;
  background: var(--mc-gold);
  border: 3px solid #4d3814;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.mc-trust-bar strong {
  color: #fff3b8;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-trust-bar small {
  color: #d9e7c5;
  font-weight: 700;
}

.hero .bg-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 12, 0.78), rgba(8, 13, 12, 0.28) 48%, rgba(8, 13, 12, 0.14)),
    radial-gradient(circle at 20% 80%, rgba(95, 191, 63, 0.24), transparent 32%);
}

.hero .container {
  align-items: flex-start;
}

.hero .content {
  max-width: 720px;
  margin: 0;
  padding: 1.25rem;
  text-align: left;
  background: rgba(14, 22, 16, 0.64);
  border: 4px solid rgba(131, 212, 81, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.28);
}

.hero .content h1 {
  max-width: 680px;
  color: #fff3b8;
  font-size: clamp(1.35rem, 3.6vw, 3rem);
  line-height: 1.35;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.75);
}

.hero .content p {
  max-width: 620px;
  color: #e9f7dd;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero .fake-searchbar {
  max-width: 680px;
  margin-right: 0;
  margin-left: 0;
}

.hero .fake-searchbar input,
.hero .search-modal .searchbar input,
.form-control,
.form-select {
  color: #fff7dd;
  background: rgba(13, 18, 34, 0.9);
  border: 3px solid var(--mc-border);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.32);
}

.hero .content .stats {
  gap: 0;
  background: rgba(23, 32, 25, 0.92);
  border: 3px solid var(--mc-border);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.42);
}

.hero .content .stats div {
  min-width: 8rem;
  padding: 0.5rem 0.9rem;
}

.hero .content .stats div + div {
  border-left: 2px solid rgba(131, 212, 81, 0.25);
}

.hero .content .stats div .value {
  color: var(--mc-gold);
}

.hero .content .stats div .label {
  color: #c9d9ba;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title h2 {
  color: #fff3b8;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  text-shadow: 3px 3px 0 var(--mc-shadow);
}

.section-subtitle p {
  color: #d9e7c5;
}

.mc-how-it-works,
.mc-guarantee-panel,
.mc-support-faq {
  margin-bottom: 2.25rem;
}

.mc-how-it-works,
.mc-guarantee-panel,
.mc-discord-panel,
.mc-faq-panel {
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(16, 22, 17, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px);
  border: 4px solid var(--mc-border);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.42);
}

.mc-how-it-works {
  padding: 1.25rem;
}

.mc-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mc-eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--mc-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-panel-heading h2,
.mc-guarantee-panel h2,
.mc-discord-panel h2 {
  margin: 0;
  color: #fff3b8;
  font-family: "Press Start 2P", "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.4;
  text-shadow: 3px 3px 0 var(--mc-shadow);
}

.mc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mc-steps-grid > div {
  padding: 1rem;
  background: rgba(13, 18, 14, 0.62);
  border: 3px solid rgba(131, 212, 81, 0.34);
}

.mc-steps-grid span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--mc-gold);
  font-weight: 900;
  font-size: 1.1rem;
}

.mc-steps-grid h3 {
  color: #fff3b8;
  font-size: 1rem;
  font-weight: 900;
}

.mc-steps-grid p,
.mc-guarantee-panel p,
.mc-discord-panel p,
.mc-faq-panel p {
  margin-bottom: 0;
  color: #d9e7c5;
  font-weight: 700;
  line-height: 1.55;
}

.socials {
  position: relative;
  overflow: hidden;
  padding-top: 4.25rem !important;
  padding-bottom: 6.75rem !important;
  background:
    linear-gradient(180deg, rgba(18, 28, 20, 0.96), rgba(31, 47, 34, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 18px, rgba(0, 0, 0, 0.08) 18px 36px),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(131, 212, 81, 0.05) 22px 24px);
  border-top: 4px solid var(--mc-border);
  border-bottom: 4px solid rgba(0, 0, 0, 0.55);
}

.socials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(131, 212, 81, 0.12) 16% 17%, transparent 17% 48%, rgba(242, 201, 76, 0.1) 48% 49%, transparent 49%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 35%, rgba(0, 0, 0, 0.28));
}

.socials .container {
  position: relative;
  z-index: 1;
}

.socials .section-title h2 {
  width: 100%;
  text-align: center;
  text-shadow: 4px 4px 0 var(--mc-shadow);
}

.socials .section-title {
  justify-content: center !important;
  text-align: center;
}

.socials .section-title::after {
  content: "";
  display: block;
  width: min(18rem, 70vw);
  height: 0.35rem;
  margin: 1rem auto 0;
  background:
    linear-gradient(90deg, transparent, var(--mc-gold), var(--mc-leaf), transparent);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}

.mc-social-blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mc-social-blocks span {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border: 3px solid rgba(131, 212, 81, 0.28);
  background:
    linear-gradient(180deg, rgba(76, 123, 55, 0.42) 0 35%, rgba(77, 56, 35, 0.45) 35%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 6px, transparent 6px 12px);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
}

.mc-social-blocks span:nth-child(1) {
  top: 18%;
  left: 12%;
}

.mc-social-blocks span:nth-child(2) {
  right: 14%;
  bottom: 16%;
}

.mc-social-blocks span:nth-child(3) {
  top: 24%;
  right: 24%;
  width: 2rem;
  height: 2rem;
}

.socials .list .social {
  justify-content: center;
  min-height: 4.75rem;
  background:
    linear-gradient(180deg, rgba(13, 18, 14, 0.96), rgba(8, 13, 10, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
  border: 4px solid var(--mc-border);
  border-radius: 2px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.44);
  color: #fff7dd;
  font-weight: 900;
  text-align: center;
}

.socials .list .social .left {
  width: 100%;
  justify-content: center;
}

.socials .list .social .left svg {
  background:
    linear-gradient(180deg, #8ee05b, #58bd35);
  border: 2px solid #2e5a26;
  border-radius: 2px;
  color: #0b120b;
}

.socials .list .social .right svg {
  color: #fff3b8;
}

.socials .list .social:hover {
  color: var(--mc-gold);
  border-color: var(--mc-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.44), 0 0 0 4px rgba(242, 201, 76, 0.14);
}

.testimonial {
  position: relative;
  overflow: hidden;
  min-height: 12.5rem;
  padding-bottom: 0 !important;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 10px, transparent 10px 20px);
  border: 4px solid var(--mc-border);
  border-radius: 2px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.42);
}

.testimonial::before,
.testimonial::after {
  content: none !important;
  display: none !important;
}

.testimonial .main,
.testimonial .footer {
  position: relative;
  z-index: 1;
}

.testimonial .header {
  padding: 1rem 1.25rem 0 1.25rem;
}

.testimonial .content {
  padding: 0 1.25rem 0.75rem;
}

.testimonial .content .message {
  color: #fff7dd;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial .footer {
  padding: 0.75rem 1.25rem;
  background: rgba(8, 13, 10, 0.86) !important;
  background-image: none !important;
  border-top: 3px solid rgba(131, 212, 81, 0.22);
  border-bottom: 0;
  border-radius: 0;
  color: #d9e7c5;
}

.testimonial .footer::before,
.testimonial .footer::after {
  content: none !important;
  display: none !important;
}

.testimonial .footer .items,
.testimonial .footer .date {
  position: relative;
  z-index: 1;
}

.products .card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(16, 22, 17, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
  border: 4px solid var(--mc-border);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.42);
}

.products .card:hover {
  transform: translateY(-5px);
  border-color: var(--mc-gold);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(242, 201, 76, 0.18);
}

.products .card .card-img-top {
  background:
    linear-gradient(rgba(13, 18, 34, 0.16), rgba(13, 18, 34, 0.5)),
    repeating-linear-gradient(90deg, #26372b 0 20px, #1a261d 20px 40px);
  border-bottom: 4px solid var(--mc-border);
}

.products .card .card-img-top img {
  image-rendering: auto;
  object-position: center top;
}

.products .card .card-img-top .overlay {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.products .card .card-img-top .overlay .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  border-width: 3px;
  border-radius: 2px;
  font-weight: 900;
  text-transform: uppercase;
}

.products .card .card-img-top .overlay .mc-card-buy-now {
  color: #0b120b;
  background: linear-gradient(180deg, #8ee05b, #58bd35);
  border-color: #275c1e;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.32);
}

.products .card .card-img-top .overlay .mc-card-buy-now:hover {
  color: #0b120b;
  background: linear-gradient(180deg, #a1f06d, #62ce3c);
  border-color: #275c1e;
}

.products .card .card-img-top .overlay .mc-card-add-to-cart {
  color: #0b120b;
  background: var(--mc-gold);
  border-color: #4d3814;
}

.products .card .card-img-top .overlay .mc-card-add-to-cart:hover {
  color: #0b120b;
  background: #ffdd63;
  border-color: #4d3814;
}

.products .card .card-img-top .overlay .mc-card-view-details {
  color: #0b120b;
  background: var(--mc-leaf);
  border-color: #2e5a26;
}

.products .card .card-img-top .badges div,
.hero .search-modal .product .image .badges div {
  color: #0e1208;
  background: var(--mc-gold) !important;
  border: 2px solid #4d3814;
  border-radius: 2px;
  text-transform: uppercase;
}

.products .card .card-img-top .badges .mc-auto-badge-green {
  background: var(--mc-leaf) !important;
}

.products .card .card-img-top .badges .mc-auto-badge-gold {
  background: var(--mc-gold) !important;
}

.products .card .card-body {
  padding: 1rem;
}

.products .card .info {
  color: #d9e7c5;
  font-weight: 800;
}

.products .card .info .price {
  color: var(--mc-gold);
}

.products .card .card-title {
  color: #fff7dd;
  font-weight: 900;
}

.product-wrapper .container.px-4 {
  max-width: 1240px;
}

.product-detail-grid {
  align-items: stretch;
}

.product-media-column {
  max-width: 560px;
}

.product-media-frame {
  width: 100%;
  max-height: 680px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 5px solid var(--mc-border);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.42);
}

.product-wrapper .carousel img,
.product-wrapper img.product-media-frame {
  object-fit: cover;
}

.product-buy-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.25rem 0 1rem;
}

.product-buy-panel h1 {
  color: #fff7dd;
  font-weight: 900;
  line-height: 1.05;
}

.mc-product-description,
.mc-product-faq {
  margin-top: 1.5rem;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.94), rgba(13, 18, 14, 0.96)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px);
  border: 4px solid var(--mc-border);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.36);
}

.mc-product-description .editor {
  color: #e9f7dd;
  font-weight: 700;
  line-height: 1.65;
}

.mc-product-description .editor p:last-child {
  margin-bottom: 0;
}

.mc-product-faq details {
  padding: 0.85rem 0;
  border-top: 2px solid rgba(131, 212, 81, 0.22);
}

.mc-product-faq details:first-of-type {
  border-top: 0;
}

.mc-product-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff3b8;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.mc-product-faq summary::-webkit-details-marker {
  display: none;
}

.mc-product-faq summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  color: #0b120b;
  background: var(--mc-gold);
  border: 2px solid #4d3814;
}

.mc-product-faq details[open] summary::after {
  content: "-";
}

.mc-product-faq p {
  margin: 0;
  padding-top: 0.6rem;
  color: #d9e7c5;
  font-weight: 700;
  line-height: 1.55;
}

.mc-soro-blog-panel {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  padding: clamp(1rem, 2.2vw, 2rem);
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.96), rgba(13, 18, 14, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px);
  border: 5px solid var(--mc-border);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.28), 0 7px 0 rgba(0, 0, 0, 0.42);
}

.mc-soro-blog-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(131, 212, 81, 0.11) 20% 21%, transparent 21% 64%, rgba(242, 201, 76, 0.08) 64% 65%, transparent 65%),
    radial-gradient(circle at 15% 20%, rgba(242, 201, 76, 0.08), transparent 10rem);
}

.mc-soro-blog-panel #soro-blog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #fff7dd;
}

.mc-soro-blog-panel #soro-blog > * {
  max-width: 100% !important;
}

.mc-soro-blog-panel #soro-blog :is(article, [class*="card"], [class*="post"]) {
  background:
    linear-gradient(180deg, rgba(13, 18, 14, 0.98), rgba(8, 13, 10, 0.99)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 10px, transparent 10px 20px) !important;
  border: 4px solid var(--mc-border) !important;
  border-radius: 2px !important;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.42) !important;
}

.mc-soro-blog-panel #soro-blog :is(article, [class*="card"], [class*="post"]):hover {
  border-color: var(--mc-gold) !important;
  transform: translateY(-2px);
}

.mc-soro-blog-panel #soro-blog :is(article, [class*="card"], [class*="post"]) :is(article, [class*="card"], [class*="post"]),
.mc-soro-blog-panel #soro-blog :is(h1, h2, h3, h4, p, span, time, a, div) {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.mc-soro-blog-panel #soro-blog img {
  border: 3px solid rgba(108, 142, 113, 0.75) !important;
  border-radius: 2px !important;
  background: #101611;
}

.mc-soro-blog-panel #soro-blog :is(h1, h2, h3, h4) {
  color: #fff3b8 !important;
  font-family: "Press Start 2P", "Inter", sans-serif !important;
  font-size: clamp(0.92rem, 1.6vw, 1.12rem) !important;
  line-height: 1.45 !important;
  text-shadow: 2px 2px 0 var(--mc-shadow);
}

.mc-soro-blog-panel #soro-blog :is(p, span, time) {
  color: #d9e7c5 !important;
}

.mc-soro-blog-panel #soro-blog a {
  color: var(--mc-leaf) !important;
  text-decoration-color: var(--mc-leaf) !important;
}

.cart .cart-item-bg {
  background:
    linear-gradient(180deg, rgba(13, 18, 14, 0.9), rgba(9, 14, 11, 0.96)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 12px, transparent 12px 24px);
  border-color: rgba(108, 142, 113, 0.55) !important;
}

.cart .cart-item-bg > .flex-grow-1 {
  min-width: 0;
  overflow: visible;
}

.cart .cart-item-bg > .flex-grow-1 > .position-relative {
  flex: 0 0 clamp(7rem, 18vw, 14rem);
  width: clamp(7rem, 18vw, 14rem) !important;
  max-width: clamp(7rem, 18vw, 14rem);
}

.cart .cart-item-bg > .flex-grow-1 > .text-start {
  min-width: 12rem;
  overflow: visible !important;
}

.cart .cart-item-bg .text-truncate {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.cart .cart-product-link,
.cart .cart-product-link span,
.cart .cart-variant-text,
.cart .cart-discount-text {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.cart .cart-product-link {
  display: block;
  max-width: 100%;
  line-height: 1.2;
}

.cart .cart-controls {
  flex: 0 0 auto;
  min-width: min(26rem, 100%);
}

@media (max-width: 767.98px) {
  .cart .cart-item-bg > .flex-grow-1 {
    align-items: flex-start;
  }

  .cart .cart-item-bg > .flex-grow-1 > .position-relative {
    flex-basis: 6rem;
    width: 6rem !important;
    max-width: 6rem;
  }

  .cart .cart-controls {
    min-width: 0;
    width: 100%;
    padding-right: 0.75rem !important;
  }
}

.mc-guarantee-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  margin-top: 1rem;
}

.mc-guarantee-panel p {
  max-width: 760px;
}

.mc-support-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.mc-discord-panel,
.mc-faq-panel {
  padding: 1.25rem;
}

.mc-discord-panel {
  position: relative;
  min-height: 21rem;
  overflow: hidden;
  padding-bottom: 6.5rem;
}

.mc-discord-panel .btn {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.mc-discord-panel::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 4.9rem;
  width: 4.5rem;
  height: 4.5rem;
  opacity: 0.72;
  background:
    linear-gradient(180deg, rgba(131, 212, 81, 0.78) 0 35%, rgba(93, 67, 41, 0.86) 35%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 8px, transparent 8px 16px);
  border: 3px solid rgba(131, 212, 81, 0.42);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
}

.mc-discord-panel::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  height: 3.2rem;
  background:
    linear-gradient(180deg, rgba(131, 212, 81, 0.86) 0 28%, rgba(96, 69, 41, 0.9) 28% 66%, rgba(54, 38, 25, 0.94) 66%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 2.5rem, transparent 2.5rem 5rem);
  border: 3px solid rgba(131, 212, 81, 0.36);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
}

.mc-faq-panel details {
  padding: 0.85rem 0;
  border-top: 2px solid rgba(131, 212, 81, 0.22);
}

.mc-faq-panel details:first-of-type {
  border-top: 0;
}

.mc-faq-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff3b8;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.mc-faq-panel summary::-webkit-details-marker {
  display: none;
}

.mc-faq-panel summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  color: #0b120b;
  background: var(--mc-gold);
  border: 2px solid #4d3814;
  transition: transform .25s ease;
}

.mc-faq-panel details[open] summary::after {
  transform: rotate(45deg);
}

.mc-faq-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .32s ease, opacity .24s ease;
}

.mc-faq-panel details[open] .mc-faq-content {
  opacity: 1;
}

.mc-faq-panel details p {
  padding-top: 0.6rem;
}

.mc-review-slider {
  position: relative;
  width: 100%;
  margin: 0.25rem 0 1.25rem;
  overflow: hidden;
  border: 4px solid var(--mc-border);
  background:
    linear-gradient(90deg, rgba(16, 22, 17, 0.98), rgba(34, 45, 36, 0.94), rgba(16, 22, 17, 0.98)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 14px, transparent 14px 28px);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.25), 0 6px 0 rgba(0, 0, 0, 0.35);
}

.mc-review-slider::before,
.mc-review-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 7rem);
  pointer-events: none;
}

.mc-review-slider::before {
  left: 0;
  background: linear-gradient(90deg, #101611, rgba(16, 22, 17, 0));
}

.mc-review-slider::after {
  right: 0;
  background: linear-gradient(270deg, #101611, rgba(16, 22, 17, 0));
}

.mc-review-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1rem;
  animation: mc-review-slide 42s linear infinite;
}

.mc-review-slider:hover .mc-review-track {
  animation-play-state: paused;
}

.mc-review-card {
  position: relative;
  flex: 0 0 22rem;
  min-height: 14.25rem;
  overflow: hidden;
  padding: 1rem 1rem 2.6rem;
  color: #fff7dd;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.98)),
    repeating-linear-gradient(90deg, rgba(131, 212, 81, 0.08) 0 12px, transparent 12px 24px);
  border: 4px solid var(--mc-border);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.45);
}

.mc-review-card::after {
  content: none;
  display: none;
}

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

.mc-feedback-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.container.py-20.component:has(.mc-guarantee-panel) {
  padding-bottom: 1.5rem;
}

.mc-feedback-section .row:empty {
  display: none;
}

.mc-review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.mc-review-head h3 {
  margin: 0 0 0.2rem;
  color: #fff3b8;
  font-size: 1rem;
  font-weight: 900;
}

.mc-review-head p {
  margin: 0;
  color: #d9e7c5;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mc-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
  color: var(--mc-leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
  color: var(--mc-gold);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}

.mc-review-message {
  margin: 0;
  color: #f5f0dc;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.mc-mob-avatar {
  position: relative;
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  image-rendering: pixelated;
  border: 3px solid rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.12), 3px 3px 0 rgba(0, 0, 0, 0.55);
}

.mc-mob-avatar span {
  position: absolute;
  display: block;
  background: #090d0a;
}

.mc-mob-avatar .eye {
  top: 0.9rem;
  width: 0.55rem;
  height: 0.75rem;
}

.mc-mob-avatar .eye-left {
  left: 0.8rem;
}

.mc-mob-avatar .eye-right {
  right: 0.8rem;
}

.mc-mob-avatar .nose {
  top: 1.75rem;
  left: 1.45rem;
  width: 0.6rem;
  height: 0.5rem;
}

.mc-mob-avatar .mouth {
  top: 2.2rem;
  left: 1.05rem;
  width: 1.4rem;
  height: 0.45rem;
}

.mc-mob-creeper {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18%),
    repeating-linear-gradient(45deg, #75c850 0 10px, #4d9a38 10px 20px, #8bd263 20px 30px);
}

.mc-mob-blaze {
  background:
    linear-gradient(180deg, #ffd166 0 30%, #f58b2b 30% 70%, #7a3218 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 8px, transparent 8px 16px);
}

.mc-mob-copper {
  background:
    linear-gradient(135deg, #7c4a2d, #d98b53 52%, #2c7a74),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 8px, transparent 8px 16px);
}

.mc-mob-blaze .eye,
.mc-mob-blaze .nose,
.mc-mob-blaze .mouth,
.mc-mob-copper .eye,
.mc-mob-copper .nose,
.mc-mob-copper .mouth {
  background: #3c1608;
}

.mc-mob-ender {
  background:
    radial-gradient(circle at 25% 20%, rgba(175, 82, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #201433, #0c0b16 62%, #4b2374);
}

.mc-mob-ender .eye {
  background: #b15cff;
  box-shadow: 0 0 8px #b15cff;
}

.mc-mob-slime {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 45%),
    linear-gradient(180deg, #a8f071, #57be47);
}

.mc-mob-slime .eye,
.mc-mob-slime .nose,
.mc-mob-slime .mouth {
  background: #224f28;
}

.mc-mob-zombie {
  background:
    linear-gradient(180deg, #67a96b 0 58%, #4f6ea4 58% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0 12px, transparent 12px 24px);
}

@keyframes mc-review-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.mc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.mc-reveal.mc-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-primary {
  color: var(--mc-leaf) !important;
}

.product-img-placeholder {
  background:
    linear-gradient(180deg, rgba(95, 191, 63, 0.14), rgba(53, 167, 255, 0.08)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 12px, transparent 12px 24px);
}

.product-img-placeholder svg {
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.5));
}

.modal-content,
.search-modal .modal-content {
  background: var(--mc-panel);
  border: 4px solid var(--mc-border);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.5);
}

.hero .search-modal .product {
  padding: 0.75rem;
  background: var(--mc-panel-2);
  border: 3px solid var(--mc-border);
}

.hero .search-modal .product .image {
  flex: 0 0 8rem;
  width: 8rem;
  max-width: 8rem;
  height: 8rem;
  max-height: 8rem;
  overflow: hidden;
  border: 3px solid var(--mc-border);
  background:
    linear-gradient(rgba(13, 18, 34, 0.16), rgba(13, 18, 34, 0.5)),
    repeating-linear-gradient(90deg, #26372b 0 20px, #1a261d 20px 40px);
}

.hero .search-modal .product .image img,
.hero .search-modal .product .image .product-img-placeholder {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: auto;
}

.hero .search-modal .product .left {
  min-width: 0;
}

.hero .search-modal .product .text {
  min-width: 0;
}

@media (max-width: 575.98px) {
  .hero .search-modal .product .image {
    flex-basis: 5.5rem;
    width: 5.5rem;
    max-width: 5.5rem;
    height: 5.5rem;
    max-height: 5.5rem;
  }
}

.mc-cart-drawer {
  --bs-offcanvas-width: min(100vw, 520px);
  color: #fff7dd;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.99)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px);
  border-left: 5px solid var(--mc-border);
}

.mc-cart-drawer .offcanvas-header {
  align-items: flex-start;
  border-bottom: 4px solid rgba(131, 212, 81, 0.25);
}

.mc-cart-drawer h5 {
  margin: 0;
  color: #fff3b8;
  font-family: "Press Start 2P", "Inter", sans-serif;
  font-size: 1.25rem;
  text-shadow: 3px 3px 0 var(--mc-shadow);
}

.mc-cart-drawer .btn-close {
  filter: invert(1);
  opacity: 0.9;
}

.mc-cart-state,
.mc-cart-empty {
  padding: 1.25rem;
  text-align: center;
  background: rgba(13, 18, 14, 0.62);
  border: 3px solid var(--mc-border);
}

.mc-cart-empty h6 {
  color: #fff3b8;
  font-size: 1.1rem;
  font-weight: 900;
}

.mc-cart-empty p {
  color: #d9e7c5;
  font-weight: 700;
}

.mc-cart-layout {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 1rem;
}

.mc-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mc-cart-item {
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 0.85rem;
  padding: 0.75rem;
  background: rgba(13, 18, 14, 0.68);
  border: 3px solid rgba(131, 212, 81, 0.34);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
}

.mc-cart-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  background:
    linear-gradient(rgba(13, 18, 34, 0.16), rgba(13, 18, 34, 0.5)),
    repeating-linear-gradient(90deg, #26372b 0 12px, #1a261d 12px 24px);
  border: 3px solid rgba(0, 0, 0, 0.45);
}

.mc-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-cart-image span {
  width: 2rem;
  height: 3rem;
  background: linear-gradient(135deg, #17391b, #83d451 48%, #0e2411);
  border: 3px solid rgba(0, 0, 0, 0.55);
}

.mc-cart-detail {
  min-width: 0;
}

.mc-cart-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.mc-cart-title-row a {
  color: #fff3b8;
  font-weight: 900;
  text-decoration: none;
}

.mc-cart-title-row button {
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  color: #0b120b;
  background: var(--mc-gold);
  border: 2px solid #4d3814;
  font-weight: 900;
  line-height: 1;
}

.mc-cart-detail p {
  margin: 0.25rem 0 0.75rem;
  color: #d9e7c5;
  font-weight: 700;
}

.mc-cart-controls {
  display: grid;
  grid-template-columns: 2rem 3.5rem 2rem 1fr;
  align-items: center;
  gap: 0.35rem;
}

.mc-cart-controls button,
.mc-cart-controls input {
  height: 2rem;
  color: #fff7dd;
  background: rgba(13, 18, 34, 0.92);
  border: 2px solid var(--mc-border);
  font-weight: 900;
  text-align: center;
}

.mc-cart-controls strong {
  color: var(--mc-gold);
  text-align: right;
  font-weight: 900;
}

.mc-cart-summary {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.98), rgba(13, 18, 14, 0.99)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
  border: 4px solid var(--mc-border);
  box-shadow: 0 -4px 0 rgba(0, 0, 0, 0.24);
}

.mc-cart-summary > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #d9e7c5;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-cart-summary strong {
  color: var(--mc-gold);
}

.mc-cart-secure-note {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem;
  color: #d9e7c5;
  background: rgba(13, 18, 14, 0.7);
  border: 3px solid rgba(131, 212, 81, 0.34);
  font-weight: 800;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24, 34, 26, 0.98), rgba(9, 14, 10, 0.99)),
    linear-gradient(45deg, rgba(95, 191, 63, 0.08) 25%, transparent 25% 75%, rgba(95, 191, 63, 0.08) 75%),
    linear-gradient(45deg, rgba(107, 74, 43, 0.12) 25%, transparent 25% 75%, rgba(107, 74, 43, 0.12) 75%),
    #0d120e;
  background-size: auto, 32px 32px, 32px 32px, auto;
  background-position: 0 0, 0 0, 16px 16px, 0 0;
  border-top: 5px solid var(--mc-border);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background:
    linear-gradient(90deg, var(--mc-grass) 0 25%, var(--mc-leaf) 25% 50%, var(--mc-grass-dark) 50% 75%, var(--mc-dirt) 75%),
    linear-gradient(90deg, var(--mc-dirt) 0 50%, #4b321f 50%);
  background-size: 64px 9px, 48px 9px;
  background-position: 0 0, 0 9px;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(242, 201, 76, 0.12), transparent 22%),
    radial-gradient(circle at 85% 70%, rgba(95, 191, 63, 0.1), transparent 24%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.mc-footer-top {
  display: grid;
  grid-template-columns: minmax(15rem, 1.6fr) repeat(4, minmax(9rem, 1fr));
  gap: 1.5rem;
  padding: 5rem 0 2rem;
}

.mc-footer-brand,
.mc-footer-col {
  padding: 1rem;
  background: rgba(13, 18, 14, 0.56);
  border: 3px solid rgba(131, 212, 81, 0.24);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28);
}

.mc-footer-brand {
  background:
    linear-gradient(180deg, rgba(34, 45, 36, 0.76), rgba(13, 18, 14, 0.7)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
}

.footer .logo {
  margin-bottom: 1rem;
}

.footer .logo img {
  max-height: 44px;
  margin-bottom: 0.75rem;
  image-rendering: pixelated;
}

.footer .logo p {
  color: #fff3b8;
  font-family: "Press Start 2P", "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.35;
  text-shadow: 3px 3px 0 var(--mc-shadow);
}

.mc-footer-copy {
  max-width: 27rem;
  margin-bottom: 1rem;
  color: #d9e7c5;
  font-weight: 700;
  line-height: 1.55;
}

.mc-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mc-footer-badges span {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  color: #0b120b;
  background: var(--mc-gold);
  border: 2px solid #4d3814;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer h5 {
  color: var(--mc-gold);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer .nav li a,
.footer .nav li span {
  color: #d9e7c5;
  display: inline-block;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.footer .nav li a:hover {
  color: var(--mc-leaf);
  transform: translateX(4px);
}

.mc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 3px solid rgba(131, 212, 81, 0.22);
}

.mc-footer-bottom p {
  margin: 0;
  color: #aebda7;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .hero .content {
    padding: 1rem;
  }

  .hero .content .stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .content .stats div + div {
    border-top: 2px solid rgba(131, 212, 81, 0.25);
    border-left: 0;
  }

  .navbar .navbar-brand {
    font-size: 0.7rem;
  }

  .mc-trust-bar,
  .mc-steps-grid,
  .mc-support-faq,
  .mc-footer-top {
    grid-template-columns: 1fr;
  }

  .mc-trust-bar div + div {
    border-top: 3px solid rgba(131, 212, 81, 0.22);
    border-left: 0;
  }

  .mc-panel-heading,
  .mc-guarantee-panel,
  .mc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .mc-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mc-trust-bar div:nth-child(3) {
    border-left: 0;
  }

  .mc-trust-bar div:nth-child(n + 3) {
    border-top: 3px solid rgba(131, 212, 81, 0.22);
  }

  .mc-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mc-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mc-review-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }

  .mc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
