@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

:root {
  --black: #080806;
  --soft-black: #10100d;
  --panel: #15140f;
  --olive: #263523;
  --olive-light: #536244;
  --gold: #d1ac70;
  --gold-dark: #9d7440;
  --cream: #f8f0de;
  --warm: #d7c19b;
  --muted: #9f9787;
  --line: rgba(209, 172, 112, 0.26);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 126px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 72% 8%, rgba(83, 98, 68, 0.24), transparent 28rem),
    var(--black);
  background-size: 96px 96px, auto, auto;
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body,
.product-card,
.summary-panel,
.basket-panel,
.contact-card,
.enquiry-form,
.photo-placeholder {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(8, 8, 6, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(209, 172, 112, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 24%, rgba(209, 172, 112, 0.22), transparent 46%),
    #0d0d0a;
  box-shadow: inset 0 0 0 4px rgba(8, 8, 6, 0.8);
}

.brand-mark img {
  width: 34px;
  height: 42px;
  object-fit: contain;
  opacity: 0.96;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy span {
  font-family: "Lobster", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(245, 239, 225, 0.78);
  font-size: 0.92rem;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a {
  padding-block: 6px;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.header-actions .nav-cta {
  min-height: 44px;
  padding-inline: 16px;
  white-space: nowrap;
}

.cart-count {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  margin-left: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.76rem;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #efd398, var(--gold) 48%, #a77d45);
  color: var(--black);
}

.button.secondary {
  background: rgba(245, 239, 225, 0.04);
  color: var(--cream);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 92px clamp(18px, 4vw, 52px) 56px;
}

.premium-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 8, 6, 0.94), rgba(8, 8, 6, 0.2)),
    radial-gradient(circle at 78% 42%, rgba(209, 172, 112, 0.18), transparent 26rem),
    radial-gradient(circle at 72% 70%, rgba(83, 98, 68, 0.3), transparent 30rem),
    #080806;
  background-size: 110px 110px, auto, auto, auto, auto;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 34px;
  pointer-events: none;
  border: 1px solid rgba(209, 172, 112, 0.22);
}

.premium-hero::after {
  content: "FUEL PRECISION";
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 26px;
  color: rgba(248, 240, 222, 0.08);
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: 0;
}

.hero-title-lockup {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-width: 0;
  margin-bottom: 14px;
}

.hero-title-logo {
  display: grid;
  width: clamp(74px, 9vw, 126px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(209, 172, 112, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 24%, rgba(209, 172, 112, 0.25), transparent 52%),
    linear-gradient(145deg, #15140f, #050504);
  box-shadow:
    inset 0 0 0 7px rgba(8, 8, 6, 0.72),
    0 24px 58px rgba(0, 0, 0, 0.38);
}

.hero-title-logo img {
  width: 64%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  min-width: 0;
  margin: 0;
  font-family: "Lobster", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.98;
}

.hero h2 {
  max-width: 740px;
  margin-bottom: 20px;
  color: var(--warm);
  font-size: clamp(1.5rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.hero p {
  max-width: 660px;
  color: rgba(245, 239, 225, 0.84);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  border: 1px solid rgba(248, 240, 222, 0.12);
  border-radius: 999px;
  background: rgba(248, 240, 222, 0.035);
  color: rgba(248, 240, 222, 0.72);
  padding: 9px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 560px;
  border: 1px solid rgba(209, 172, 112, 0.22);
  background:
    linear-gradient(145deg, rgba(248, 240, 222, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(21, 20, 15, 0.72), rgba(8, 8, 6, 0.9));
  box-shadow: var(--shadow);
}

.hero-photo-card {
  align-content: end;
  justify-items: start;
  min-height: 590px;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: -2;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.08), rgba(8, 8, 6, 0.74)),
    linear-gradient(90deg, rgba(8, 8, 6, 0.48), transparent 58%);
}

.hero-photo-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 390px;
  padding: 34px;
}

.hero-photo-caption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(209, 172, 112, 0.22);
}

.hero-seal {
  position: relative;
  z-index: 1;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(209, 172, 112, 0.5);
  border-radius: 999px;
  background: #0d0d0a;
  box-shadow: inset 0 0 0 8px rgba(209, 172, 112, 0.05);
}

.hero-seal img {
  width: 82px;
  height: 108px;
  object-fit: contain;
}

.hero-bags {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 270px;
  width: 100%;
}

.hero-showcase p {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-style: italic;
}

.display-bag {
  position: relative;
  display: grid;
  width: 190px;
  aspect-ratio: 0.66;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 26px 18px;
  border: 1px solid rgba(209, 172, 112, 0.35);
  border-radius: 6px 6px 18px 18px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.06), transparent 22% 62%, rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, #050504, #202018 46%, #090907);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.52);
  text-align: center;
}

.display-bag::before {
  content: "CP";
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 4px;
  border: 1px solid rgba(209, 172, 112, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.display-bag span {
  color: rgba(248, 240, 222, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display-bag strong {
  color: var(--gold);
  font-family: "Lobster", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.05;
}

.display-bag small {
  color: rgba(248, 240, 222, 0.68);
  font-weight: 800;
}

.display-bag-small {
  width: 145px;
  margin-right: -18px;
  transform: translateY(24px) rotate(-3deg);
  opacity: 0.88;
}

.section {
  padding: 84px clamp(18px, 4vw, 52px);
}

.intro-band,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 90px 90px;
  color: var(--black);
}

.intro-band p:last-child,
.about-section p:last-child,
.split-copy p,
.event-copy p,
.page-hero p,
.contact-card dd,
.site-footer p {
  color: rgba(245, 239, 225, 0.72);
  line-height: 1.7;
}

.intro-band p:last-child,
.about-section p:last-child {
  color: rgba(11, 11, 9, 0.72);
  font-size: 1.08rem;
}

.intro-band h2,
.about-section h2,
.section-heading h2,
.split-copy h2,
.event-copy h2,
.page-hero h1,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.section-heading a,
.text-button,
.remove-button {
  border: 0;
  background: none;
  color: var(--gold);
  cursor: pointer;
  font-weight: 800;
}

.image-placeholder-section {
  padding-top: 64px;
  padding-bottom: 84px;
  background:
    linear-gradient(180deg, rgba(248, 240, 222, 0.035), transparent),
    var(--black);
}

.placeholder-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 18px;
}

.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 240px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(209, 172, 112, 0.24);
  border-radius: 4px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 8, 6, 0.9), rgba(8, 8, 6, 0.22)),
    radial-gradient(circle at 72% 30%, rgba(209, 172, 112, 0.16), transparent 14rem),
    linear-gradient(135deg, #171611, #0a0a08);
  background-size: 42px 42px, auto, auto, auto;
  box-shadow: var(--shadow);
}

.photo-placeholder.has-image {
  background: #0b0b08;
  isolation: isolate;
}

.photo-placeholder.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: scale(1.01);
}

