:root {
  --honey-bg: #211203;
  --honey-panel: #b96f09;
  --honey-panel-dark: #794204;
  --honey-gold: #f6bd22;
  --honey-light: #ffe783;
  --honey-lime: #a3e635;
  --honey-ink: #241400;
  --honey-line: rgba(255, 224, 111, 0.34);
}

html {
  scroll-behavior: smooth;
}

body.honey-theme {
  min-height: 100vh;
  overflow-x: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 189, 34, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(163, 230, 53, 0.09), transparent 28rem),
    linear-gradient(180deg, #3a2106 0, var(--honey-bg) 42rem, #150b02 100%);
  font-family: "Poppins", sans-serif;
}

.honey-nav a,
.hero-store-button,
.pixel-button,
.category-button,
.product-card,
.product-card__image img,
.vt-toast {
  transition:
    transform 0.25s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    opacity 0.2s ease;
}

.honey-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 220, 101, 0.25);
  background: rgba(27, 15, 2, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.honey-nav__inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.honey-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #fff;
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.honey-nav__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.35));
}

.honey-nav__brand span span {
  color: var(--honey-lime);
}

.honey-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.honey-nav__links > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #ffeeb5;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.honey-nav__links > a:hover,
.honey-nav__links > a.is-active {
  color: #fff;
  background: rgba(246, 189, 34, 0.11);
  border-color: rgba(246, 189, 34, 0.23);
}

.honey-nav__links .honey-nav__store {
  min-height: 52px;
  gap: 9px;
  padding: 0 16px;
  border: 2px solid #d9ff73;
  border-bottom: 5px solid #5d850c;
  color: #172003;
  background: linear-gradient(135deg, #d9ff73, var(--honey-lime) 58%, #f7cf2e);
  box-shadow:
    0 0 0 3px rgba(163, 230, 53, 0.11),
    0 0 30px rgba(163, 230, 53, 0.28);
  animation: storeGlow 2.2s ease-in-out infinite;
}

.honey-nav__links .honey-nav__store:hover {
  color: #172003;
  border-color: #fff2a6;
  background: linear-gradient(135deg, #efffb6, #b8f34f 58%, #ffe265);
  transform: translateY(-2px) scale(1.03);
}

.honey-nav__store img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.honey-nav__store span {
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.honey-nav__store small {
  padding: 3px 5px;
  border-radius: 4px;
  color: #fff9d7;
  background: #422704;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.honey-nav__links .honey-nav__discord {
  border-color: rgba(130, 142, 255, 0.45);
  color: #eef0ff;
  background: rgba(88, 101, 242, 0.25);
}

.hero-store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 7px 18px;
  border: 2px solid #e9ffaf;
  border-bottom: 6px solid #5f850f;
  border-radius: 12px;
  color: #1f2b04;
  background: linear-gradient(135deg, #dfff89, var(--honey-lime) 55%, #f9ce28);
  box-shadow: 0 14px 35px rgba(125, 184, 29, 0.36);
  text-decoration: none;
}

.hero-store-button:hover {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 18px 44px rgba(163, 230, 53, 0.48);
}

.hero-store-button span {
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 15px;
}

.hero-store-button b {
  padding: 5px 7px;
  border-radius: 5px;
  color: #fff8d2;
  background: #2b3c06;
  font-size: 9px;
  letter-spacing: 0.08em;
}

@keyframes storeGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1), 0 0 24px rgba(163, 230, 53, 0.21); }
  50% { box-shadow: 0 0 0 5px rgba(163, 230, 53, 0.16), 0 0 38px rgba(163, 230, 53, 0.42); }
}

.store-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 24px 110px;
  text-align: center;
}

.store-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(41, 23, 2, 0.25), #2b1906 94%),
    url("background.jpg") center 44% / cover;
  opacity: 0.88;
}

.store-hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 170px;
  content: "";
  background: linear-gradient(0deg, #2b1906, transparent);
}

.store-hero__logo {
  width: min(470px, 88vw);
  margin: 0 auto 20px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.45));
}

