:root {
  color-scheme: dark;
  --ink-950: #07090c;
  --ink-925: #0b0d12;
  --ink-900: #10131a;
  --ink-850: #151923;
  --ink-800: #1b202b;
  --ink-750: #222936;
  --ink-700: #2b3442;
  --paper: #f4ead7;
  --paper-muted: #c9bda9;
  --paper-dim: #9c9385;
  --gold-100: #fff0bb;
  --gold-200: #f5d47c;
  --gold-300: #d9aa4e;
  --gold-400: #aa7730;
  --gold-500: #70451b;
  --ruby-200: #e68a80;
  --ruby-300: #be514b;
  --ruby-400: #7f292b;
  --jade-200: #8ed3b2;
  --jade-300: #4baf82;
  --jade-400: #28725b;
  --sky-200: #9bc7e9;
  --sky-300: #6098c1;
  --line: rgba(231, 199, 127, 0.2);
  --line-strong: rgba(231, 199, 127, 0.44);
  --surface: rgba(19, 23, 31, 0.96);
  --surface-soft: rgba(27, 32, 43, 0.92);
  --surface-raised: rgba(35, 41, 53, 0.96);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.32);
  --shadow-deep: 0 24px 70px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 0 1px rgba(245, 212, 124, 0.08),
    0 18px 45px rgba(0, 0, 0, 0.38);
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shell: 1640px;
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-400) var(--ink-950);
  scrollbar-width: thin;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% -10%, rgba(150, 52, 42, 0.22), transparent 36rem),
    radial-gradient(circle at 92% 10%, rgba(47, 103, 99, 0.16), transparent 42rem),
    linear-gradient(135deg, transparent 0 49.5%, rgba(221, 180, 91, 0.022) 49.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(45deg, transparent 0 49.5%, rgba(221, 180, 91, 0.018) 49.5% 50.5%, transparent 50.5% 100%),
    var(--ink-950);
  background-size: auto, auto, 46px 46px, 46px 46px, auto;
  color: var(--paper);
  font-family: "Segoe UI", Inter, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.015)),
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.38) 100%);
}

body::after {
  top: -12rem;
  left: 50%;
  width: min(92vw, 92rem);
  height: 18rem;
  transform: translateX(-50%);
  border: 1px solid rgba(221, 180, 91, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(157, 96, 34, 0.08),
    inset 0 -30px 80px rgba(157, 96, 34, 0.06);
}

::selection {
  background: var(--gold-300);
  color: var(--ink-950);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ink-950);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink-950);
  border-radius: 999px;
  background: var(--gold-400);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold-200);
  text-decoration-color: rgba(245, 212, 124, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  color: var(--gold-100);
  text-decoration-color: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 2.3vw + 1rem, 4rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 1.15vw + 1rem, 2.35rem);
  letter-spacing: -0.018em;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.38rem);
}

p {
  margin-bottom: 1rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-200);
  outline-offset: 3px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(231, 199, 127, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(6, 8, 12, 0.78);
  color: var(--paper);
  padding: 0.7rem 0.85rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(231, 199, 127, 0.44);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-300);
  background: rgba(8, 10, 15, 0.94);
  box-shadow: 0 0 0 4px rgba(217, 170, 78, 0.11);
}

input::placeholder,
textarea::placeholder {
  color: #837c71;
  opacity: 1;
}

select {
  color-scheme: dark;
  cursor: pointer;
}

