﻿:root {
  --bg: #d4e5a5;
  --panel: #e1edbe;
  --card: #edf4d3;
  --line: #95c11f;
  --text: #4a610f;
  --muted: #749618;
  --accent: #95c11f;
  --accent-2: #4a610f;
  --font-display: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'SF Pro Text', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-compact: 'SF Compact Text', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', ui-monospace, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% -5%, rgba(149, 193, 31, 0.12) 0%, rgba(149, 193, 31, 0) 35%),
    linear-gradient(180deg, #0e0f10 0%, #161719 45%, #1a1c20 100%);
  color: #e7eadf;
}

.container { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: 38px 0; }
.hidden { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.01em; margin: 0 0 12px; }
p { color: var(--muted); line-height: 1.55; }
code, pre, kbd, samp { font-family: var(--font-mono); }

.hero {
  --hero-header-offset: 0;
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding-bottom: 22px;
  background: #08090a;
}
.top-header {
  position: relative;
  z-index: 5;
  background: #08090a;
  border-bottom: 1px solid rgba(149, 193, 31, 0.22);
}
.top-header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.top-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  text-decoration: none;
  min-width: 148px;
}
.top-logo-mark {
  display: block;
  width: auto;
  height: 50px;
  max-width: 150px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.1) brightness(0.95);
}
.top-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.center-nav { justify-self: center; }
.right-nav { justify-self: end; }
.top-nav a {
  text-decoration: none;
  font-size: .84rem;
  font-weight: 500;
  font-family: var(--font-compact);
  letter-spacing: .02em;
  color: #eef3dc;
}
.top-nav a:hover {
  color: #a7d133;
}
.login-btn {
  border: 1px solid rgba(149, 193, 31, 0.45);
  background: rgba(149, 193, 31, 0.14);
  color: #f3f8e6;
  border-radius: 999px;
  padding: 7px 14px;
}

.hero .top-header {
  position: relative;
  background: #08090a;
  border-bottom: 1px solid rgba(149, 193, 31, 0.22);
}

.hero .top-header-inner {
  min-height: 78px;
}

.hero .top-nav a {
  color: #eef3dc;
}

.hero .top-nav a:hover {
  color: #a7d133;
}

.hero .login-btn {
  border-color: rgba(149, 193, 31, 0.45);
  background: rgba(149, 193, 31, 0.14);
  color: #f3f8e6;
}

.hero .top-logo-mark {
  filter: saturate(1.08) contrast(1.04);
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.38) 0%, rgba(10, 10, 10, 0.04) 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.hero-copy {
  background: #161a1f;
  border: 1px solid rgba(149, 193, 31, 0.28);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker {
  margin: 0;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a5cf31;
}

.hero-copy h1 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #f1f5e6;
}

.hero-copy p {
  max-width: 520px;
  font-size: 1rem;
  color: #afb691;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hero-copy .btn-secondary {
  border-color: rgba(149, 193, 31, 0.5);
  color: #e8eed6;
  background: rgba(149, 193, 31, 0.08);
}

.hero-rating-strip {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-rating-strip strong {
  display: block;
  color: #edf3d6;
  font-size: .95rem;
}

.hero-rating-strip p {
  margin: 2px 0 0;
  font-size: .78rem;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #161a1f;
  background: linear-gradient(135deg, #95c11f 0%, #5f7f0f 100%);
  box-shadow: 0 6px 12px rgba(66, 96, 14, 0.22);
}

.hero-avatar + .hero-avatar {
  margin-left: -9px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.hero-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(149, 193, 31, 0.28);
  background: #15191e;
  min-height: 220px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.hero-visual-main {
  grid-row: 1 / span 2;
  min-height: 420px;
}

.hero-visual-side img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.hero-card-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(12, 14, 16, 0.86);
  border: 1px solid rgba(149, 193, 31, 0.36);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero-card-caption h3 {
  margin: 0;
  font-size: .95rem;
  color: #eff4e0;
}

.hero-card-caption p {
  margin: 4px 0 0;
  font-size: .78rem;
  color: #b6be9b;
}

.hero-controls-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(149, 193, 31, 0.34);
  border-radius: 999px;
  background: #15191e;
  width: 100%;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #3b412c;
}

.hero-dot.active {
  width: 24px;
  border-radius: 999px;
  background: #95c11f;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(74, 97, 15, 0.82);
  animation: heroScrollBob 1.8s ease-in-out infinite;
}

.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(74, 97, 15, 0.7);
  border-radius: 20px;
  position: relative;
}

.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  border-radius: 4px;
  background: #95c11f;
  animation: heroScrollDot 1.8s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}