.store-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 233, 144, 0.38);
  border-radius: 999px;
  color: #fff1b6;
  background: rgba(44, 25, 3, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.store-hero h1 {
  margin: 0;
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.92;
  text-shadow: 0 7px 0 rgba(74, 38, 0, 0.5);
}

.store-hero h1 span {
  color: var(--honey-lime);
}

.store-hero p {
  max-width: 650px;
  margin: 18px auto 0;
  color: #fff0bd;
  font-size: 15px;
  line-height: 1.7;
}

.campaign {
  position: relative;
  z-index: 4;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: -62px auto 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  border: 2px solid #ffe36d;
  border-bottom: 7px solid #9c5c05;
  border-radius: 18px;
  color: var(--honey-ink);
  background: linear-gradient(110deg, #fff0a5, #f6bd22 55%, #a3e635);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.campaign[hidden] {
  display: none;
}

.campaign__percent {
  display: grid;
  place-items: center;
  min-width: 116px;
  min-height: 52px;
  border-radius: 11px;
  color: #fff9d6;
  background: #422604;
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 26px;
}

.campaign__copy {
  flex: 1;
}

.campaign__copy strong,
.campaign__copy span {
  display: block;
}

.campaign__copy strong {
  font-size: 15px;
  font-weight: 900;
}

.campaign__copy span {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.78;
}

.campaign__note {
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

.store-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 76px;
}

.player-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border: 1px solid var(--honey-line);
  border-bottom: 5px solid #704006;
  border-radius: 16px;
  background: rgba(148, 84, 7, 0.74);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.player-card__identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.player-card__avatar {
  width: 56px;
  height: 56px;
  padding: 5px;
  border: 2px solid #ffe17a;
  border-radius: 12px;
  background: #2d1902;
  image-rendering: pixelated;
}

.player-card__copy small,
.player-card__copy strong,
.player-card__copy span {
  display: block;
}

.player-card__copy small {
  color: #ffe5a1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.player-card__copy strong {
  margin: 3px 0 2px;
  font-size: 17px;
}

.player-card__copy span {
  color: #ffe8ad;
  font-size: 11px;
}

.pixel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px;
  border: 2px solid #ffeaa0;
  border-bottom: 5px solid #9a620a;
  border-radius: 10px;
  color: #2b1903;
  background: linear-gradient(180deg, #ffdf5c, #efaa15);
  font: 900 12px "Poppins", sans-serif;
  cursor: pointer;
  text-decoration: none;
}

.pixel-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.pixel-button--lime {
  border-color: #eaffb8;
  border-bottom-color: #668b16;
  background: linear-gradient(180deg, #d8ff7c, #9cda2b);
}

.store-layout {
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.store-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.honey-panel {
  overflow: hidden;
  border: 1px solid var(--honey-line);
  border-bottom: 5px solid #603503;
  border-radius: 16px;
  background: rgba(113, 61, 4, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.honey-panel__title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 15px;
  border-bottom: 1px solid var(--honey-line);
  color: #fff1b5;
  background: rgba(246, 189, 34, 0.09);
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 15px;
}

.honey-panel__title img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.category-list {
  display: grid;
  gap: 7px;
  padding: 11px;
}

.category-button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #ffe7a5;
  background: rgba(42, 23, 2, 0.45);
  font: 800 12px "Poppins", sans-serif;
  text-align: left;
  cursor: pointer;
}

.category-button img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.category-button b {
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  border-radius: 7px;
  color: #ffdc6b;
  background: rgba(246, 189, 34, 0.13);
  font-size: 10px;
}

.category-button:hover,
.category-button.is-active {
  border-color: #d8ff72;
  color: #1f2b03;
  background: linear-gradient(110deg, #d9ff79, #a3e635);
  transform: translateX(3px);
}

.category-button:hover b,
.category-button.is-active b {
  color: #fff5bc;
  background: #385105;
}

.how-card {
  padding: 14px;
}

.how-card ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffebb1;
  font-size: 11px;
}

.how-card li b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border-radius: 7px;
  color: #263500;
  background: var(--honey-lime);
}

.how-card p {
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 226, 125, 0.17);
  color: #ffdc82;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.store-content {
  min-width: 0;
  scroll-margin-top: 94px;
}

.store-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
  padding: 18px 20px;
  border: 1px solid var(--honey-line);
  border-radius: 15px;
  background: rgba(117, 64, 4, 0.62);
}

.store-heading small,
.store-heading strong,
.store-heading p {
  display: block;
}

.store-heading small {
  color: var(--honey-lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.store-heading strong {
  margin-top: 3px;
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 26px;
}

.store-heading p {
  max-width: 610px;
  margin: 6px 0 0;
  color: #ffe7a7;
  font-size: 11px;
  line-height: 1.55;
}

.store-heading__count {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid #d8ff7a;
  border-bottom: 4px solid #658b15;
  border-radius: 9px;
  color: #263503;
  background: var(--honey-lime);
  font-size: 10px;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 221, 105, 0.31);
  border-bottom: 6px solid #6c3b04;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(238, 150, 20, 0.2), transparent 50%),
    rgba(121, 67, 5, 0.83);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.22);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #ffe689;
  box-shadow: 0 21px 42px rgba(0, 0, 0, 0.3);
}

.product-card__tag,
.product-card__discount {
  position: absolute;
  z-index: 3;
  top: 11px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-card__tag {
  left: 11px;
  color: #342000;
  background: #ffd861;
}

.product-card__discount {
  right: 11px;
  color: #1e2b01;
  background: var(--honey-lime);
}

.product-card__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.16;
  margin: 9px 9px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 230, 139, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle, rgba(255, 224, 105, 0.18), transparent 62%),
    rgba(34, 18, 1, 0.56);
}

