:root {
  --ink: #070908;
  --text: #18211d;
  --muted: #66736d;
  --line: #e4e9e6;
  --paper: #f5f7f5;
  --white: #ffffff;
  --green: #00b86b;
  --green-dark: #057847;
  --orange: #ff7a1a;
  --orange-dark: #d85b00;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(7, 9, 8, 0.11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fbfcfb;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font: inherit; }
button { cursor: pointer; }
main { overflow: hidden; }

.topline {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 18px;
  color: #d9eee3;
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.topline a { color: var(--orange); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 210px minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 188px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.header-search,
.hero-search {
  display: flex;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.header-search input,
.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
}

.header-search button,
.hero-search button,
.form-panel button,
.newsletter button {
  border: 0;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
  padding: 0 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.cart-link strong {
  min-width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 99px;
  color: var(--ink);
  background: var(--green);
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.flash {
  position: fixed;
  right: 22px;
  top: 96px;
  z-index: 80;
  max-width: 430px;
  padding: 14px 18px;
  border: 1px solid #b7ebcd;
  border-radius: 8px;
  background: #eafff3;
  color: #073a24;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.flash.error {
  border-color: #ffd0c5;
  background: #fff1ed;
  color: var(--danger);
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 76px) 44px;
  background:
    linear-gradient(110deg, rgba(0, 184, 107, 0.13), transparent 44%),
    linear-gradient(180deg, #fff 0%, #f5f8f6 100%);
}

.eyebrow,
.section-head span,
.page-hero span,
.dashboard-head span,
.content-page span,
.auth-copy span,
.testimonials span,
.promo-banner span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #dcffec;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.dashboard-head h1,
.content-page h1,
.auth-copy h1 {
  max-width: 920px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 950;
}

.hero p,
.dashboard-head p,
.content-page p,
.auth-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-search {
  max-width: 720px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.hero-actions,
.section-head.split,
.page-hero.compact,
.dashboard-head,
.price-row,
.detail-price,
.buy-box,
.result-head,
.inline-form {
  display: flex;
  align-items: center;
}

.hero-actions { gap: 12px; flex-wrap: wrap; margin-top: 18px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 950;
}

.button.primary { background: var(--green); color: var(--ink); }
.button.ghost { border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.button.light { background: var(--white); color: var(--ink); }
.button.full, .full { width: 100%; }

.hero-market {
  display: grid;
  gap: 16px;
}

.promo-strip,
.hero-product,
.trust-mini,
.product-card,
.filters-panel,
.summary-panel,
.form-panel,
.panel,
.gallery-main,
.product-tabs article,
.review-card,
.cart-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
}

.promo-strip span { color: var(--orange); font-weight: 950; }
.promo-strip strong { font-size: 1.7rem; }
.promo-strip a { padding: 9px 12px; border-radius: 8px; background: var(--orange); color: var(--ink); font-weight: 950; }

.hero-product {
  display: grid;
  grid-template-columns: 48% 1fr;
  align-items: center;
  min-height: 360px;
  padding: 24px;
}

.hero-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-product h2 { margin: 8px 0; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1; }
.hero-product strong { color: var(--green-dark); font-size: 2rem; font-weight: 950; }

.trust-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.trust-mini div { padding: 16px; border-right: 1px solid var(--line); }
.trust-mini strong { display: block; font-size: 1.5rem; color: var(--ink); }
.trust-mini span { color: var(--muted); font-size: 0.9rem; }

.promo-banner,
.section-head,
.category-grid,
.product-grid,
.confidence-band,
.testimonials,
.page-hero,
.shop-layout,
.product-detail,
.product-tabs,
.reviews-section,
.cart-layout,
.checkout-layout,
.auth-page,
.dashboard-head,
.account-grid,
.track-layout,
.content-page,
.admin-stats,
.admin-tabs,
.admin-layout {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 26px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #123326);
}

.promo-banner h2,
.section-head h2,
.testimonials h2 {
  max-width: 780px;
  margin: 10px 0 0;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 950;
}

.section-head {
  margin-top: 70px;
  margin-bottom: 18px;
}

.section-head.split {
  justify-content: space-between;
  gap: 18px;
}

.section-head.split a {
  color: var(--green-dark);
  font-weight: 950;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.category-grid a {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid #cdebdc;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, #ecfff5);
}

.category-grid span {
  color: var(--orange-dark);
  font-weight: 950;
  font-size: 0.82rem;
}

.category-grid strong { color: var(--ink); font-size: 1.1rem; }

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

.product-grid.compact { margin-bottom: 48px; }

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #f4f7f5;
}

.product-media img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 950;
  font-size: 0.76rem;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.category-name {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.82rem;
}

.product-info h3 {
  min-height: 48px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.25;
}

.product-info p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rating {
  display: flex;
  gap: 6px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.86rem;
}

.rating strong { color: var(--orange-dark); }

.price-row {
  gap: 10px;
  flex-wrap: wrap;
}

.price-row strong,
.detail-price strong {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 950;
}

del { color: #8e9893; }

.confidence-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.confidence-band div {
  padding: 22px;
  background: var(--ink);
  color: var(--white);
}

.confidence-band strong { display: block; color: var(--green); font-size: 1.15rem; }
.confidence-band span { color: #c8d8d0; }

.testimonials {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-top: 70px;
  margin-bottom: 80px;
}

.testimonials article {
  padding: 22px;
  border-radius: 8px;
  background: var(--paper);
}

.page-hero {
  padding: 54px 0 26px;
}

.page-hero h1,
.dashboard-head h1,
.content-page h1,
.auth-copy h1 {
  font-size: clamp(2rem, 5vw, 4.25rem);
}

.page-hero.compact,
.dashboard-head {
  justify-content: space-between;
  gap: 20px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 76px;
}

.filters-panel,
.summary-panel,
.form-panel,
.panel {
  padding: 20px;
}

.filters-panel {
  position: sticky;
  top: 104px;
}

.filters-panel form,
.form-panel,
.newsletter {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #26342e;
  font-weight: 850;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  outline: 0;
  background: var(--white);
}

textarea { min-height: 112px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.result-head span { color: var(--muted); }

.category-grid.in-shop {
  width: 100%;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 28px;
  align-items: start;
  padding-top: 46px;
}

.gallery-main {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f6f8f6;
}

.gallery-main img {
  width: min(520px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumbs button {
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 8px;
}

.product-summary {
  display: grid;
  gap: 16px;
}

.product-summary h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.detail-price { gap: 12px; }
.detail-price strong { font-size: 2rem; }

.stock-line {
  padding: 12px;
  border-radius: 8px;
  font-weight: 900;
}
.stock-line.ok { background: #e8fff3; color: var(--green-dark); }
.stock-line.warn { background: #fff1ed; color: var(--danger); }

.buy-box {
  gap: 12px;
  align-items: end;
}
.buy-box label { width: 130px; }
.buy-box button { flex: 1; }

.payment-note {
  padding: 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}
.payment-note strong { display: block; color: var(--green); }
.payment-note span { color: #d6e4dc; }

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.product-tabs article { padding: 20px; }
.product-tabs p, .review-card p, .summary-panel p { color: var(--muted); }

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
  margin-top: 34px;
  margin-bottom: 48px;
}

.review-card {
  margin-bottom: 12px;
  padding: 16px;
}

.cart-layout,
.checkout-layout,
.auth-page,
.account-grid,
.track-layout,
.content-page,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
  margin-bottom: 78px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 110px 130px;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
}

.summary-panel {
  display: grid;
  gap: 12px;
}
.summary-panel.sticky { position: sticky; top: 104px; }
.summary-panel.flat { box-shadow: none; }
.summary-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.summary-panel .total strong { font-size: 1.4rem; }

.checkout-layout { grid-template-columns: minmax(0, 1fr) 430px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.choice-card input { width: auto; min-height: auto; }
.choice-card span { color: var(--muted); font-size: 0.9rem; }

.auth-page {
  grid-template-columns: 0.85fr 1.15fr;
  padding-top: 54px;
}
.auth-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account-grid {
  grid-template-columns: 380px minmax(0, 1fr);
}
.wide-panel { grid-column: 1 / -1; }
.order-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.order-row a { color: var(--green-dark); font-weight: 950; }

.timeline {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.timeline li {
  padding: 14px;
  border-left: 4px solid var(--green);
  background: var(--paper);
  border-radius: 8px;
}
.timeline span, .timeline small { display: block; color: var(--muted); }

.content-page {
  grid-template-columns: minmax(0, 1fr) 390px;
  padding-top: 56px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.admin-stats div {
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}
.admin-stats strong { display: block; color: var(--green); font-size: 1.6rem; }

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.admin-tabs a {
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 900;
}
.admin-tabs a.active { background: var(--green); border-color: var(--green); }
.admin-layout { grid-template-columns: 390px minmax(0, 1fr); }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
td small { display: block; color: var(--muted); margin-top: 4px; }
.status {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e8fff3;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 950;
}
.inline-form { gap: 8px; }
.inline-form select { min-width: 135px; }
.inline-form button { min-height: 42px; border: 0; border-radius: 8px; background: var(--orange); font-weight: 950; }

.empty {
  padding: 18px;
  border: 1px dashed #b9c8c0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 76px) 72px;
  color: #dbe8e1;
  background: var(--ink);
}

.site-footer img {
  width: 190px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.15);
}
.site-footer p { color: #aebdb5; }
.site-footer a { display: block; margin: 8px 0; color: #e9f3ee; }
.site-footer h3 { color: var(--green); margin: 0 0 8px; }
.newsletter input { border-color: #22332a; background: #101613; color: var(--white); }
.newsletter button { min-height: 46px; border-radius: 8px; }

.mobile-bar { display: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 190px 1fr auto; }
  .main-nav {
    position: absolute;
    inset: 74px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid, .confidence-band, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials, .product-tabs { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body { padding-bottom: 58px; }
  .topline { display: none; }
  .site-header {
    top: 0;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .brand img { width: 168px; }
  .header-search {
    grid-column: 1 / -1;
    order: 3;
  }
  .hero,
  .shop-layout,
  .product-detail,
  .reviews-section,
  .cart-layout,
  .checkout-layout,
  .auth-page,
  .account-grid,
  .track-layout,
  .content-page,
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 28px; }
  .hero-product { grid-template-columns: 1fr; min-height: auto; }
  .filters-panel, .summary-panel.sticky { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-panels, .choice-grid, .form-row { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 76px 1fr; }
  .cart-item input, .cart-item > strong { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-bottom: 92px; }
  .mobile-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -12px 28px rgba(7, 9, 8, 0.12);
  }
  .mobile-bar a {
    min-height: 56px;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 950;
  }
}

/* Animated African campaign banners */
.hero-slider,
.story-banners {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #07100b;
  box-shadow: var(--shine), var(--shadow-deep);
  isolation: isolate;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.74) 0%, rgba(7, 9, 8, 0.34) 42%, rgba(7, 9, 8, 0.06) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  animation: heroSlideShow 15s infinite;
}

.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.hero-slide div {
  position: absolute;
  left: clamp(20px, 5vw, 46px);
  bottom: clamp(22px, 5vw, 48px);
  z-index: 3;
  width: min(430px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(7, 9, 8, 0.40);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 44px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero-slide span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #07100b;
  background: linear-gradient(135deg, #00d77e, #00b86b);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-slide h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-slide p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

.hero-dots {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots span {
  width: 30px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.48);
  animation: heroDot 15s infinite;
}

.hero-dots span:nth-child(2) { animation-delay: 5s; }
.hero-dots span:nth-child(3) { animation-delay: 10s; }

.story-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.story-banners article {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.70);
  background: var(--ink);
  box-shadow: var(--shine), var(--shadow-soft);
}

.story-banners article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,9,8,0.72), rgba(7,9,8,0.10));
}

.story-banners img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-banners article:hover img {
  transform: scale(1.045);
}

.story-banners div {
  position: absolute;
  inset: auto auto 20px 20px;
  z-index: 2;
  width: min(390px, calc(100% - 40px));
  color: #ffffff;
}

.story-banners span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255,122,26,0.92);
  color: #07100b;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-banners h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.04;
}

@keyframes heroSlideShow {
  0% { opacity: 0; transform: scale(1.04); }
  6% { opacity: 1; transform: scale(1.02); }
  31% { opacity: 1; transform: scale(1); }
  38% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}

@keyframes heroDot {
  0%, 38%, 100% { background: rgba(255, 255, 255, 0.42); width: 30px; }
  6%, 31% { background: #ff7a1a; width: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-dots span {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Strong button alignment fixes */
.button,
.header-search button,
.hero-search button,
.form-panel button,
.newsletter button,
.inline-form button,
.promo-strip a,
.story-banners a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  min-width: max-content;
}

.header-search button,
.hero-search button {
  min-width: 168px;
  padding-inline: 24px;
}

.header-search button span,
.hero-search button span,
.form-panel button span,
.newsletter button span,
.button span {
  position: relative;
  z-index: 1;
}

.form-panel button {
  width: 100%;
}

@media (max-width: 860px) {
  .story-banners {
    grid-template-columns: 1fr;
  }

  .hero-slider,
  .hero-slide img {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .hero-slider,
  .hero-slide img {
    min-height: 440px;
  }

  .hero-slide div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .hero-dots {
    right: 14px;
    top: 14px;
    bottom: auto;
  }

  .header-search button,
  .hero-search button {
    min-width: 118px;
    padding-inline: 16px;
  }
}

/* Banner layout hardening: controlled backgrounds, no image-driven page shift */
.hero {
  align-items: stretch;
}

.hero-market {
  align-content: center;
}

.hero-slider {
  height: clamp(360px, 46vw, 520px);
  min-height: 0;
}

.hero-slide {
  min-height: 100%;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
}

.hero-slide:first-child {
  background-position: 64% center;
}

.hero-slide:nth-child(2) {
  background-position: 58% center;
}

.hero-slide:nth-child(3) {
  background-position: 68% center;
}

.hero-slide img {
  display: none;
}

.story-banners {
  align-items: stretch;
  margin-top: clamp(18px, 3vw, 30px);
}

.story-banners .story-card {
  height: clamp(245px, 24vw, 330px);
  min-height: 0;
  display: flex;
  align-items: flex-end;
  background-image: var(--story-image);
  background-size: cover;
  background-position: center right;
}

.story-banners .story-card:first-child {
  background-position: 58% center;
}

.story-banners .story-card:nth-child(2) {
  background-position: 66% center;
}

.story-banners .story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.74), rgba(7, 9, 8, 0.16) 72%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
}

.story-banners .story-card::after {
  z-index: 1;
}

.story-banners .story-card > div {
  position: relative;
  inset: auto;
  z-index: 2;
  margin: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  background: rgba(7, 9, 8, 0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 16px 36px rgba(0,0,0,0.20);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.story-banners img {
  display: none;
}

.story-banners .button.light {
  min-width: 0;
  width: fit-content;
  max-width: 100%;
}

.header-search button,
.hero-search button {
  min-width: 148px;
}

.header-search button span,
.hero-search button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1100px) {
  .hero-slider {
    height: clamp(340px, 52vw, 480px);
  }
}

@media (max-width: 860px) {
  .hero {
    align-items: start;
  }

  .hero-slider {
    height: 430px;
  }

  .story-banners .story-card {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .hero-slider {
    height: 470px;
  }

  .story-banners .story-card {
    height: 320px;
  }

  .story-banners .story-card > div {
    margin: 14px;
  }

  .header-search button,
  .hero-search button {
    min-width: 112px;
    padding-inline: 12px;
  }
}

/* Admin, seller and product media consistency */
.form-hint {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-help-list {
  display: grid;
  gap: 10px;
}

.admin-help-list span {
  display: block;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 8px;
  background: rgba(255,255,255,0.58);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shine), 0 10px 22px rgba(7,9,8,0.05);
}

.admin-notifications,
.confirmation-layout {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.admin-notifications {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 8px;
  background: rgba(255,255,255,0.60);
  box-shadow: var(--shine), var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.admin-notifications span:first-child {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(220, 255, 236, 0.78);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-notifications h2 {
  margin: 10px 0 0;
}

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

.admin-notification-list a {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(0, 184, 107, 0.22);
  border-radius: 8px;
  background: rgba(232, 255, 243, 0.72);
  box-shadow: var(--shine), 0 12px 24px rgba(7,9,8,0.06);
}

.admin-notification-list a.read {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.54);
}

.admin-notification-list span,
.admin-notification-list small {
  color: var(--muted);
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
  margin-bottom: 78px;
}

.confirmation-card > span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(220, 255, 236, 0.78);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.confirmation-card h2 {
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.account-order-card {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.account-order-card .order-row {
  border-bottom: 0;
  padding: 0 0 10px;
}

.mini-order-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(7,9,8,0.06);
}

.mini-order-item span {
  color: var(--muted);
  font-weight: 800;
}

.track-items {
  margin-top: 18px;
  margin-bottom: 18px;
}

.track-items h3 {
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .admin-notifications,
  .confirmation-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .confirmation-actions,
  .mini-order-item,
  .account-order-card .order-row {
    flex-direction: column;
    align-items: stretch;
  }
}

input[type="file"] {
  display: block;
  padding: 13px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.72);
}

.product-media,
.gallery-main,
.cart-item img,
.admin-product-thumb,
.seller-product-list img {
  border-radius: 8px;
}

.product-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.product-media img {
  width: 100%;
  height: 100%;
  max-height: 230px;
  object-fit: contain;
  object-position: center;
}

.gallery-main {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.gallery-main img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.admin-stats {
  grid-template-columns: repeat(6, 1fr);
}

.admin-product-thumb {
  width: 76px;
  height: 76px;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  background: rgba(244, 248, 246, 0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.seller-layout,
.seller-tables {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.seller-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
}

.seller-tables {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 22px;
  margin-bottom: 78px;
}

.seller-product-list {
  display: grid;
  gap: 12px;
}

.seller-product-list article {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 8px;
  background: rgba(255,255,255,0.62);
  box-shadow: var(--shine), 0 12px 28px rgba(7, 9, 8, 0.07);
}

.seller-product-list img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  padding: 6px;
  background: var(--paper);
}

.seller-product-list span,
.seller-product-list small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.seller-product-list small {
  color: var(--green-dark);
  font-weight: 900;
}

.seller-link {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .seller-layout,
  .seller-tables {
    grid-template-columns: 1fr;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .seller-product-list article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .seller-product-list img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 12px; }
  .brand img { width: 146px; }
  .hero h1, .page-hero h1, .dashboard-head h1, .content-page h1, .auth-copy h1 { font-size: 2.25rem; }
  .hero-search, .promo-banner, .section-head.split, .page-hero.compact, .dashboard-head, .promo-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-search button, .header-search button { min-width: 112px; }
  .product-grid, .category-grid, .category-grid.in-shop, .confidence-band, .trust-mini, .admin-stats, .site-footer {
    grid-template-columns: 1fr;
  }
  .gallery-main { min-height: 330px; }
  .buy-box { align-items: stretch; flex-direction: column; }
  .buy-box label { width: 100%; }
  .flash { left: 14px; right: 14px; top: 118px; }
}

/* Premium liquid-glass layer */
:root {
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-dark: rgba(7, 9, 8, 0.84);
  --line-soft: rgba(255, 255, 255, 0.58);
  --shine: inset 0 1px 0 rgba(255, 255, 255, 0.86), inset 0 -1px 0 rgba(7, 9, 8, 0.04);
  --shadow-soft: 0 18px 55px rgba(7, 9, 8, 0.10);
  --shadow-deep: 0 28px 80px rgba(7, 9, 8, 0.16);
}

body {
  background:
    linear-gradient(118deg, rgba(0, 184, 107, 0.10) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(244deg, rgba(255, 122, 26, 0.10) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f6 46%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 9, 8, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 72%);
}

.topline {
  background: linear-gradient(90deg, #070908, #112019 48%, #070908);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 40px rgba(7, 9, 8, 0.08);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}

.brand {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: var(--shine);
}

.brand img {
  height: 44px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  border-radius: 8px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: rgba(0, 184, 107, 0.10);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.header-search,
.hero-search {
  border: 1px solid rgba(7, 9, 8, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shine), 0 16px 36px rgba(7, 9, 8, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-search:focus-within,
.hero-search:focus-within {
  border-color: rgba(0, 184, 107, 0.72);
  box-shadow: var(--shine), 0 0 0 4px rgba(0, 184, 107, 0.12), 0 20px 48px rgba(7, 9, 8, 0.12);
}

.header-search input,
.hero-search input {
  color: var(--ink);
  font-weight: 650;
}

.header-search button,
.hero-search button,
.form-panel button,
.newsletter button,
.button.primary,
.inline-form button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8a2e 0%, #ff7518 52%, #f46812 100%);
  color: #050706;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -10px 22px rgba(216, 91, 0, 0.18),
    0 14px 30px rgba(255, 122, 26, 0.23);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-search button::before,
.hero-search button::before,
.form-panel button::before,
.newsletter button::before,
.button.primary::before,
.inline-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.38), transparent 42%);
  opacity: 0.78;
  pointer-events: none;
}

.header-search button:hover,
.hero-search button:hover,
.form-panel button:hover,
.newsletter button:hover,
.button.primary:hover,
.inline-form button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -10px 24px rgba(216, 91, 0, 0.20),
    0 20px 46px rgba(255, 122, 26, 0.30);
}

.button.ghost,
.button.light,
.admin-tabs a,
.thumbs button {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shine), 0 12px 28px rgba(7, 9, 8, 0.08);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.ghost:hover,
.button.light:hover,
.admin-tabs a:hover,
.thumbs button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 184, 107, 0.32);
  box-shadow: var(--shine), 0 20px 44px rgba(7, 9, 8, 0.12);
}

.cart-link {
  background: linear-gradient(145deg, #050706, #111814);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 14px 28px rgba(7, 9, 8, 0.18);
}

.cart-link strong {
  background: linear-gradient(135deg, #00d77e, #00b86b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 8px 16px rgba(0, 184, 107, 0.22);
}

.hero {
  background:
    linear-gradient(120deg, rgba(0, 184, 107, 0.12), rgba(255, 255, 255, 0) 45%),
    linear-gradient(250deg, rgba(255, 122, 26, 0.11), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 246, 0.92) 100%);
}

.eyebrow,
.section-head span,
.page-hero span,
.dashboard-head span,
.content-page span,
.auth-copy span,
.testimonials span,
.promo-banner span {
  border: 1px solid rgba(0, 184, 107, 0.18);
  background: rgba(220, 255, 236, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 24px rgba(0, 184, 107, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.promo-strip,
.hero-product,
.trust-mini,
.product-card,
.filters-panel,
.summary-panel,
.form-panel,
.panel,
.gallery-main,
.product-tabs article,
.review-card,
.cart-item,
.choice-card,
.table-wrap {
  position: relative;
  border-color: rgba(255, 255, 255, 0.70);
  background: var(--glass);
  box-shadow: var(--shine), var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.promo-strip::after,
.hero-product::after,
.product-card::after,
.form-panel::after,
.panel::after,
.summary-panel::after,
.gallery-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 38%, rgba(255, 255, 255, 0.12));
  opacity: 0.72;
}

.promo-strip {
  background: linear-gradient(135deg, rgba(7, 9, 8, 0.92), rgba(18, 51, 38, 0.88));
}

.promo-strip > *,
.hero-product > *,
.product-card > *,
.form-panel > *,
.panel > *,
.summary-panel > *,
.gallery-main > * {
  position: relative;
  z-index: 1;
}

.hero-product,
.product-card,
.category-grid a,
.choice-card,
.cart-item,
.review-card,
.product-tabs article {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.hero-product:hover,
.product-card:hover,
.category-grid a:hover,
.choice-card:hover,
.cart-item:hover,
.review-card:hover,
.product-tabs article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 107, 0.24);
  box-shadow: var(--shine), var(--shadow-deep);
}

.product-media,
.gallery-main,
.cart-item img {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(239, 247, 243, 0.82)),
    linear-gradient(0deg, rgba(0, 184, 107, 0.08), rgba(255, 122, 26, 0.05));
}

.product-media img,
.hero-product img,
.gallery-main img {
  filter: drop-shadow(0 20px 30px rgba(7, 9, 8, 0.13));
  transition: transform 220ms ease;
}

.product-card:hover .product-media img,
.hero-product:hover img,
.gallery-main:hover img {
  transform: translateY(-3px) scale(1.02);
}

.badge {
  background: linear-gradient(135deg, #ff8d32, #ff7115);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 24px rgba(255, 122, 26, 0.24);
}

.category-grid a {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(236, 255, 245, 0.70)),
    linear-gradient(235deg, rgba(255, 122, 26, 0.08), rgba(0, 184, 107, 0.08));
  box-shadow: var(--shine), 0 16px 36px rgba(7, 9, 8, 0.08);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.promo-banner,
.confidence-band,
.site-footer,
.payment-note,
.admin-stats div {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 24px 60px rgba(7, 9, 8, 0.16);
}

.promo-banner {
  background:
    linear-gradient(135deg, rgba(7, 9, 8, 0.95), rgba(11, 52, 36, 0.92)),
    linear-gradient(90deg, rgba(255, 122, 26, 0.14), rgba(0, 184, 107, 0.10));
}

input,
select,
textarea {
  border-color: rgba(7, 9, 8, 0.10);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 8px 20px rgba(7, 9, 8, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 184, 107, 0.68);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(0, 184, 107, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

label {
  color: #14201a;
  font-weight: 900;
}

.auth-page {
  min-height: calc(100vh - 180px);
  grid-template-columns: minmax(280px, 0.84fr) minmax(560px, 1.16fr);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  padding-top: clamp(38px, 6vw, 74px);
}

.auth-copy {
  padding: clamp(18px, 3vw, 28px) 0;
}

.auth-copy h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
  line-height: 0.98;
}

.auth-copy p {
  max-width: 560px;
  color: #52615a;
  font-size: 1.12rem;
}

.auth-panels {
  align-items: stretch;
  gap: 18px;
}

.auth-panels .form-panel {
  min-height: 520px;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
}

.form-panel h2,
.panel h2,
.summary-panel h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: 0;
}

.form-panel button {
  min-height: 54px;
  border-radius: 8px;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(7, 9, 8, 0.98), rgba(13, 39, 29, 0.96)),
    linear-gradient(90deg, rgba(255, 122, 26, 0.10), rgba(0, 184, 107, 0.12));
}

.mobile-bar {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

@media (max-width: 860px) {
  .auth-page {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .auth-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }

  .auth-panels .form-panel {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    background: rgba(255, 255, 255, 0.84);
  }

  .header-search {
    min-height: 52px;
  }

  .auth-copy h1 {
    font-size: 2.35rem;
  }
}