@keyframes heroScrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  70% { opacity: 1; transform: translate(-50%, 8px); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes heroScrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-2); }
.btn-secondary { background: transparent; border-color: var(--line); color: var(--text); }

.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mini-link { color: var(--accent-2); text-decoration: none; font-weight: 700; }

.best-sellers-wrap {
  background:
    radial-gradient(circle at 10% 0%, rgba(149, 193, 31, 0.1) 0%, rgba(149, 193, 31, 0) 32%),
    #0d1014;
  padding: 46px 0 42px;
}
.best-sellers h2 {
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin-bottom: 20px;
  color: #f3f7e8;
}
.best-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.best-card {
  position: relative;
  background: linear-gradient(180deg, #141920 0%, #10151b 100%);
  border: 1px solid rgba(149, 193, 31, 0.22);
  border-radius: 18px;
  padding: 10px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* Locked project styles */
.best-card.locked .best-image-link img {
  filter: grayscale(100%) brightness(0.6) contrast(0.95);
  transform: none;
}
.best-card.locked:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(149, 193, 31, 0.22);
}
.best-image-link { position: relative; }
.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(10,10,10,0.3), rgba(10,10,10,0.45));
  color: #e3e5e7;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
}
.locked-overlay .lock-svg { color: #c7c7c7; }
.locked-overlay .locked-label { background: rgba(0,0,0,0.35); padding: 6px 10px; border-radius: 999px; font-size: .92rem; }
.best-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(149, 193, 31, 0.32), rgba(149, 193, 31, 0) 45%, rgba(149, 193, 31, 0.25));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .65;
}
.best-card:hover {
  transform: translateY(-6px);
  border-color: rgba(149, 193, 31, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}
.best-image-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.best-card img {
  width: 100%;
  height: 282px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.best-card:hover .best-image-link img {
  transform: scale(1.07);
}
.best-card h4 {
  margin: 8px 0 4px;
  font-size: 1.18rem;
  color: #f4f8ea;
  letter-spacing: .01em;
}
.best-card p { margin: 0; }
.best-meta-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.best-stars {
  display: inline-flex;
  font-size: .8rem;
  letter-spacing: .08em;
  color: #a8d432;
}
.best-meta-info {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #95a082;
}
.best-facade {
  margin-top: 12px;
  font-size: .74rem;
  line-height: 1.35;
  color: #9fa78a;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.best-area {
  font-size: .88rem;
  margin-top: 0;
  color: #bec8a8;
}
.best-pricing {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  padding-top: 12px;
}
.best-pricing p {
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.regular-label,
.today-label {
  font-size: .72rem;
  color: #9ea688;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.regular-price {
  font-size: .9rem;
  text-decoration: line-through;
  color: #7b8368;
}
.today-price {
  font-size: 1.38rem;
  font-weight: 700;
  color: #a8d432;
}
.off-tag {
  font-size: .72rem;
  font-weight: 700;
  color: #e5f1c5;
  background: rgba(149, 193, 31, 0.2);
  border: 1px solid rgba(149, 193, 31, 0.44);
  border-radius: 999px;
  width: fit-content;
  padding: 4px 10px;
  letter-spacing: .08em;
}

.fullwidth-banner {
  width: 100%;
  background-image: url('../img/mockup-collection.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 270px;
  padding: 0;
  display: grid;
  align-items: center;
}

.fullwidth-banner-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: left;
  max-width: 520px;
}
.banner-kicker {
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  color: rgba(255,255,255,0.7);
}
.fullwidth-banner h3 {
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}
.fullwidth-banner p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  text-shadow: none;
  max-width: 460px;
}

.info-section {
  background: #ffffff;
  padding: 26px 0;
}

/* â”€â”€ Benefits section â”€â”€ */
.benefits-section {
  background: #0f1216;
  padding: 72px 0;
}
.benefits-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.benefit-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 48px;
}
.benefit-item:first-child {
  padding-left: 0;
}
.benefit-item:last-child {
  padding-right: 0;
}
.benefit-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #95c11f;
  margin-top: 2px;
}
.benefit-icon svg {
  width: 100%;
  height: 100%;
}
.benefit-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
}
.benefit-body p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
}

/* â”€â”€ Policies section â”€â”€ */
.policies-section {
  background: #0f1216;
  padding: 48px 0;
  border-top: 0;
}

.admin-page {
  padding: 34px 0 48px;
  background:
    radial-gradient(circle at 100% -10%, rgba(149, 193, 31, 0.12) 0%, rgba(149, 193, 31, 0) 48%),
    #0f1216;
}