label {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--paper-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.shell,
body > main {
  width: min(calc(100% - clamp(1.5rem, 4vw, 5rem)), var(--shell));
  margin-inline: auto;
}

body > main {
  padding-block: clamp(1.2rem, 2.8vw, 3.25rem) clamp(3.5rem, 8vh, 7rem);
}

.shell {
  padding-bottom: clamp(3.5rem, 8vh, 7rem);
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  min-height: var(--header-height);
  margin-inline: calc(clamp(0.75rem, 2vw, 2rem) * -1);
  padding: 0.7rem clamp(0.75rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(231, 199, 127, 0.16);
  background: rgba(8, 10, 14, 0.88);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(245, 212, 124, 0.56), transparent);
  opacity: 0.42;
}

.brand {
  display: inline-flex;
  gap: 0.78rem;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(245, 212, 124, 0.5);
  border-radius: 18px 18px 22px 22px / 14px 14px 27px 27px;
  background:
    linear-gradient(145deg, rgba(245, 212, 124, 0.24), transparent 42%),
    linear-gradient(180deg, #752b2c, #32191d);
  box-shadow:
    inset 0 0 0 3px rgba(8, 9, 12, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.35);
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark::after {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 240, 187, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 0.3rem;
  overflow: hidden;
  color: var(--paper-dim);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--gold-200);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem clamp(0.65rem, 1.2vw, 1rem);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--paper-muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  border-color: rgba(231, 199, 127, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
  text-decoration: none;
}

.nav-link.active {
  border-color: rgba(231, 199, 127, 0.25);
  background:
    linear-gradient(180deg, rgba(245, 212, 124, 0.11), rgba(170, 119, 48, 0.05)),
    rgba(255, 255, 255, 0.02);
  color: var(--gold-100);
  box-shadow: inset 0 -2px 0 var(--gold-300);
}

.wallet {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding: 0.52rem 0.65rem 0.52rem 0.85rem;
  border: 1px solid rgba(231, 199, 127, 0.25);
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(217, 170, 78, 0.09), transparent 55%),
    rgba(18, 22, 29, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wallet > span,
.wallet > div:first-child {
  display: grid;
  min-width: 0;
  color: var(--paper-dim);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.wallet strong {
  display: block;
  overflow: hidden;
  margin-top: 0.12rem;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.wallet-actions {
  display: flex;
  gap: 0.38rem;
  align-items: center;
}

.button,
button {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.68rem 1rem;
  background: var(--ink-700);
  color: var(--paper);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms var(--ease),
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  color: var(--paper);
  text-decoration: none;
}

.button:active,
button:active {
  transform: translateY(0);
}

.button-primary,
button[type="submit"]:not(.button-ghost):not(.link-button) {
  border-color: #efc769;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 40%),
    linear-gradient(135deg, var(--gold-200), #c98931);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 20px rgba(128, 76, 25, 0.25);
  color: #24170c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:hover,
button[type="submit"]:not(.button-ghost):not(.link-button):hover {
  border-color: var(--gold-100);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(135deg, #ffe6a1, #d69d42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 25px rgba(153, 91, 29, 0.32);
}

.button-ghost {
  border-color: rgba(231, 199, 127, 0.26);
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper-muted);
}

.button-ghost:hover {
  border-color: rgba(231, 199, 127, 0.5);
  background: rgba(231, 199, 127, 0.08);
  color: var(--gold-100);
}

.button-small {
  min-height: 36px;
  padding: 0.48rem 0.72rem;
  font-size: 0.78rem;
}

.button[disabled],
button[disabled],
.button[aria-disabled="true"] {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: #2c3038;
  box-shadow: none;
  color: #74777e;
  cursor: not-allowed;
  opacity: 0.85;
}

button[type="submit"].button-primary[disabled] {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: #2c3038;
  box-shadow: none;
  color: #74777e;
  cursor: not-allowed;
  opacity: 0.85;
}

.notice {
  position: relative;
  margin-block: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(96, 152, 193, 0.44);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  background:
    linear-gradient(90deg, rgba(66, 115, 153, 0.18), transparent),
    rgba(19, 28, 38, 0.92);
  color: #dceaf4;
  box-shadow: var(--shadow-soft);
}

.notice::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--sky-300);
  content: "";
}

.notice.success,
.notice[data-kind="success"] {
  border-color: rgba(75, 175, 130, 0.48);
  background:
    linear-gradient(90deg, rgba(44, 127, 91, 0.18), transparent),
    rgba(17, 34, 29, 0.94);
  color: #d6f3e5;
}

.notice.success::before,
.notice[data-kind="success"]::before {
  background: var(--jade-300);
}

.notice.warning,
.notice[data-kind="warning"] {
  border-color: rgba(217, 170, 78, 0.5);
  background:
    linear-gradient(90deg, rgba(157, 99, 37, 0.22), transparent),
    rgba(36, 28, 18, 0.94);
  color: #f6e5bd;
}

.notice.error,
.notice[data-kind="error"] {
  border-color: rgba(190, 81, 75, 0.52);
  background:
    linear-gradient(90deg, rgba(146, 49, 47, 0.22), transparent),
    rgba(39, 20, 23, 0.94);
  color: #f5d9d5;
}

.hero {
  position: relative;
  isolation: isolate;
  margin-top: clamp(1rem, 2.4vw, 2.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 30%, rgba(177, 55, 47, 0.2), transparent 30rem),
    radial-gradient(circle at 68% 110%, rgba(193, 137, 48, 0.14), transparent 28rem),
    linear-gradient(120deg, rgba(21, 25, 34, 0.98), rgba(11, 13, 18, 0.96));
  box-shadow: var(--shadow-deep);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -22rem;
  right: -8rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(245, 212, 124, 0.11);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 4deg, rgba(245, 212, 124, 0.04) 0 1deg, transparent 1deg 12deg);
  content: "";
  mask-image: radial-gradient(circle, #000 0 48%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 5.5rem);
  align-items: center;
  min-height: clamp(250px, 28vw, 430px);
  padding: clamp(1.7rem, 4.2vw, 4.8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 66ch;
  margin-bottom: 1.4rem;
  color: var(--paper-muted);
  font-size: clamp(0.98rem, 0.7vw + 0.8rem, 1.22rem);
}

.hero-copy .button + .button {
  margin-left: 0.55rem;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-art::before {
  width: min(24vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 212, 124, 0.24);
  background:
    radial-gradient(circle, rgba(255, 216, 126, 0.12), transparent 42%),
    repeating-conic-gradient(from 0deg, transparent 0 14deg, rgba(245, 212, 124, 0.08) 14deg 15deg);
  box-shadow:
    inset 0 0 0 10px rgba(10, 12, 17, 0.34),
    0 0 60px rgba(174, 102, 30, 0.18);
}

.hero-art::after {
  width: min(14vw, 180px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 212, 124, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 45%),
    radial-gradient(circle at 40% 35%, #c44e45, #64282b 62%, #27141a);
  box-shadow:
    inset 0 0 0 7px rgba(20, 10, 12, 0.38),
    0 18px 42px rgba(0, 0, 0, 0.48);
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: min(18vw, 230px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.45));
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border-top: 1px solid var(--line);
  background: rgba(231, 199, 127, 0.13);
}

.trust-row > * {
  min-width: 0;
  padding: 0.9rem clamp(1rem, 2vw, 1.65rem);
  background: rgba(10, 12, 17, 0.9);
  color: var(--paper-dim);
  font-size: 0.78rem;
  text-align: center;
}

.trust-row strong {
  display: block;
  margin-bottom: 0.14rem;
  color: var(--paper-muted);
  font-size: 0.82rem;
}

.filterbar {
  position: sticky;
  z-index: 35;
  top: calc(var(--header-height) + 0.65rem);
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
  gap: 1rem;
  align-items: center;
  margin-block: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.7rem;
  background: rgba(13, 16, 22, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.search-box {
  position: relative;
  min-width: 0;
}

.search-box::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0.95rem;
  width: 0.75rem;
  height: 0.75rem;
  transform: translateY(-62%);
  border: 2px solid var(--paper-dim);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.search-box::after {
  position: absolute;
  z-index: 1;
  top: calc(50% + 0.33rem);
  left: 1.62rem;
  width: 0.42rem;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: left center;
  background: var(--paper-dim);
  content: "";
  pointer-events: none;
}

.search-box input {
  margin: 0;
  padding-left: 2.7rem;
  border-color: rgba(231, 199, 127, 0.18);
  background: rgba(5, 7, 10, 0.6);
}

.category-tabs {
  display: flex;
  gap: 0.35rem;
  min-width: 0;
  overflow-x: auto;
  padding: 0.1rem 0.1rem 0.25rem;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs a,
.category-tabs button {
  flex: 0 0 auto;
  min-height: 39px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.52rem 0.82rem;
  background: transparent;
  box-shadow: none;
  color: var(--paper-dim);
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
}

.category-tabs a:hover,
.category-tabs button:hover,
.category-tabs .active {
  transform: none;
  border-color: rgba(231, 199, 127, 0.32);
  background: rgba(231, 199, 127, 0.09);
  color: var(--gold-100);
}

.category-section {
  margin-top: clamp(2rem, 4vw, 4rem);
  scroll-margin-top: calc(var(--header-height) + 6rem);
}

.section-head {
  display: flex;
  gap: 1.2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.section-head p {
  max-width: 60ch;
  color: var(--paper-dim);
  font-size: 0.86rem;
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 245px), 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
}

.product-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(231, 199, 127, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.025), transparent 32%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 240, 187, 0.075) 46%, transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-65%);
  transition:
    transform 600ms var(--ease),
    opacity 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 212, 124, 0.42);
  box-shadow: var(--shadow-gold);
}

.product-card:hover::after {
  opacity: 1;
  transform: translateX(65%);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(150px, 14vw, 225px);
  overflow: hidden;
  border-bottom: 1px solid rgba(231, 199, 127, 0.14);
  background:
    radial-gradient(circle at 50% 44%, rgba(218, 171, 76, 0.15), transparent 30%),
    repeating-conic-gradient(from 5deg at 50% 50%, rgba(245, 212, 124, 0.025) 0 1deg, transparent 1deg 20deg),
    linear-gradient(160deg, #25242a, #121720 72%);
}

.product-media::before {
  position: absolute;
  width: min(68%, 150px);
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 1px solid rgba(245, 212, 124, 0.15);
  content: "";
  box-shadow:
    0 0 0 8px rgba(245, 212, 124, 0.015),
    0 0 0 9px rgba(245, 212, 124, 0.08);
}

.product-image {
  position: relative;
  z-index: 2;
  width: min(50%, 112px);
  max-height: 124px;
  object-fit: contain;
  image-rendering: auto;
  filter:
    drop-shadow(0 16px 14px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 14px rgba(248, 205, 102, 0.12));
  transition:
    transform 240ms var(--ease),
    filter 240ms ease;
}

.product-card:hover .product-image {
  transform: translateY(-3px) scale(1.055);
  filter:
    drop-shadow(0 18px 15px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 18px rgba(248, 205, 102, 0.22));
}

.product-badge {
  position: absolute;
  z-index: 4;
  top: 0.72rem;
  right: 0.72rem;
  max-width: calc(100% - 1.44rem);
  overflow: hidden;
  border: 1px solid rgba(255, 235, 182, 0.52);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    #9c6530;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.32);
  color: #fff3ce;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-body {
  position: relative;
  z-index: 4;
  display: flex;
  flex: 1;
  padding: 1rem;
  flex-direction: column;
}

.product-meta {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
  min-height: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--paper-dim);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-title {
  margin-bottom: 0.55rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 0.65vw + 0.95rem, 1.36rem);
  line-height: 1.18;
}

.product-description {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.85rem;
  color: var(--paper-muted);
  font-size: 0.84rem;
  line-height: 1.46;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.farm-source {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: 0.9rem;
  border-left: 2px solid var(--jade-400);
  padding: 0.45rem 0.55rem;
  background: rgba(39, 114, 91, 0.08);
  color: var(--jade-200);
  font-size: 0.72rem;
  line-height: 1.35;
}

.price-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
  padding-top: 0.82rem;
  border-top: 1px solid rgba(231, 199, 127, 0.13);
}

.price {
  display: flex;
  gap: 0.32rem;
  align-items: baseline;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.72rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.price small {
  color: var(--gold-300);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.purchase-form {
  display: grid;
  grid-template-columns: minmax(68px, 0.38fr) minmax(112px, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.purchase-form .button,
.purchase-form button {
  min-width: 0;
}

.quantity {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: center;
  min-height: calc(100vh - clamp(3rem, 9vh, 8rem));
  padding-block: clamp(1.5rem, 5vh, 4rem);
}

.login-shell::before {
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 16%;
  width: min(55vw, 850px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 212, 124, 0.07);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -4deg, rgba(245, 212, 124, 0.03) 0 1deg, transparent 1deg 15deg);
  content: "";
  mask-image: radial-gradient(circle, #000 0 36%, transparent 68%);
}

.login-panel,
.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 35%),
    var(--surface);
  box-shadow: var(--shadow-deep);
}

.login-panel {
  width: 100%;
  max-width: 510px;
  justify-self: end;
}

.login-panel::before,
.panel::before {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(231, 199, 127, 0.06);
  border-radius: calc(var(--radius-lg) - 5px);
  content: "";
  pointer-events: none;
}

.login-panel form {
  position: relative;
  z-index: 1;
}

.login-panel label {
  margin-top: 1rem;
}

.login-panel .button,
.login-panel button[type="submit"] {
  width: 100%;
  margin-top: 0.6rem;
}

.panel + .panel {
  margin-top: 1rem;
}

.table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(231, 199, 127, 0.13);
  border-radius: var(--radius-md);
  background: rgba(7, 9, 13, 0.36);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

th,
td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(231, 199, 127, 0.1);
  text-align: left;
  vertical-align: middle;
}

th {
  position: sticky;
  z-index: 2;
  top: 0;
  background: #181b23;
  color: var(--paper-dim);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr {
  transition: background 150ms ease;
}

tbody tr:hover {
  background: rgba(231, 199, 127, 0.045);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  border: 1px solid rgba(231, 199, 127, 0.26);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(217, 170, 78, 0.08);
  color: var(--gold-200);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill.success,
.status-pill.paid,
.status-pill.credited,
.status-pill.delivered,
.status-pill[data-status="success"],
.status-pill[data-status="paid"],
.status-pill[data-status="credited"],
.status-pill[data-status="delivered"] {
  border-color: rgba(75, 175, 130, 0.38);
  background: rgba(75, 175, 130, 0.1);
  color: #aee4c9;
}

.status-pill.failed,
.status-pill.cancelled,
.status-pill[data-status="failed"],
.status-pill[data-status="cancelled"] {
  border-color: rgba(190, 81, 75, 0.4);
  background: rgba(190, 81, 75, 0.1);
  color: #efaaa2;
}

.status-pill.pending,
.status-pill.created,
.status-pill[data-status="pending"],
.status-pill[data-status="created"] {
  border-color: rgba(96, 152, 193, 0.4);
  background: rgba(96, 152, 193, 0.1);
  color: #a9cde7;
}

.topup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
  margin-block: 1.25rem 2rem;
}

.topup-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(231, 199, 127, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(214, 157, 62, 0.18), transparent 9rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.025), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
  flex-direction: column;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.topup-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 212, 124, 0.48);
  box-shadow: var(--shadow-gold);
}

.topup-card.recommended {
  border-color: rgba(245, 212, 124, 0.5);
  background:
    radial-gradient(circle at 50% 24%, rgba(214, 157, 62, 0.25), transparent 10rem),
    linear-gradient(155deg, rgba(245, 212, 124, 0.07), transparent 34%),
    var(--surface);
}

.topup-card h3 {
  margin-bottom: 0.2rem;
}

.topup-card h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.1rem, 0.7vw + 0.95rem, 1.5rem);
}

.topup-card > p {
  color: var(--paper-dim);
  font-size: 0.82rem;
}

.topup-card .price {
  justify-content: center;
  margin-block: auto 1rem;
}

.topup-price {
  display: grid;
  gap: 0.1rem;
  justify-items: center;
  margin-block: auto 1rem;
}

.topup-price strong {
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1vw + 1rem, 2rem);
}

.topup-price span {
  color: var(--paper-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topup-card .button,
.topup-card button {
  width: 100%;
}

.coin-stack {
  position: relative;
  display: grid;
  place-items: center;
  width: 118px;
  height: 100px;
  margin: 0.2rem auto 0.9rem;
}

.coin-stack::before,
.coin-stack::after {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px solid #f7d47b;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #fff3bd 0 4%, transparent 5%),
    radial-gradient(circle, #eac66d 0 36%, #b47b2e 38% 53%, #6f411a 55% 100%);
  box-shadow:
    inset 0 0 0 4px rgba(255, 239, 178, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.44);
  color: #573214;
  content: "DR";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 242, 188, 0.4);
}

.coin-stack::before {
  transform: translate(-18px, 12px) rotate(-10deg);
}

.coin-stack::after {
  transform: translate(18px, -4px) rotate(8deg);
}

.coin-stack img {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.5));
}

.page-heading {
  margin-block: clamp(1.4rem, 3vw, 2.6rem) 1.25rem;
}

.page-heading > p,
.page-heading > div > p {
  max-width: 68ch;
  color: var(--paper-muted);
}

.dr-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.dr-heading > .coin-stack {
  flex: 0 0 118px;
  margin: 0;
}

.checkout-panel {
  max-width: 720px;
  margin: clamp(2rem, 8vh, 6rem) auto;
  text-align: center;
}

.checkout-panel > .coin-stack {
  margin-inline: auto;
}

.checkout-amount {
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  font-weight: 800;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.payment-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  margin-block: 1rem;
  border: 1px solid rgba(75, 175, 130, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  background: rgba(39, 114, 91, 0.075);
  color: var(--paper-muted);
  font-size: 0.8rem;
}

.payment-note::before {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(142, 211, 178, 0.36);
  border-radius: 50%;
  color: var(--jade-200);
  content: "✓";
  font-weight: 900;
}

.payment-note strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--jade-200);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: clamp(3rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line);
  padding-block: 1.25rem;
  color: var(--paper-dim);
  font-size: 0.72rem;
}

.footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer a {
  color: var(--paper-muted);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 230px;
  border: 1px dashed rgba(231, 199, 127, 0.22);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.015);
  color: var(--paper-dim);
  text-align: center;
}

.empty-state::before {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(231, 199, 127, 0.22);
  border-radius: 50%;
  background: rgba(231, 199, 127, 0.05);
  color: var(--gold-300);
  content: "◇";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.empty-state h2,
.empty-state h3 {
  margin-bottom: 0.35rem;
}

.empty-state p {
  max-width: 48ch;
  margin-bottom: 0;
}

.error-panel {
  max-width: 720px;
  margin: clamp(3rem, 12vh, 9rem) auto;
  border-color: rgba(190, 81, 75, 0.38);
  background:
    linear-gradient(135deg, rgba(190, 81, 75, 0.09), transparent 46%),
    var(--surface);
}

.error-panel::after {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border: 1px solid rgba(230, 138, 128, 0.4);
  border-radius: 50%;
  background: rgba(190, 81, 75, 0.1);
  color: var(--ruby-200);
  content: "!";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 900;
}

/* Compatibility aliases for the v1 templates while the service moves to the
   richer component names above. */
.shop-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.shop-head h1 {
  margin-bottom: 0;
}

.shop-head + nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-block: 0.8rem;
}

.inline {
  display: inline-flex;
  margin: 0;
}

.link-button {
  min-height: 36px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--gold-200);
  padding: 0.45rem 0.65rem;
}

.link-button:hover {
  transform: none;
  border-color: rgba(231, 199, 127, 0.2);
  background: rgba(231, 199, 127, 0.07);
  color: var(--gold-100);
}

.permanent {
  margin-block: 1rem;
  border: 1px solid rgba(75, 175, 130, 0.3);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  background: rgba(39, 114, 91, 0.08);
  color: var(--jade-200);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 245px), 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
}