.photo-placeholder.has-image::before {
  inset: 0;
  z-index: -1;
  border: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(8, 8, 6, 0.84)),
    linear-gradient(90deg, rgba(8, 8, 6, 0.45), transparent 60%);
}

.photo-placeholder.has-image::after {
  display: none;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(209, 172, 112, 0.18);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(209, 172, 112, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(209, 172, 112, 0.18), transparent),
    rgba(8, 8, 6, 0.5);
}

.photo-placeholder.tall {
  grid-row: span 2;
  min-height: 498px;
}

.photo-placeholder span,
.photo-placeholder strong {
  position: relative;
  z-index: 1;
}

.photo-placeholder span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  max-width: 360px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.06;
}

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

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-color: rgba(209, 172, 112, 0.22);
  border-radius: 4px;
  background: linear-gradient(180deg, #14130f, #0c0c09);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.shop-card {
  grid-template-columns: 0.8fr 1fr;
  min-height: 420px;
}

.product-image {
  min-height: 290px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(209, 172, 112, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(38, 53, 35, 0.78), rgba(8, 8, 6, 0.98) 62%);
}

.bag-art {
  position: relative;
  width: min(190px, 72%);
  aspect-ratio: 0.68;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 160, 99, 0.35);
  border-radius: 5px 5px 16px 16px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.07), transparent 22% 66%, rgba(255, 255, 255, 0.04)),
    linear-gradient(100deg, #050504, #1e1e18 48%, #050504);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.44);
  text-align: center;
}

.bag-shine {
  position: absolute;
  inset: 0 18% 0 auto;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: skewX(-12deg);
}