.admin-head {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.24);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}

.admin-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  color: #9dc930;
}

.admin-sub {
  max-width: 660px;
  margin: 0;
}

.admin-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sync-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #adb5bd;
  box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.4);
}

.sync-dot.ok {
  background: #2f9e44;
  box-shadow: 0 0 0 5px rgba(47, 158, 68, 0.14);
}

.sync-dot.loading {
  background: #f59f00;
  animation: syncPulse 1.4s ease-in-out infinite;
}

.sync-dot.error {
  background: #d6336c;
  box-shadow: 0 0 0 5px rgba(214, 51, 108, 0.12);
}

.sync-label {
  font-size: .78rem;
  font-weight: 700;
  color: #b9c6a0;
  margin-right: 8px;
}

.admin-head-actions select {
  border: 1px solid rgba(149, 193, 31, 0.32);
  border-radius: 8px;
  padding: 8px 10px;
  background: #141920;
  color: #e5edd0;
}

.admin-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-stat-card {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.22);
  border-radius: 14px;
  padding: 12px 14px;
}

.admin-stat-card p {
  margin: 0;
  font-size: .83rem;
  color: #a1ad88;
}

.admin-stat-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.35rem;
  color: #f1f6e4;
}

.admin-live,
.admin-status {
  margin: 12px 0 0;
  font-size: .9rem;
}

.admin-live {
  font-weight: 600;
  color: #b7c39b;
}

.admin-status.error {
  color: #9f1818;
}

.admin-activity {
  margin-top: 12px;
  background: linear-gradient(135deg, #171c22 0%, #13181e 100%);
  border: 1px solid rgba(149, 193, 31, 0.2);
  border-radius: 14px;
  padding: 14px;
}

.admin-activity-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(149, 193, 31, 0.24);
  padding-bottom: 8px;
}

.admin-head h1,
.admin-activity-head h2 {
  color: #f1f6e4;
}

.admin-sub,
.admin-activity-head p,
.activity-list li,
.admin-status {
  color: #a8b193;
}

.admin-activity-head h2 {
  margin: 0;
  font-size: 1.02rem;
}

.admin-activity-head p {
  margin: 0;
  font-size: .82rem;
}

.activity-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 5px;
}

.activity-list li {
  color: #5a6e24;
  font-size: .84rem;
}

.activity-list b {
  color: #d9e8aa;
}

.admin-table-wrap {
  margin-top: 14px;
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.22);
  border-radius: 14px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1120px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(149, 193, 31, 0.14);
  padding: 11px 10px;
  text-align: left;
  font-size: .88rem;
  color: #d6dfbf;
}

.admin-table th {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a7d133;
}

.admin-action-btn {
  padding: 7px 10px;
  font-size: .78rem;
  margin-right: 6px;
  margin-bottom: 4px;
}

.expires-cell {
  display: grid;
  gap: 4px;
}

.expires-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.expires-badge.active {
  background: #e7f7dd;
  color: #1f6e1a;
}

.expires-badge.expired {
  background: #fde2e2;
  color: #8f1f1f;
}

.order-row-updated {
  animation: rowFlash 1.15s ease;
  background: linear-gradient(90deg, rgba(202, 248, 200, 0.54) 0%, rgba(255, 255, 255, 0) 95%);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-chip.created,
.status-chip.pending {
  background: #fff4d9;
  color: #846202;
}

.status-chip.approved {
  background: #e3f7dd;
  color: #1f6e1a;
}

.status-chip.rejected {
  background: #fde2e2;
  color: #8f1f1f;
}

@keyframes rowFlash {
  from {
    box-shadow: inset 0 0 0 999px rgba(210, 255, 190, 0.74);
  }
  to {
    box-shadow: inset 0 0 0 999px rgba(210, 255, 190, 0);
  }
}

@keyframes syncPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 159, 0, 0.3);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(245, 159, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 159, 0, 0);
  }
}