.product-card__image::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, #ffc935 12%, transparent 12.5%, transparent 87%, #ffc935 87.5%, #ffc935),
    linear-gradient(150deg, #ffc935 12%, transparent 12.5%, transparent 87%, #ffc935 87.5%, #ffc935);
  background-size: 32px 56px;
}

.product-card__image img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 13px 13px rgba(0, 0, 0, 0.38));
}

.product-card:hover .product-card__image img {
  transform: scale(1.06) rotate(-1deg);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.product-card h2 {
  margin: 0;
  color: #fff8df;
  font-size: 16px;
  line-height: 1.25;
}

.product-card__summary {
  min-height: 54px;
  margin: 8px 0 13px;
  color: #ffe3a0;
  font-size: 10px;
  line-height: 1.55;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.product-card__price s {
  color: #d8b96b;
  font-size: 11px;
}

.product-card__price strong {
  color: var(--honey-lime);
  font-family: "MinecraftTen", "Poppins", sans-serif;
  font-size: 22px;
}

.product-card .pixel-button {
  width: 100%;
  margin-top: auto;
}

.product-card .pixel-button[aria-disabled="true"] {
  border-color: #aa8a42;
  border-bottom-color: #5b4619;
  color: #d5c187;
  background: #665328;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

.payment-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 17px 19px;
  border: 1px solid var(--honey-line);
  border-radius: 14px;
  color: #ffe8aa;
  background: rgba(100, 53, 3, 0.62);
  font-size: 10px;
  line-height: 1.45;
}

.payment-strip__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-strip__logos img {
  width: 43px;
  max-height: 26px;
  padding: 4px;
  border-radius: 5px;
  background: #fff;
  object-fit: contain;
}

.honey-footer {
  border-top: 1px solid rgba(255, 221, 107, 0.19);
  background: rgba(20, 10, 1, 0.56);
}

.honey-footer__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: #e7c97c;
  font-size: 10px;
}

.honey-footer__inner nav {
  display: flex;
  gap: 15px;
}

.honey-footer__inner a,
.honey-footer__inner button {
  padding: 0;
  border: 0;
  color: #ffdf81;
  background: transparent;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.honey-footer__inner a:hover,
.honey-footer__inner button:hover {
  color: var(--honey-lime);
}

.vt-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 40px);
  padding: 13px 16px;
  border: 2px solid #dfff89;
  border-bottom: 5px solid #628912;
  border-radius: 11px;
  color: #1d2902;
  background: var(--honey-lime);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
}

.vt-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .honey-nav__links > a:not(.honey-nav__store):not(.honey-nav__discord) {
    display: none;
  }

  .store-layout {
    grid-template-columns: 1fr;
  }

  .store-sidebar {
    position: static;
  }

  .category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-button {
    grid-template-columns: 38px 1fr;
  }

  .category-button b {
    display: none;
  }

  .how-panel {
    display: none;
  }
}

@media (max-width: 760px) {
  .honey-nav__inner {
    width: min(100% - 20px, 1160px);
    min-height: 68px;
    gap: 8px;
  }

  .honey-nav__brand > span {
    display: none;
  }

  .honey-nav__links {
    gap: 6px;
  }

  .honey-nav__links .honey-nav__store {
    min-height: 48px;
    padding: 0 11px;
  }

  .honey-nav__store small {
    display: none;
  }

  .honey-nav__links .honey-nav__discord {
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-store-button b {
    display: none;
  }

  .store-hero {
    padding: 45px 18px 95px;
  }

  .campaign {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .campaign__percent {
    min-width: 94px;
  }

  .campaign__note {
    width: 100%;
    text-align: left;
  }

  .player-card {
    align-items: stretch;
    flex-direction: column;
  }

  .player-card .pixel-button {
    width: 100%;
  }

  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .store-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card__summary {
    min-height: 0;
  }

  .payment-strip,
  .honey-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .store-shell {
    width: min(100% - 20px, 1160px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-button {
    min-height: 50px;
    font-size: 10px;
  }

  .product-card__image {
    aspect-ratio: 1.35;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