.bag-logo {
  width: 52px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.bag-art strong {
  color: var(--gold);
  font-family: "Lobster", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.22rem;
}

.bag-art small {
  color: rgba(245, 239, 225, 0.68);
  font-weight: 800;
}

.product-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.product-body h2,
.product-body h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1.45rem;
}

.product-body p {
  color: rgba(245, 239, 225, 0.7);
  line-height: 1.6;
}

.product-tag {
  margin: 0;
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-meta,
.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.option-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 12px;
}

.buy-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.buy-row .button {
  width: 100%;
}

.product-meta span {
  color: var(--cream);
  font-weight: 800;
}

.split-section,
.events-section,
.contact-section,
.basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-list article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-color: rgba(209, 172, 112, 0.2);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(248, 240, 222, 0.045), transparent 42%),
    #11110f;
}

.service-list span {
  color: var(--gold);
  font-weight: 800;
}

.service-list h3 {
  margin: 42px 0 12px;
  font-size: 1.28rem;
}

.service-list p {
  color: rgba(245, 239, 225, 0.68);
  line-height: 1.6;
}

.events-section {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.44), rgba(8, 8, 6, 0.06)),
    var(--olive);
}

.event-image {
  overflow: hidden;
  border: 1px solid rgba(209, 172, 112, 0.22);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.section-photo {
  width: 100%;
  min-height: 560px;
  height: 100%;
  object-fit: cover;
}

.event-placeholder {
  min-height: 560px;
  box-shadow: none;
}

.contact-section {
  align-items: start;
  background: #11110f;
}

.contact-card,
.enquiry-form,
.summary-panel,
.basket-panel {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(14, 14, 11, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.contact-card {
  padding: 32px;
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
}

.contact-card dt {
  color: var(--gold);
  font-weight: 800;
}

.contact-card dd {
  margin: 4px 0 0;
}

.contact-card a {
  color: var(--cream);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--gold);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(245, 239, 225, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 239, 225, 0.16);
  border-radius: 4px;
  background: rgba(245, 239, 225, 0.06);
  color: var(--cream);
  padding: 13px 14px;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(248, 240, 222, 0.06), rgba(248, 240, 222, 0.03));
  padding-right: 38px;
}

select option {
  background: #11110f;
  color: var(--cream);
}

textarea {
  resize: vertical;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: center;
  min-height: 410px;
  padding: 108px clamp(18px, 4vw, 52px) 58px;
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 82% 48%, rgba(209, 172, 112, 0.16), transparent 20rem),
    linear-gradient(135deg, #11110e, #080806);
  background-size: 96px 96px, auto, auto;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 0;
}

.page-hero-product {
  display: grid;
  justify-items: center;
}

.page-hero-product .display-bag {
  width: 170px;
}

.filter-pill {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 239, 225, 0.04);
  color: var(--cream);
  cursor: pointer;
  padding: 0 16px;
  font-weight: 800;
}

.filter-pill.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

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

.details-grid span {
  display: grid;
  gap: 6px;
  min-height: 86px;
  border: 1px solid rgba(245, 239, 225, 0.12);
  border-radius: 6px;
  padding: 12px;
  color: rgba(245, 239, 225, 0.58);
  font-size: 0.82rem;
}

.details-grid strong {
  color: var(--cream);
  font-size: 0.92rem;
}

.product-depth {
  display: grid;
  gap: 10px;
}

.product-depth span {
  display: grid;
  gap: 6px;
  border-left: 1px solid rgba(209, 172, 112, 0.4);
  padding-left: 12px;
  color: rgba(248, 240, 222, 0.58);
  font-size: 0.82rem;
}

.product-depth strong {
  color: rgba(248, 240, 222, 0.88);
  font-size: 0.9rem;
  line-height: 1.45;
}

.buy-row label {
  width: auto;
}

.basket-title {
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(38, 53, 35, 0.36), transparent 22rem),
    linear-gradient(135deg, #11110e, #080806);
  background-size: 96px 96px, auto, auto;
}

.basket-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 380px;
}

.basket-panel {
  min-height: 290px;
  padding: 18px;
}

.basket-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 120px auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 239, 225, 0.1);
}

.basket-item:last-child {
  border-bottom: 0;
}

.basket-image .bag-art {
  width: 90px;
}