@media (max-width: 900px) {
  .admin-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-head-actions {
    flex-wrap: wrap;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.policies-header {
  margin-bottom: 28px;
}
.policies-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #95c11f;
  margin-bottom: 8px;
}
.policies-title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #f0f4e4;
  margin: 0;
}
.policies-tabs-card {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.24);
  border-radius: 14px;
  padding: 16px;
}
.policies-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.policy-tab-btn {
  border: 1px solid rgba(149, 193, 31, 0.26);
  background: #12161b;
  color: #c7cfb0;
  border-radius: 10px;
  min-height: 42px;
  padding: 8px 10px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.policy-tab-btn .tab-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(167, 209, 51, 0.95);
}
.policy-tab-btn .tab-icon svg {
  width: 100%;
  height: 100%;
}
.policy-tab-btn .tab-label {
  line-height: 1;
}
.policy-tab-btn:hover {
  border-color: rgba(149, 193, 31, 0.56);
  color: #e5edd0;
}
.policy-tab-btn.active {
  background: rgba(149, 193, 31, 0.16);
  border-color: rgba(149, 193, 31, 0.7);
  color: #eef4dc;
}
.policy-tab-btn.active .tab-icon {
  color: #c6ef54;
}
.policies-tab-panels {
  background: #12161b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px 16px;
}
.policy-tab-panel {
  display: none;
}
.policy-tab-panel.active {
  display: block;
}
.policy-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.policy-detail {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}
.policy-detail:last-child {
  border-bottom: none;
}
.policy-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: .84rem;
  font-weight: 600;
  color: #d9e1c3;
  cursor: pointer;
  list-style: none;
  gap: 12px;
  user-select: none;
}
.policy-detail summary::-webkit-details-marker { display: none; }
.policy-detail summary::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2395c11f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .2s ease;
}
.policy-detail[open] summary::after {
  transform: rotate(180deg);
}
.policy-detail p {
  margin: 0 0 10px;
  font-size: .82rem;
  line-height: 1.65;
  color: #aab192;
  padding-right: 20px;
}

@media (max-width: 900px) {
  .policies-tabs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* â”€â”€ FAQ section â”€â”€ */
.faq-section {
  background: #111111;
  padding: 0;
}
.faq-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 560px;
}
.faq-left {
  padding: 72px 52px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1200px, 92vw);
  margin: 0 auto;
  width: auto;
  padding-left: calc((100vw - min(1200px, 92vw)) / 2);
}
.faq-eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #95c11f;
  margin-bottom: 16px;
}
.faq-heading {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
  color: #ffffff;
  margin: 0 0 20px;
  letter-spacing: .04em;
}
.faq-subtext {
  font-size: .88rem;
  color: rgba(255,255,255,0.42);
  margin: 0;
  line-height: 1.6;
  max-width: 260px;
}
.faq-right {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 48px calc((100vw - min(1200px, 92vw)) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.09);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 48px 22px 36px;
  font-size: .95rem;
  font-weight: 600;
  color: #f0f0f0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #95c11f;
  transition: transform .22s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 48px 22px 36px;
}
.faq-answer p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
}

.info-title {
  margin-bottom: 12px;
  color: #4a610f;
}
.info-paragraph {
  margin: 0;
  color: #5f6c33;
  max-width: 760px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefit-card {
  background: #ffffff;
  border: 1px solid #dceab4;
  border-left: 4px solid #95c11f;
  border-radius: 12px;
  padding: 16px;
}
.benefit-card h3 {
  margin-bottom: 8px;
  color: #4a610f;
}
.benefit-card p {
  margin: 0;
  color: #5f6c33;
}

.info-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.link-box {
  border: 1px solid #e8f0cf;
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
}
.link-box h4 {
  margin: 0 0 8px;
  color: #4a610f;
}
.link-box ul {
  margin: 0;
  padding-left: 18px;
  color: #66753a;
}
.link-box li {
  margin: 0 0 6px;
}

.faq-list {
  margin: 0;
  padding-left: 18px;
  color: #66753a;
}
.faq-list li {
  margin: 0 0 8px;
}

/* â”€â”€ Contact section â”€â”€ */
.contact-section {
  position: relative;
  background: #101317;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(149, 193, 31, 0.16);
}
.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(149,193,31,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
}
.contact-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #749618;
  border: 1px solid rgba(149,193,31,0.4);
  border-radius: 99px;
  padding: 4px 14px;
  margin-bottom: 28px;
}
.contact-heading {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: #f2f6e6;
  margin: 0 0 18px;
  letter-spacing: .04em;
}
.contact-sub {
  font-size: 1rem;
  color: #adb68f;
  margin: 0 0 48px;
  line-height: 1.6;
}
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}
.contact-btn:hover { transform: translateY(-2px); opacity: .9; }
.contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-btn-mail {
  background: #161b22;
  border: 1px solid rgba(149, 193, 31, 0.34);
  color: #e8edd9;
}
.contact-btn-wa {
  background: #95c11f;
  border: 1px solid #95c11f;
  color: #1a2d00;
}