.card {
  position: relative;
  display: flex;
  min-height: 300px;
  border: 1px solid rgba(231, 199, 127, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
}

.card p {
  color: var(--paper-muted);
}

.card form {
  display: grid;
  grid-template-columns: minmax(68px, 0.38fr) minmax(112px, 1fr);
  gap: 0.5rem;
  margin-top: auto;
}

.card select {
  margin: 0;
}

.badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid rgba(255, 235, 182, 0.52);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: #9c6530;
  color: #fff3ce;
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
}

.farm {
  margin-block: 0.5rem;
  color: var(--jade-200);
  font-size: 0.75rem;
}

.category {
  margin-top: 2.4rem;
}

.delivery {
  margin-top: 2rem;
}

.muted {
  color: var(--paper-dim);
  font-size: 0.8rem;
}

.status {
  color: var(--gold-200);
  font-weight: 800;
}

.error {
  max-width: 720px;
  margin: clamp(3rem, 12vh, 9rem) auto;
  border-color: rgba(190, 81, 75, 0.38);
}

.vnum {
  display: none !important;
}

@media (min-width: 1800px) {
  :root {
    --shell: 1780px;
  }

  body {
    font-size: 16px;
  }

  .product-grid,
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .product-media {
    min-height: 240px;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: auto;
  }

  .topbar {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

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

  .filterbar {
    top: 0.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  }

  .login-shell {
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  .shell,
  body > main {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .topbar {
    margin-inline: -0.35rem;
  }

  .brand-copy small {
    display: none;
  }

  .wallet {
    border-radius: var(--radius-md);
  }

  .wallet > span,
  .wallet > div:first-child {
    font-size: 0;
  }

  .wallet strong {
    margin: 0;
    font-size: 1rem;
  }

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

  .hero-art {
    display: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .filterbar {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.35rem;
    text-align: left;
  }

  .login-shell {
    display: block;
    min-height: auto;
  }

  .login-shell > :first-child:not(.login-panel) {
    margin-bottom: 1.5rem;
  }

  .login-panel {
    max-width: none;
  }

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

  .footer nav {
    justify-content: flex-start;
  }

  .shop-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 14px;
  }

  .shell,
  body > main {
    width: min(calc(100% - 1rem), var(--shell));
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding-inline: 0.45rem;
  }

  .brand-mark {
    width: 40px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .wallet {
    padding: 0.45rem 0.55rem;
  }

  .wallet-actions .button-ghost {
    display: none;
  }

  .hero {
    border-radius: var(--radius-lg);
  }

  .hero-grid {
    min-height: auto;
    padding: 1.35rem;
  }

  .hero-copy .button {
    width: 100%;
  }

  .hero-copy .button + .button {
    margin-top: 0.55rem;
    margin-left: 0;
  }

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

  .product-card,
  .card {
    min-height: auto;
  }

  .product-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .product-media {
    min-height: 100%;
    border-right: 1px solid rgba(231, 199, 127, 0.14);
    border-bottom: 0;
  }

  .product-image {
    width: 72px;
  }

  .product-badge {
    top: 0.45rem;
    right: 0.45rem;
  }

  .product-description {
    -webkit-line-clamp: 2;
  }

  .purchase-form,
  .card form {
    grid-template-columns: 1fr;
  }

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

  .topup-card {
    min-height: 265px;
  }

  th,
  td {
    padding: 0.72rem;
  }
}

@media (max-height: 680px) and (min-width: 700px) {
  .topbar {
    min-height: 64px;
  }

  .brand-mark {
    width: 38px;
    height: 42px;
  }

  .hero-grid {
    min-height: 220px;
    padding-block: 1.5rem;
  }

  .filterbar {
    margin-block: 1rem;
  }

  .product-media {
    min-height: 140px;
  }
}

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

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

  .product-card:hover,
  .topup-card:hover,
  .button:hover,
  button:hover,
  .product-card:hover .product-image {
    transform: none;
  }
}

@media (forced-colors: active) {
  .topbar,
  .hero,
  .panel,
  .login-panel,
  .product-card,
  .topup-card,
  .filterbar,
  .notice {
    border: 1px solid CanvasText;
  }

  .button,
  button,
  .nav-link,
  .category-tabs a {
    forced-color-adjust: auto;
  }

  .vnum {
    display: none !important;
  }
}