.basket-image .bag-art strong {
  font-size: 0.8rem;
}

.basket-item h2 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.basket-item p {
  margin-bottom: 8px;
  color: rgba(245, 239, 225, 0.68);
  line-height: 1.5;
}

.basket-item .variant-line {
  color: var(--warm);
  font-size: 0.9rem;
  font-weight: 800;
}

.basket-item span {
  color: var(--gold);
  font-weight: 800;
}

.summary-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.summary-panel h2 {
  margin: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  padding-top: 16px;
}

.summary-panel p,
.empty-basket p {
  color: rgba(245, 239, 225, 0.68);
  line-height: 1.6;
}

.summary-panel a {
  color: var(--gold);
  font-weight: 800;
}

.full-width {
  width: 100%;
}

.empty-basket {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 44px;
}

.empty-basket h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.policy-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 360px;
}

.policy-section {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(209, 172, 112, 0.1), transparent 24rem),
    #080806;
}

.policy-card,
.policy-grid article,
.faq-section article {
  border: 1px solid rgba(209, 172, 112, 0.22);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(248, 240, 222, 0.045), transparent 42%),
    #11110f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.policy-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
}

.policy-card h2,
.policy-grid h2,
.faq-section h2 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

.policy-card h2 {
  max-width: 820px;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

.policy-card p,
.policy-grid p,
.faq-section p {
  max-width: 880px;
  margin: 0;
  color: rgba(245, 239, 225, 0.72);
  line-height: 1.7;
}

.policy-card a,
.policy-grid a,
.faq-section a {
  color: var(--gold);
  font-weight: 800;
}

.highlight-card {
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 82% 28%, rgba(209, 172, 112, 0.2), transparent 20rem),
    #11110f;
  background-size: 56px 56px, auto, auto;
}

.warning-card {
  border-color: rgba(215, 193, 155, 0.34);
  background:
    linear-gradient(145deg, rgba(215, 193, 155, 0.08), transparent 42%),
    #13120e;
}

.policy-grid,
.faq-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-grid article,
.faq-section article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 26px;
}

.policy-grid h2,
.faq-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.account-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 380px;
}

.account-section {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 78% 10%, rgba(209, 172, 112, 0.1), transparent 24rem),
    #080806;
}

.account-panel,
.account-list-card {
  border: 1px solid rgba(209, 172, 112, 0.22);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(248, 240, 222, 0.045), transparent 42%),
    #11110f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.account-panel {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.account-panel h2,
.account-list-card h2 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.account-panel p,
.account-list-card p {
  margin: 0;
  color: rgba(245, 239, 225, 0.72);
  line-height: 1.7;
}

.account-form {
  display: grid;
  max-width: 520px;
  gap: 14px;
}

.account-create-block {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  padding-top: 24px;
}