/* â”€â”€ Footer â”€â”€ */
.site-footer {
  background: #0d0d0d;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #ffffff;
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: .83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin: 0 0 24px;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.footer-social-link:hover { border-color: #95c11f; color: #95c11f; }
.footer-social-link svg { width: 15px; height: 15px; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  text-decoration: none;
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.footer-col-links a:hover { color: #95c11f; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.card {
  background: linear-gradient(180deg, #dce9b1, var(--card));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img { width: 100%; height: 165px; object-fit: cover; }
.card-body { padding: 14px; display: grid; gap: 10px; }
.badge { color: var(--accent); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.price { font-size: 1.3rem; color: var(--accent-2); font-weight: 700; }
.card-actions { display: flex; gap: 8px; }

.video-block {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #e1edbe;
  padding: 20px;
}

.promo-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid #85aa1c;
  background-image: url('../img/mockup-collection.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(32, 45, 8, 0.84) 0%, rgba(32, 45, 8, 0.3) 70%);
}
.promo-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 28px;
}
.promo-kicker {
  margin: 0 0 6px;
  color: #d4e5a5;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.promo-banner h3 {
  margin-bottom: 8px;
  color: #ffffff;
}
.promo-banner p {
  color: #eaf4ce;
}
.video-placeholder {
  border: 1px dashed #95c11f;
  border-radius: 12px;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #749618;
}

.product-page-shell,
.cart-page-shell {
  background: linear-gradient(180deg, #0f1216 0%, #11161c 280px, #0f1216 280px);
}

.product-showcase {
  padding: 34px 0 56px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 26px;
  align-items: start;
}

.product-visual {
  display: grid;
  gap: 16px;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(165, 209, 51, 0.08);
  border: 1px solid rgba(165, 209, 51, 0.2);
}

.product-back:hover {
  background: rgba(165, 209, 51, 0.15);
  border-color: rgba(165, 209, 51, 0.4);
  transform: translateX(-4px);
}

.back-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.product-media-frame {
  background: #ffffff;
  border: 1px solid #dce5bf;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(74, 97, 15, 0.08);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.product-carousel {
  height: 560px;
  background: #dce5bf;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.carousel img.active {
  display: block;
}

.product-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-kicker {
  margin: 0 0 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #95c11f;
}

.product-kicker-dark {
  color: #749618;
}

.product-gallery-note {
  margin: 0;
  font-size: .9rem;
  color: #617132;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.product-summary-card {
  background: #101010;
  border-radius: 24px;
  padding: 30px;
  position: sticky;
  top: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.product-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(149, 193, 31, 0.14);
  color: #cde47d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-summary-card h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .95;
  color: #ffffff;
}

.product-summary-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: .96rem;
  max-width: 42ch;
}

.product-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.product-meta-pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 14px 16px;
}

.product-meta-pill span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px;
}

.product-meta-pill strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.product-price-stack {
  margin-bottom: 18px;
}

.product-price-label {
  margin: 0 0 8px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, 0.38);
}

.product-summary-card .price {
  color: #95c11f;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.product-field-label,
.checkout-summary-card label,
.checkout-item-content label {
  display: block;
  margin: 0 0 8px;
  font-size: .84rem;
  font-weight: 600;
}

.product-field-label {
  color: rgba(255, 255, 255, 0.78);
}

select,
input {
  width: 100%;
  border-radius: 14px;
  padding: 13px 14px;
  border: 1px solid #d6e0b8;
  background: #fafcf5;
  color: #29340e;
  font-family: var(--font-body);
  font-size: .94rem;
}

.product-summary-card select {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.detail-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.product-actions .btn {
  min-height: 48px;
}

.product-quick-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.product-quick-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: .9rem;
}

.product-quick-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .52em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #95c11f;
}

.product-info-section,
.related-projects-section {
  padding: 0 0 64px;
}

.product-info-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.product-info-head h2,
.checkout-panel-intro h2,
.checkout-summary-card h2 {
  font-family: var(--font-body);
  letter-spacing: 0;
  color: #f1f6e4;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 6px;
}

.product-info-head p,
.checkout-copy {
  margin: 0;
  max-width: 50ch;
  color: #a8b193;
}

.product-info-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.product-info-card {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.22);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.product-info-card-featured {
  background: linear-gradient(135deg, #1b2027 0%, #161b21 100%);
}

.product-card-kicker {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #749618;
}

.product-info-card h3 {
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: 1.25rem;
  color: #f0f4e2;
}

.product-info-card p,
.product-info-card li {
  color: #a8b193;
}

.product-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.product-info-card li {
  position: relative;
  padding-left: 18px;
}

.product-info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #95c11f;
}

.related-grid .best-card {
  min-height: auto;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-hero {
  background: #08090a;
  padding: 44px 0 30px;
}

.checkout-kicker,
.checkout-panel-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #95c11f;
}

.checkout-hero-inner h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 10px;
}

.checkout-hero-inner p {
  max-width: 52ch;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.checkout-back {
  color: #d7e8a0;
}

.cart-page-shell {
  padding: 26px 0 82px;
}

.cart-empty-state {
  border: 1px dashed rgba(149, 193, 31, 0.35);
  border-radius: 24px;
  background: #171b21;
  padding: 62px 24px;
  text-align: center;
}

.cart-empty-state h2 {
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: 1.8rem;
  color: #f0f5e3;
}

.cart-empty-state p {
  max-width: 46ch;
  margin: 0 auto 22px;
  color: #a8b193;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}

.checkout-items-panel,
.checkout-summary-card {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.24);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.checkout-summary-card {
  position: sticky;
  top: 24px;
}

.checkout-items-list {
  display: grid;
  gap: 18px;
  margin: 22px 0;
}

.checkout-item-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  border: 1px solid rgba(149, 193, 31, 0.16);
  border-radius: 20px;
  padding: 16px;
  background: #141920;
}

.checkout-item-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.checkout-item-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.checkout-item-eyebrow {
  margin: 0 0 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9dc930;
}

.checkout-item-head h3 {
  font-family: var(--font-body);
  letter-spacing: 0;
  color: #f0f5e3;
  margin-bottom: 6px;
}

.checkout-item-desc {
  margin: 0 0 14px;
  color: #a5ae8f;
}

.checkout-remove {
  border: 0;
  background: transparent;
  color: #a9b58b;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}

.checkout-remove:hover {
  color: #d4e88f;
}

.checkout-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.checkout-item-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(149, 193, 31, 0.14);
  border: 1px solid rgba(149, 193, 31, 0.26);
  color: #d2dfb2;
  font-size: .82rem;
}

.checkout-item-content label,
.checkout-summary-card label {
  color: #d5dec0;
}

.checkout-benefits-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-note {
  border: 1px solid rgba(149, 193, 31, 0.2);
  border-radius: 18px;
  background: #141920;
  padding: 16px;
}

.checkout-note strong {
  display: block;
  margin-bottom: 8px;
  color: #eff5dd;
}

.checkout-note p {
  margin: 0;
  font-size: .86rem;
  color: #a6af91;
}

.checkout-summary-card input {
  margin-bottom: 16px;
  border-color: rgba(149, 193, 31, 0.28);
  background: #0f1318;
  color: #ecf2dc;
}

.checkout-summary-card input::placeholder {
  color: #7f8a6e;
}

.checkout-total-box {
  border: 1px solid rgba(149, 193, 31, 0.2);
  border-radius: 18px;
  background: #141920;
  padding: 18px;
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}

.checkout-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #b2bc9a;
}

.checkout-total-line.total {
  padding-top: 12px;
  border-top: 1px solid rgba(149, 193, 31, 0.2);
  color: #eef5dc;
  font-weight: 700;
}

.checkout-summary-card .btn {
  width: 100%;
  min-height: 50px;
}

.hint {
  font-size: .9rem;
}

.checkout-hint {
  margin-top: 12px;
  color: #9aa584;
}

.auth-shell {
  padding-top: 34px;
}

.auth-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 22px;
}

.auth-panel {
  min-height: 100%;
}

.auth-panel .checkout-copy {
  margin-bottom: 12px;
}

.auth-form {
  gap: 10px;
}

.auth-form label {
  color: #d5dec0;
}

.auth-form input {
  border-color: rgba(149, 193, 31, 0.28);
  background: #0f1318;
  color: #ecf2dc;
}

.auth-form input::placeholder {
  color: #7f8a6e;
}

.auth-form .btn {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
}

.auth-form .btn.btn-primary {
  background: #95c11f;
  color: #1a2d00;
  border-color: #95c11f;
}

.auth-form .btn.btn-secondary {
  background: rgba(149, 193, 31, 0.08);
  color: #e5edd0;
  border-color: rgba(149, 193, 31, 0.36);
}

.auth-status {
  margin-top: 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 10px 12px;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
}

.auth-status.is-loading {
  background: rgba(149, 193, 31, 0.12);
  border-color: rgba(149, 193, 31, 0.34);
  color: #d9e8aa;
}

.auth-status.is-success {
  background: rgba(68, 181, 92, 0.14);
  border-color: rgba(68, 181, 92, 0.36);
  color: #b8efc3;
}

.auth-status.is-error {
  background: rgba(220, 56, 66, 0.14);
  border-color: rgba(220, 56, 66, 0.4);
  color: #ffc9ce;
}