.account-code-form {
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  padding-top: 22px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.local-code-note {
  border: 1px solid rgba(209, 172, 112, 0.34);
  border-radius: 4px;
  padding: 12px;
  background: rgba(209, 172, 112, 0.12);
  color: var(--gold) !important;
  font-weight: 900;
}

.account-heading-row,
.account-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

.account-stats article {
  border: 1px solid rgba(245, 239, 225, 0.12);
  border-radius: 4px;
  padding: 18px;
  background: rgba(8, 8, 6, 0.46);
}

.account-stats span,
.account-list-item span {
  color: rgba(248, 240, 222, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.account-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.account-list-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.account-list-item {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  padding-top: 16px;
}

.account-list-item div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-list-item strong {
  color: var(--cream);
  font-size: 1.04rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: #070706;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(245, 239, 225, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-content: start;
    min-width: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding-top: 54px;
  }

  .premium-hero::before {
    inset: 18px;
  }

  .hero-showcase {
    min-height: 420px;
  }

  .hero-photo-card {
    min-height: 440px;
  }

  .intro-band,
  .about-section,
  .split-section,
  .events-section,
  .contact-section,
  .basket-layout,
  .account-stats,
  .account-grid,
  .policy-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .placeholder-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-placeholder.tall {
    grid-row: auto;
    min-height: 320px;
  }

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

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

  .summary-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 1.08rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

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

  .nav-links {
    gap: 16px;
    font-size: 0.86rem;
    flex-wrap: wrap;
    overflow: visible;
  }

  .header-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions .nav-cta {
    width: 100%;
    min-height: 42px;
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
    padding: 46px 18px 56px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-title-lockup {
    gap: 12px;
  }

  .hero-title-logo {
    width: 68px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-showcase {
    min-height: 360px;
  }

  .hero-photo-card {
    min-height: 390px;
  }

  .hero-photo-caption {
    padding: 24px;
  }

  .hero-seal {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
  }

  .hero-seal img {
    width: 60px;
    height: 78px;
  }

  .display-bag {
    width: 145px;
  }

  .display-bag-small {
    width: 112px;
  }

  .premium-hero::after {
    display: none;
  }

  .section {
    padding: 58px 18px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .product-grid,
  .shop-grid,
  .service-list,
  .enquiry-form,
  .details-grid,
  .option-row,
  .buy-row {
    grid-template-columns: 1fr;
  }

  .event-placeholder {
    min-height: 380px;
  }

  .section-photo {
    min-height: 380px;
  }

  .basket-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .basket-item label,
  .basket-item .remove-button {
    grid-column: 2;
    justify-self: start;
  }

  .basket-image .bag-art {
    width: 74px;
  }

  .basket-image .bag-logo {
    width: 30px;
    height: 40px;
  }

  .site-footer {
    display: grid;
  }

  .policy-grid article,
  .faq-section article {
    min-height: auto;
  }
}

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 54px);
  padding: 9px 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(209, 172, 112, 0.22);
  background: linear-gradient(90deg, #d9b474, #f2d79c 52%, #a87943);
  color: #080806;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  scrollbar-width: none;
}

.announcement-bar::-webkit-scrollbar,
.nav-links::-webkit-scrollbar {
  display: none;
}

.collection-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #0b0b08;
}

.collection-links a {
  display: grid;
  gap: 10px;
  min-height: 132px;
  align-content: end;
  border-right: 1px solid rgba(209, 172, 112, 0.18);
  padding: 22px clamp(18px, 3vw, 32px);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.collection-links a:hover {
  background: rgba(209, 172, 112, 0.12);
  color: var(--gold);
}

.collection-links span {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.product-showcase {
  background:
    radial-gradient(circle at 70% 20%, rgba(209, 172, 112, 0.09), transparent 28rem),
    #080806;
}

.editorial-heading {
  align-items: start;
}

.editorial-heading h2 {
  max-width: 740px;
}

.bag-brand {
  color: rgba(248, 240, 222, 0.64);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.taste-line {
  margin: 0;
  color: var(--gold) !important;
  font-size: 0.88rem;
  font-weight: 800;
}

.mini-button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.promo-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.promo-panel {
  min-height: 410px;
  display: grid;
  align-content: end;
  justify-items: start;
  border: 1px solid rgba(209, 172, 112, 0.24);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.promo-panel h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.promo-panel p {
  max-width: 560px;
  color: rgba(248, 240, 222, 0.74);
  line-height: 1.7;
}

.subscription-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 18px;
}

.subscription-products-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.subscription-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 250px;
  border: 1px solid rgba(209, 172, 112, 0.24);
  border-radius: 4px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(248, 240, 222, 0.045), transparent 42%),
    rgba(8, 8, 6, 0.62);
}

.subscription-card h3 {
  margin: 0 0 6px;
  color: var(--cream);
  font-family: "Lobster", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.subscription-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.18rem;
}

.subscription-card p {
  margin: 0;
  color: rgba(248, 240, 222, 0.7);
  line-height: 1.55;
}

.subscription-card .shipping-note {
  margin-top: 10px;
  color: var(--warm);
  font-size: 0.86rem;
  font-weight: 800;
}

.subscription-card-footer {
  display: grid;
  gap: 12px;
}

.subscription-card-footer span {
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 900;
}

.subscription-status {
  color: var(--warm);
}

.draft-badge {
  display: inline-flex;
  margin-left: 8px;
  border: 1px solid rgba(209, 172, 112, 0.42);
  border-radius: 999px;
  padding: 2px 7px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.62rem;
  vertical-align: 1px;
}

.dark-panel {
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(209, 172, 112, 0.18), transparent 18rem),
    #10100d;
  background-size: 58px 58px, auto, auto;
}

.olive-panel {
  background:
    linear-gradient(90deg, rgba(248, 240, 222, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(209, 172, 112, 0.18), transparent 18rem),
    var(--olive);
  background-size: 58px 58px, auto, auto;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #d1ac70;
  color: #080806;
}

.marquee-band div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-band span {
  padding: 18px 30px;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.trust-strip article {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 10px;
  background: #0d0d0a;
  padding: 28px;
}

.trust-strip span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.trust-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
}

.trust-strip p {
  max-width: 340px;
  color: rgba(248, 240, 222, 0.7);
  line-height: 1.6;
}

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

.shop-feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 30px clamp(18px, 4vw, 52px) 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px;
  background:
    radial-gradient(circle at 82% 10%, rgba(209, 172, 112, 0.16), transparent 20rem),
    rgba(21, 20, 15, 0.86);
}

.shop-feature-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
}

.finder-section {
  padding-top: 58px;
  padding-bottom: 16px;
}

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

.finder-grid article {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 12px;
  border: 1px solid rgba(209, 172, 112, 0.22);
  border-radius: 4px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(248, 240, 222, 0.045), transparent 42%),
    #11110f;
}

.finder-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.finder-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.finder-grid p {
  color: rgba(248, 240, 222, 0.7);
  line-height: 1.6;
}

.expanded-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(150px, 0.6fr)) minmax(260px, 1fr);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 56px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-brand strong {
  font-family: "Lobster", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.footer-brand .brand-mark {
  width: 76px;
  height: 76px;
}

.footer-brand .brand-mark img {
  width: 50px;
  height: 62px;
}

.footer-column,
.footer-signup {
  display: grid;
  gap: 12px;
}

.footer-column h3,
.footer-signup h3 {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(248, 240, 222, 0.74);
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-signup label {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .collection-links,
  .promo-split,
  .subscription-products-wide,
  .trust-strip,
  .finder-grid,
  .account-grid,
  .policy-grid,
  .faq-section,
  .expanded-footer {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .announcement-bar {
    justify-content: start;
    overflow-x: auto;
  }

  .collection-links,
  .promo-split,
  .subscription-products,
  .subscription-products-wide,
  .trust-strip,
  .finder-grid,
  .account-stats,
  .account-grid,
  .policy-grid,
  .faq-section,
  .expanded-footer {
    grid-template-columns: 1fr;
  }

  .collection-links a {
    min-height: 104px;
  }

  .shop-feature-band {
    display: grid;
  }

  .details-grid,
  .option-row,
  .buy-row {
    grid-template-columns: 1fr;
  }
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.admin-page {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(209, 172, 112, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(209, 172, 112, 0.14), transparent 26rem),
    #080806;
  background-size: 92px 92px, auto, auto;
}

.admin-login-panel,
.admin-topbar,
.admin-section,
.admin-chart-card,
.admin-status article {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(14, 14, 11, 0.9);
  box-shadow: var(--shadow);
}

.admin-login-panel {
  width: min(520px, 100%);
  margin: 8vh auto 0;
  padding: clamp(24px, 4vw, 42px);
}

.admin-login-panel h1,
.admin-topbar h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.96;
}

.admin-login-panel p,
.admin-topbar p,
.admin-empty {
  color: rgba(248, 240, 222, 0.72);
  line-height: 1.7;
}

.admin-error {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  color: var(--gold) !important;
  font-weight: 800;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-status {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.admin-status article {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.admin-status span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-status strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
}

.admin-status small {
  color: rgba(248, 240, 222, 0.62);
  font-weight: 800;
  line-height: 1.4;
}

.admin-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-chart-card {
  display: grid;
  gap: 20px;
  min-height: 320px;
  padding: clamp(18px, 3vw, 30px);
}

.admin-chart-wide {
  grid-column: 1 / -1;
}

.admin-chart-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.admin-chart-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.admin-chart-heading strong {
  color: var(--gold);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  white-space: nowrap;
}

.admin-chart-bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 250px;
}

.admin-chart-bar-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
}

.admin-chart-bar-item strong {
  color: var(--cream);
  font-size: 0.82rem;
  white-space: nowrap;
}

.admin-chart-bar-item > span {
  color: rgba(248, 240, 222, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-bar-track {
  display: flex;
  flex-direction: column-reverse;
  width: min(42px, 100%);
  height: 170px;
  overflow: hidden;
  border: 1px solid rgba(248, 240, 222, 0.12);
  border-radius: 999px 999px 4px 4px;
  background: rgba(248, 240, 222, 0.04);
}

.admin-bar-segment {
  display: block;
  min-height: 0;
}

.admin-bar-orders,
.key-orders {
  background: linear-gradient(180deg, #f1d79d, var(--gold));
}

.admin-bar-subscriptions,
.key-subscriptions {
  background: linear-gradient(180deg, #7d8c64, var(--olive-light));
}

.admin-bar-count {
  background: linear-gradient(180deg, #f8f0de, #b9955f);
}

.admin-chart-key {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(248, 240, 222, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-chart-key span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-chart-key i,
.admin-legend i {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.admin-pie-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.admin-pie {
  width: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(209, 172, 112, 0.32);
  border-radius: 999px;
  box-shadow: inset 0 0 0 18px rgba(8, 8, 6, 0.82);
}

.admin-legend,
.admin-horizontal-chart {
  display: grid;
  gap: 12px;
}

.admin-legend span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(248, 240, 222, 0.72);
  font-weight: 800;
  line-height: 1.35;
}

.admin-legend i {
  flex: 0 0 auto;
}

.admin-legend strong {
  margin-left: auto;
  color: var(--gold);
}

.admin-horizontal-row {
  display: grid;
  gap: 8px;
}

.admin-horizontal-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 240, 222, 0.72);
  font-weight: 800;
}

.admin-horizontal-row strong {
  color: var(--gold);
  white-space: nowrap;
}

.admin-horizontal-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(248, 240, 222, 0.08);
}

.admin-horizontal-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--olive-light));
}

.admin-chart-empty {
  margin: 0;
  color: rgba(248, 240, 222, 0.68);
  line-height: 1.6;
}

.fulfilment-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.fulfilment-column {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(248, 240, 222, 0.035), transparent),
    rgba(14, 14, 11, 0.86);
  box-shadow: var(--shadow);
}

.fulfilment-column header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(248, 240, 222, 0.1);
  padding: 18px;
}

.fulfilment-column header span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fulfilment-column header strong {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
}

.fulfilment-cards {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.fulfilment-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(209, 172, 112, 0.2);
  border-radius: 4px;
  padding: 16px;
  background: rgba(8, 8, 6, 0.64);
}

.fulfilment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fulfilment-type {
  border: 1px solid rgba(209, 172, 112, 0.3);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fulfilment-type.repeat {
  border-color: rgba(83, 98, 68, 0.8);
  color: #cdd7b2;
}

.fulfilment-card-top strong {
  color: var(--cream);
  white-space: nowrap;
}

.fulfilment-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: 1.05rem;
}

.fulfilment-card p {
  margin: 0;
  color: rgba(248, 240, 222, 0.68);
  line-height: 1.45;
}

.fulfilment-date {
  color: rgba(248, 240, 222, 0.5) !important;
  font-size: 0.82rem;
  font-weight: 800;
}

.fulfilment-items {
  display: grid;
  gap: 8px;
  border-block: 1px solid rgba(248, 240, 222, 0.1);
  padding-block: 12px;
}

.fulfilment-items p {
  display: grid;
  gap: 3px;
}

.fulfilment-items strong {
  color: var(--cream);
}

.fulfilment-items span {
  color: var(--warm);
  font-size: 0.84rem;
  font-weight: 800;
}

.completed-pill {
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(83, 98, 68, 0.9);
  border-radius: 999px;
  padding: 10px 12px;
  color: #dbe6c5;
  font-weight: 900;
}

.admin-section {
  padding: clamp(18px, 3vw, 30px);
}

.admin-section h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(248, 240, 222, 0.12);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table td {
  color: rgba(248, 240, 222, 0.82);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .admin-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-charts-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .admin-topbar {
    display: grid;
  }

  .admin-status {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions .button,
  .admin-actions form {
    width: 100%;
  }

  .admin-chart-heading,
  .admin-pie-layout {
    display: grid;
  }

  .fulfilment-board {
    grid-template-columns: 1fr;
  }

  .admin-chart-bars {
    gap: 8px;
    min-height: 220px;
  }

  .admin-bar-track {
    height: 140px;
  }
}

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

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