@media (max-width: 1024px) {
  .hero { --hero-header-offset: 0; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-gallery { grid-template-columns: 1fr 1fr; }
  .hero-visual-main { grid-row: auto; min-height: 360px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .best-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-showcase-grid,
  .product-info-grid,
  .checkout-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .top-header-inner { grid-template-columns: auto 1fr auto; }
  .center-nav { justify-self: center; }
  .top-header-inner { min-height: 74px; }
  .top-logo { min-width: 128px; }
  .top-logo-mark { height: 40px; max-width: 128px; }
  .hero .top-header-inner { min-height: 70px; }
  .product-summary-card,
  .checkout-summary-card {
    position: static;
  }
  .product-carousel { height: 480px; }
  .checkout-benefits-row { grid-template-columns: 1fr; }
  .benefits-inner { flex-direction: column; gap: 40px; }
  .benefit-item { padding: 0; }
  .benefit-divider { width: 100%; height: 1px; align-self: auto; }
  .policies-grid { grid-template-columns: 1fr; }
  .faq-section-inner { grid-template-columns: 1fr; }
  .faq-left { padding: 52px 4vw 36px; }
  .faq-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding: 0 0 48px; }
  .faq-item summary { padding: 18px 4vw; }
  .faq-answer { padding: 0 4vw 18px; }
  .auth-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { --hero-header-offset: 0; }
  .hero-shell { grid-template-columns: 1fr; gap: 14px; }
  .hero-copy {
    order: 2;
    padding: 18px;
    border-radius: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.05;
  }
  .hero-copy p { font-size: .94rem; }
  .hero-gallery {
    order: 1;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-visual-main { min-height: 320px; }
  .hero-visual-side {
    min-height: 210px;
    display: none;
  }
  .hero-controls-row { margin-top: 2px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-scroll-text { display: none; }
  .hero-scroll-cue { bottom: 10px; }
  .center-nav { display: none; }
  .top-header-inner { min-height: 62px; }
  .top-header-inner { grid-template-columns: auto 1fr; }
  .top-logo { min-width: 108px; }
  .top-logo-mark { height: 32px; max-width: 108px; }
  .hero .top-header-inner { min-height: 62px; }
  .right-nav a:not(.login-btn) { display: none; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .best-grid { grid-template-columns: 1fr; gap: 12px; }
  .best-card { min-height: 0; padding: 10px; border-radius: 16px; }
  .best-image-link { aspect-ratio: 1 / 1; }
  .best-card img { height: 100%; }
  .best-card h4 { font-size: 1.06rem; }
  .best-stars { font-size: .72rem; }
  .best-meta-info { font-size: .62rem; }
  .best-area { font-size: .84rem; }
  .today-price { font-size: 1.2rem; }
  .off-tag { font-size: .66rem; padding: 3px 9px; }
  .fullwidth-banner { min-height: 220px; }

  .benefits-section { padding: 48px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .info-links-grid { grid-template-columns: 1fr; }
  .info-section { padding: 20px 0; }
  .product-showcase { padding: 22px 0 42px; }
  .product-carousel { height: 320px; }
  .product-carousel-footer { flex-direction: column; align-items: flex-start; }
  .product-carousel-controls { width: 100%; }
  .product-carousel-controls .btn { flex: 1; }
  .product-summary-card,
  .checkout-items-panel,
  .checkout-summary-card,
  .product-info-card,
  .cart-empty-state { padding: 20px; border-radius: 20px; }
  .product-meta-row,
  .product-info-grid,
  .related-grid,
  .footer-inner,
  .checkout-layout,
  .checkout-item-card { grid-template-columns: 1fr; }
  .product-info-head,
  .footer-bottom { align-items: flex-start; }
  .product-info-head,
  .footer-bottom,
  .footer-bottom-links { flex-direction: column; }
  .checkout-hero { padding: 38px 0 30px; }
  .checkout-item-media img { min-height: 240px; }
  .promo-banner { min-height: 240px; }
  .promo-banner-content { padding: 18px; }
  .card-actions { flex-direction: column; }
  .auth-shell { padding-top: 20px; }
  .auth-panel { padding: 18px; border-radius: 18px; }
  .auth-form .btn { min-height: 46px; }
}

/* Product minimal redesign */
.product-minimal-shell {
  background: #0f1216;
  min-height: 100vh;
  --product-section-padding: 20px;
  --product-panel-height: calc(100vh - (var(--product-section-padding) * 2));
}

.product-minimal-section {
  height: 100vh;
  max-height: 100vh;
  padding: var(--product-section-padding) 0;
  box-sizing: border-box;
  overflow: hidden;
}

.product-minimal-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr);
  gap: 26px;
  align-items: stretch;
  height: 100%;
}

.product-minimal-summary {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.24);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: var(--product-panel-height);
}

.product-minimal-summary .product-back {
  color: #d9e8aa;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.product-minimal-summary .product-label {
  margin-top: 20px;
  margin-bottom: 8px;
  background: transparent;
  color: #98a284;
  border: 0;
  padding: 0;
  border-radius: 0;
  min-height: auto;
  font-size: .72rem;
}

.product-minimal-summary h1 {
  color: #f1f6e4;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: .95;
  margin: 0 0 12px;
}

.product-minimal-price {
  color: #a7d133;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 12px;
}

.product-minimal-summary .product-summary-text {
  color: #a8b193;
  margin: 0 0 10px;
  max-width: 52ch;
}

.product-minimal-specs {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.product-minimal-spec-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(149, 193, 31, 0.14);
}

.product-minimal-spec-row span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #8f9a78;
}

.product-minimal-spec-row strong {
  color: #e6eed1;
  font-size: .95rem;
  font-weight: 500;
}

.product-minimal-actions {
  margin-top: 22px;
  grid-template-columns: 1fr;
}

.product-minimal-actions .btn {
  min-height: 46px;
  border-radius: 0;
}

.product-minimal-actions .btn-secondary {
  border-color: rgba(149, 193, 31, 0.4);
  color: #e5edd0;
  background: rgba(149, 193, 31, 0.08);
}

.product-minimal-actions .btn-primary {
  background: #95c11f;
  border-color: #95c11f;
  color: #1a2d00;
}

.product-minimal-visual {
  display: grid;
  gap: 12px;
}

.product-minimal-frame {
  background: #171b21;
  border: 1px solid rgba(149, 193, 31, 0.24);
  padding: 0;
  min-height: var(--product-panel-height);
  height: var(--product-panel-height);
  position: relative;
}

#carousel {
  display: grid;
  gap: 10px;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  height: 100%;
}

.product-main-image-wrap {
  background: #11161c;
  min-height: 0;
}

.product-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product card buy button overlay and gallery styles */
.product-buy-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 6;
}
.product-buy-overlay .btn {
  padding: 12px 20px;
  border-radius: 10px;
}

.product-thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product-thumb {
  position: relative;
  border: 1px solid rgba(149, 193, 31, 0.24);
  background: #171b21;
  padding: 0;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 94px; object-fit: cover; display: block; }
.product-thumb.active { border-color: #a7d133; }
.product-thumb .thumb-plus {
  position: absolute;
  right: 6px;
  bottom: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
}
.image-modal.open { display: flex; }
.image-modal img { max-width: 92vw; max-height: 92vh; border-radius: 8px; }
.image-modal .modal-close { position: absolute; top: 18px; right: 18px; background: transparent; border: 0; color: #fff; font-size: 22px; }
.image-modal .modal-prev, .image-modal .modal-next { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: #fff; font-size: 40px; }
.image-modal .modal-prev { left: 18px; }
.image-modal .modal-next { right: 18px; }

.product-thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-thumb {
  border: 1px solid rgba(149, 193, 31, 0.24);
  background: #171b21;
  padding: 0;
  cursor: pointer;
}

.product-thumb.active {
  border-color: #a7d133;
}

.product-thumb img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  display: block;
}

.product-minimal-visual .product-gallery-note {
  margin: 0;
  color: #666666;
  font-size: .86rem;
  display: none;
}

.product-minimal-related {
  padding-top: 6px;
}

.product-minimal-related-head {
  margin-bottom: 18px;
}

.product-minimal-related .related-grid {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .product-minimal-section {
    height: auto;
    max-height: none;
    padding: 24px 0 32px;
    overflow: visible;
  }

  .product-minimal-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .product-minimal-summary,
  .product-minimal-frame {
    min-height: 0;
    height: auto;
  }

  .product-main-image-wrap img {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .product-minimal-section {
    padding: 18px 0 30px;
  }

  .product-minimal-summary {
    padding: 18px;
  }

  .product-main-image-wrap img {
    height: 320px;
  }

  .product-thumb img {
    height: 74px;
  }
}


