:root {
  --ink: #181512;
  --ink-soft: #2c2722;
  --muted: #746b61;
  --paper: #faf7ef;
  --surface: #fffdf8;
  --warm: #f1eadc;
  --line: rgba(58, 48, 39, 0.16);
  --gold: #b88a3d;
  --gold-soft: #e7d2a0;
  --forest: #1e5b54;
  --moss: #73856a;
  --rose: #9a6a5b;
  --danger: #a43f3f;
  --success: #417557;
  --shadow: 0 22px 70px rgba(34, 27, 20, 0.14);
  --shadow-soft: 0 14px 34px rgba(34, 27, 20, 0.08);
  --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Forum", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 210, 160, 0.24), transparent 34rem),
    linear-gradient(180deg, #fffdfa, var(--paper));
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.topline {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 8px 16px;
  color: rgba(255, 253, 248, 0.8);
  background: #181512;
  font-size: 0.75rem;
  font-weight: 800;
}

.topline span {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 60px);
  background: rgba(250, 247, 239, 0.9);
  border-bottom: 1px solid rgba(58, 48, 39, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: min(300px, 38vw);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a,
.logout-form button {
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #5e554d;
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a.active,
.logout-form button:hover {
  color: var(--ink);
  border-color: rgba(184, 138, 61, 0.32);
  background: rgba(255, 253, 248, 0.72);
}

.site-nav .nav-button {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, var(--ink), #3b2c22);
  box-shadow: 0 14px 28px rgba(24, 21, 18, 0.18);
}

.logout-form {
  margin: 0;
}

.notice {
  margin: 16px auto 0;
  width: min(1180px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 850;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.notice.success {
  border-color: rgba(65, 117, 87, 0.32);
  color: var(--success);
}

.notice.error {
  border-color: rgba(164, 63, 63, 0.32);
  color: var(--danger);
}

.hero {
  position: relative;
  min-height: calc(84svh - 88px);
  display: flex;
  align-items: center;
  padding: clamp(52px, 7vw, 104px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(250, 247, 239, 0.98) 0%, rgba(250, 247, 239, 0.88) 42%, rgba(250, 247, 239, 0.34) 72%, rgba(250, 247, 239, 0.1)),
    linear-gradient(180deg, rgba(24, 21, 18, 0), rgba(24, 21, 18, 0.08)),
    url("/assets/led-ahsap-cerceve.png");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  width: min(42vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  width: min(690px, 100%);
}

.hero h1,
.page-hero h1 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #554c44;
  font-size: clamp(1.02rem, 2vw, 1.23rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  border: 1px solid rgba(184, 138, 61, 0.28);
  border-radius: 8px;
  padding: 9px 12px;
  color: #4e463f;
  background: rgba(255, 253, 248, 0.64);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(34, 27, 20, 0.05);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #1a1207;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f4dd9e, var(--gold) 58%, #9d6b28);
  box-shadow: 0 18px 38px rgba(184, 138, 61, 0.26);
}

.button.soft {
  color: var(--ink);
  border-color: rgba(24, 21, 18, 0.18);
  background: rgba(255, 253, 248, 0.66);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(58, 48, 39, 0.16);
  background: var(--surface);
}

.button.wide {
  width: 100%;
}

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.inner.narrow {
  width: min(620px, calc(100% - 32px));
}

.two-column,
.product-layout,
.admin-detail,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.intro-section {
  background: linear-gradient(180deg, var(--surface), var(--paper));
  border-top: 1px solid rgba(58, 48, 39, 0.08);
  border-bottom: 1px solid var(--line);
}

.muted-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(241, 234, 220, 0.92));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.18;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-head p,
.two-column p,
.order-panel > p,
.page-hero p {
  color: var(--muted);
}

.editorial-copy {
  max-width: 690px;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 18px;
  color: #5f5348;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.52rem);
  font-weight: 600;
  line-height: 1.36;
}

.feature-list,
.summary-box,
.order-lock,
.order-panel,
.variant-admin-form,
.product-media,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff, #fbf4e7);
}

.feature-list div,
.trust-grid div {
  display: grid;
  gap: 4px;
}

.feature-list span,
.trust-grid span {
  color: var(--muted);
}

.model-grid,
.steps,
.trust-grid,
.variant-admin-grid,
.dashboard-list {
  display: grid;
  gap: 18px;
}

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

.model-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 344px;
  border: 1px solid rgba(184, 138, 61, 0.26);
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.86));
  box-shadow: var(--shadow-soft);
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--forest), var(--rose));
}

.model-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.model-card-head span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.model-number {
  position: absolute;
  top: 54px;
  right: 18px;
  color: rgba(184, 138, 61, 0.12);
  font-size: clamp(5.2rem, 10vw, 7rem);
  line-height: 0.78;
  font-weight: 950;
  pointer-events: none;
}

.model-card h3 {
  position: relative;
  font-size: 1.24rem;
}

.model-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.model-price {
  position: relative;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1;
  font-weight: 950;
}

.model-specs,
.summary-box dl,
.order-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.model-specs div,
.summary-box dl div,
.order-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 950;
}

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

.steps article {
  min-height: 224px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #1d1508;
  background: var(--gold-soft);
  font-weight: 950;
}

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

.trust-section {
  color: var(--surface);
  background:
    linear-gradient(135deg, #181512, #1e4b47 58%, #6e4a3e);
}

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

.trust-grid div {
  border-left: 1px solid rgba(231, 210, 160, 0.5);
  padding-left: 18px;
}

.trust-grid span {
  color: rgba(255, 253, 248, 0.72);
}

.page-hero {
  padding: clamp(48px, 7vw, 92px) 0;
  color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(250, 247, 239, 0.96), rgba(250, 247, 239, 0.82), rgba(250, 247, 239, 0.24)),
    url("/assets/led-ahsap-cerceve.png");
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid rgba(58, 48, 39, 0.12);
}

.page-hero.compact h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.45rem);
}

.page-hero p {
  color: #554c44;
}

.product-layout {
  align-items: stretch;
}

.product-media {
  overflow: hidden;
  background: #181512;
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-note {
  padding: 18px 20px 8px;
  color: var(--surface);
  font-weight: 950;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 20px 20px;
}

.product-badges span {
  border: 1px solid rgba(231, 210, 160, 0.42);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
}

.order-panel {
  padding: clamp(22px, 3vw, 34px);
}

.variant-options {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.option-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  background: var(--surface);
}

.option-card.selected {
  border-color: rgba(30, 91, 84, 0.56);
  background: linear-gradient(180deg, #eef6ef, var(--surface));
}

.option-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.option-card small {
  display: block;
  color: var(--muted);
}

.selected-summary {
  display: grid;
  gap: 5px;
  margin: 0 0 20px;
  border: 1px solid rgba(30, 91, 84, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: #eef6ef;
}

.selected-summary span,
.selected-summary small {
  color: var(--muted);
}

.selected-summary b {
  font-size: 1.2rem;
}

.form {
  display: grid;
  gap: 16px;
}

.auth-section {
  min-height: calc(100svh - 126px);
  display: grid;
  align-items: center;
  padding-block: clamp(42px, 7vw, 86px);
  background:
    radial-gradient(circle at 12% 16%, rgba(231, 210, 160, 0.3), transparent 26rem),
    linear-gradient(135deg, #fffdf8, #f2ebdd 58%, #eef4ef);
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.7fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: stretch;
}

.auth-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(24, 21, 18, 0.12), rgba(24, 21, 18, 0.86)),
    url("/assets/led-ahsap-cerceve.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.auth-visual::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 210, 160, 0.8), transparent);
}

.auth-visual > * {
  position: relative;
  z-index: 1;
}

.auth-visual .eyebrow {
  color: var(--gold-soft);
}

.auth-visual h1 {
  max-width: 560px;
  margin: 8px 0 16px;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.auth-visual p {
  max-width: 560px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.05rem;
}

.auth-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.auth-proof span {
  border: 1px solid rgba(231, 210, 160, 0.42);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 253, 248, 0.84);
  background: rgba(255, 253, 248, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.auth-card {
  align-self: center;
  border: 1px solid rgba(58, 48, 39, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 248, 0.86));
  box-shadow: var(--shadow);
}

.auth-form {
  gap: 18px;
}

.math-challenge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border: 1px solid rgba(184, 138, 61, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: #2d2118;
  background: rgba(255, 249, 237, 0.9);
  font-weight: 950;
}

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

.form label,
.variant-admin-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(30, 91, 84, 0.55);
  box-shadow: 0 0 0 4px rgba(30, 91, 84, 0.1);
}

textarea {
  resize: vertical;
}

label small {
  color: var(--muted);
  font-weight: 650;
}

.order-lock {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
}

.switch-auth {
  color: var(--muted);
  text-align: center;
  margin: 18px 0 0;
}

.switch-auth a,
.table-link,
.order-card a,
.summary-box a:not(.button) {
  color: var(--forest);
  font-weight: 950;
}

.summary-box {
  padding: clamp(20px, 3vw, 30px);
}

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

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.3fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.order-card dl {
  grid-column: 1 / -1;
}

.order-meta {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 8px;
}

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: #3f2c17;
  background: #f0dfad;
  font-size: 0.86rem;
  font-weight: 950;
}

.empty-state {
  padding: 32px;
  text-align: center;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

td small {
  display: block;
  color: var(--muted);
}

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

.variant-admin-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 17px 18px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(34, 27, 20, 0.04);
}

summary {
  cursor: pointer;
  font-weight: 950;
}

details p {
  color: var(--muted);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.legal-copy p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(16px, 4vw, 58px);
  color: var(--surface);
  background: #181512;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.68);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--surface);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .topline {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 14px;
    overflow-x: hidden;
  }

  .topline span {
    white-space: normal;
  }

  .site-header,
  .site-footer,
  .admin-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 76svh;
    background-image:
      linear-gradient(180deg, rgba(250, 247, 239, 0.94), rgba(250, 247, 239, 0.74), rgba(250, 247, 239, 0.3)),
      url("/assets/led-ahsap-cerceve.png");
    background-position: center;
  }

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

  .two-column,
  .product-layout,
  .auth-layout,
  .admin-detail,
  .contact-grid,
  .model-grid,
  .steps,
  .trust-grid,
  .variant-admin-grid {
    grid-template-columns: 1fr;
  }

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

  .order-meta {
    justify-items: start;
  }

  .auth-visual {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    min-height: 0;
  }

  .brand-logo {
    width: min(255px, 72vw);
    height: 58px;
  }

  .site-nav a,
  .logout-form button {
    padding: 8px 10px;
  }

  .hero {
    min-height: 74svh;
    padding-block: 42px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4.05rem);
  }

  .auth-section {
    padding-block: 28px;
  }

  .auth-visual {
    min-height: 360px;
    padding: 24px;
  }

  .auth-visual h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

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

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

  .option-card b {
    grid-column: 2;
  }

  .model-number {
    font-size: 4.8rem;
  }

  .model-specs div,
  .summary-box dl div,
  .order-card dl div {
    display: grid;
    gap: 3px;
  }

  dd {
    text-align: left;
  }
}

:root {
  --ink: #120f0b;
  --ink-soft: #2a2117;
  --muted: #74685d;
  --paper: #f5eee2;
  --surface: #fffaf0;
  --warm: #eee0ca;
  --line: rgba(66, 49, 30, 0.16);
  --gold: #c89943;
  --gold-soft: #f1d99a;
  --forest: #123f39;
  --moss: #6e785c;
  --rose: #7f4a46;
  --noir: #0d0b09;
  --charcoal: #17120e;
  --ivory: #fff7e7;
  --champagne: #ecd095;
  --shadow: 0 28px 80px rgba(18, 13, 8, 0.18);
  --shadow-soft: 0 16px 42px rgba(18, 13, 8, 0.1);
  --font-accent: "Forum", Georgia, "Times New Roman", serif;
}

body {
  background:
    linear-gradient(90deg, rgba(18, 15, 11, 0.035), transparent 22%, rgba(18, 63, 57, 0.04) 74%, transparent),
    linear-gradient(180deg, #fffaf0 0%, #f4ecde 48%, #fff8ed 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(120, 90, 46, 0.045) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.topline {
  padding: 9px 18px;
  color: rgba(255, 247, 231, 0.86);
  background: linear-gradient(90deg, #0b0907, #1b130c 50%, #0b0907);
  border-bottom: 1px solid rgba(236, 208, 149, 0.24);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header {
  min-height: 96px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(250, 242, 226, 0.88));
  border-bottom: 1px solid rgba(108, 77, 33, 0.18);
  box-shadow: 0 18px 44px rgba(22, 15, 9, 0.08);
}

.brand-logo {
  width: min(330px, 39vw);
  height: 70px;
  filter: drop-shadow(0 14px 22px rgba(61, 37, 13, 0.14));
}

.site-nav a,
.logout-form button,
.button,
.eyebrow,
.model-card-head span,
.product-badges span,
th {
  font-family: var(--font-accent);
  letter-spacing: 0;
}

.site-nav a,
.logout-form button {
  color: #4b3d2e;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a:hover,
.logout-form button:hover,
.site-nav a.active {
  color: #120f0b;
  border-color: rgba(200, 153, 67, 0.34);
  background: rgba(255, 247, 231, 0.68);
}

.site-nav .nav-button {
  color: #1b1207;
  background: linear-gradient(135deg, #fff0bd, #c89943 58%, #8c6226);
  border-color: rgba(255, 250, 230, 0.52);
  box-shadow: 0 13px 28px rgba(200, 153, 67, 0.22);
}

.hero {
  min-height: calc(90svh - 96px);
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(13, 11, 9, 0.94) 0%, rgba(13, 11, 9, 0.78) 42%, rgba(13, 11, 9, 0.3) 72%, rgba(13, 11, 9, 0.08)),
    url("/assets/led-ahsap-cerceve.png");
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(236, 208, 149, 0.16), transparent 28%, rgba(18, 63, 57, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 247, 231, 0.045) 0 1px, transparent 1px 120px);
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(236, 208, 149, 0.86), transparent);
}

.hero-content {
  z-index: 1;
}

.hero h1,
.page-hero h1,
.section-head h2,
.summary-box h2,
.luxury-contact-card h2,
.auth-visual h1,
.auth-card h1 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.hero h1 {
  color: var(--ivory);
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.44);
}

.hero p {
  color: rgba(255, 247, 231, 0.82);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow.light {
  color: var(--champagne);
}

.hero-proof span {
  color: rgba(255, 247, 231, 0.86);
  border-color: rgba(236, 208, 149, 0.32);
  background: rgba(255, 247, 231, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.button {
  min-height: 50px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
}

.button.primary {
  color: #160f06;
  border-color: rgba(255, 248, 218, 0.54);
  background:
    linear-gradient(135deg, #fff0bd 0%, #d9ad58 42%, #ac772c 100%);
  box-shadow: 0 20px 42px rgba(185, 125, 36, 0.28);
}

.button.soft {
  color: var(--ivory);
  border-color: rgba(236, 208, 149, 0.28);
  background: rgba(255, 247, 231, 0.1);
  backdrop-filter: blur(12px);
}

.button.ghost {
  color: #352719;
  border-color: rgba(111, 78, 35, 0.18);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(247, 236, 216, 0.9));
}

.section {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(255, 250, 240, 0.42));
}

.section.trust-section {
  color: var(--ivory);
  background:
    linear-gradient(90deg, #0b0907, #17100b 38%, #123f39 100%);
  border-top: 1px solid rgba(236, 208, 149, 0.2);
  border-bottom: 1px solid rgba(236, 208, 149, 0.16);
}

.section.trust-section .trust-grid div {
  border-left-color: rgba(236, 208, 149, 0.42);
}

.section.trust-section .trust-grid span {
  color: rgba(255, 247, 231, 0.72);
}

.feature-list,
.summary-box,
.order-lock,
.order-panel,
.variant-admin-form,
.product-media,
.empty-state,
.auth-card,
.order-card,
.model-card {
  border-color: rgba(108, 77, 33, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(248, 238, 219, 0.9));
  box-shadow: 0 22px 56px rgba(34, 22, 10, 0.11);
}

.model-card {
  min-height: 366px;
  border-color: rgba(200, 153, 67, 0.3);
}

.model-card::before {
  height: 5px;
  background: linear-gradient(90deg, #18110b, var(--gold), var(--forest), var(--rose));
}

.model-number {
  color: rgba(150, 104, 36, 0.12);
  font-family: var(--font-accent);
}

.model-price {
  color: #2a1c0f;
  font-family: var(--font-accent);
  font-weight: 700;
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(62px, 8vw, 116px) 0;
  color: var(--ivory);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(13, 11, 9, 0.94), rgba(13, 11, 9, 0.74) 48%, rgba(13, 11, 9, 0.24)),
    url("/assets/led-ahsap-cerceve.png");
  background-position: center right;
  border-bottom: 1px solid rgba(236, 208, 149, 0.22);
  box-shadow: inset 0 -1px 0 rgba(255, 247, 231, 0.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 231, 0.04) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, rgba(236, 208, 149, 0.14), rgba(13, 11, 9, 0));
}

.page-hero h1 {
  color: var(--ivory);
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 247, 231, 0.8);
}

.luxury-page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.luxury-contact-section {
  padding-top: clamp(46px, 7vw, 92px);
  background:
    linear-gradient(180deg, #f7efe2 0%, #fff8ed 46%, #f2e6d4 100%);
}

.luxury-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.luxury-contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(91, 64, 28, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(247, 236, 216, 0.92));
  box-shadow: 0 26px 70px rgba(33, 22, 11, 0.13);
}

.luxury-contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--charcoal), var(--gold), var(--forest), var(--rose));
}

.luxury-contact-card h2 {
  margin: 4px 0 14px;
  color: #20160d;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.contact-primary {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(13, 11, 9, 0.96), rgba(35, 24, 14, 0.9) 48%, rgba(18, 63, 57, 0.82)),
    url("/assets/logo-ledcerceve.png");
  background-repeat: no-repeat;
  background-size: cover, min(420px, 74%);
  background-position: center, right 8% top 10%;
  border-color: rgba(236, 208, 149, 0.28);
}

.contact-primary::before {
  background: linear-gradient(90deg, #fff1bc, var(--gold), rgba(255, 241, 188, 0.6));
}

.contact-primary h2,
.contact-primary .eyebrow {
  color: var(--ivory);
}

.contact-primary .contact-lead {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 247, 231, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.luxury-ghost {
  color: var(--ivory);
  border-color: rgba(236, 208, 149, 0.3);
  background: rgba(255, 247, 231, 0.08);
}

.contact-details,
.contact-process {
  display: grid;
  align-content: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(91, 64, 28, 0.12);
}

.contact-list dt {
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-list dd {
  margin: 0;
  color: #21160c;
  font-weight: 800;
  text-align: right;
}

.contact-process {
  grid-column: 1 / -1;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(255, 252, 245, 0.94), rgba(246, 232, 205, 0.9)),
    linear-gradient(135deg, rgba(18, 63, 57, 0.12), rgba(200, 153, 67, 0.1));
}

.contact-process p {
  max-width: 780px;
  margin: 0;
  color: #66584b;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.process-line span {
  border: 1px solid rgba(91, 64, 28, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  color: #2b1c0f;
  background: rgba(255, 250, 240, 0.72);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  background:
    linear-gradient(90deg, #0b0907, #1a120c 48%, #0f2521);
  border-top: 1px solid rgba(236, 208, 149, 0.22);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .admin-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 76svh;
    background-image:
      linear-gradient(180deg, rgba(13, 11, 9, 0.88), rgba(13, 11, 9, 0.74), rgba(13, 11, 9, 0.3)),
      url("/assets/led-ahsap-cerceve.png");
    background-position: center;
  }

  .hero-proof,
  .luxury-contact-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .contact-process {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .topline {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 14px;
    overflow-x: hidden;
  }

  .topline span {
    white-space: normal;
  }

  .site-header {
    position: static;
    min-height: 0;
  }

  .brand-logo {
    width: min(270px, 76vw);
    height: 60px;
  }

  .hero {
    min-height: 74svh;
    padding-block: 44px;
  }

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

  .page-hero {
    padding-block: 52px;
  }

  .luxury-page-hero {
    min-height: 320px;
  }

  .luxury-contact-card {
    padding: 24px;
  }

  .contact-primary {
    min-height: 420px;
    background-size: cover, min(330px, 86%);
    background-position: center, center top 18px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-list dd {
    text-align: left;
  }
}

.hero h1,
.page-hero h1,
h2,
.section-head h2,
.summary-box h2,
.luxury-contact-card h2,
.auth-visual h1,
.auth-card h1,
.editorial-copy p:not(.eyebrow) {
  font-weight: 400;
}

.topline,
.site-nav a,
.logout-form button,
  .site-nav .nav-button,
  .button,
  .eyebrow,
  .model-card-head span,
  .product-badges span,
  th {
  font-weight: 400;
}

.section.trust-section {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 72px) 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(22, 15, 10, 0.96) 42%, rgba(12, 66, 58, 0.98)),
    radial-gradient(circle at 78% 20%, rgba(236, 208, 149, 0.18), transparent 28rem);
}

.section.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 231, 0.04) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, rgba(236, 208, 149, 0.08), transparent);
}

.section.trust-section .trust-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.section.trust-section .trust-grid div {
  min-height: 116px;
  border: 1px solid rgba(236, 208, 149, 0.18);
  border-radius: 8px;
  padding: 22px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 247, 231, 0.08), rgba(255, 247, 231, 0.035));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.section.trust-section .trust-grid div::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--champagne), rgba(236, 208, 149, 0));
}

.section.trust-section .trust-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  font-weight: 400;
  line-height: 1.08;
}

.section.trust-section .trust-grid span {
  display: block;
  color: rgba(255, 247, 231, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 78px);
  background:
    linear-gradient(90deg, #0a0807, #11100d 46%, #0b231f);
  border-top: 1px solid rgba(236, 208, 149, 0.18);
}

.site-footer strong {
  display: block;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 400;
}

.site-footer p {
  max-width: 380px;
  margin-top: 8px;
  color: rgba(255, 247, 231, 0.62);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  border: 1px solid rgba(236, 208, 149, 0.16);
  border-radius: 8px;
  padding: 10px 13px;
  color: rgba(255, 247, 231, 0.9);
  background: rgba(255, 247, 231, 0.04);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  border-color: rgba(236, 208, 149, 0.38);
  background: rgba(255, 247, 231, 0.09);
}

@media (max-width: 900px) {
  .section.trust-section .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 620px) {
  .section.trust-section {
    padding-block: 34px;
  }

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

  .section.trust-section .trust-grid div {
    min-height: 0;
  }

  .site-footer {
    padding-block: 28px;
  }
}

body {
  color: #17110c;
}

.site-header {
  min-height: 84px;
  padding-block: 10px;
  background:
    linear-gradient(180deg, rgba(255, 250, 239, 0.98), rgba(246, 235, 216, 0.9));
}

.brand-logo {
  height: 62px;
}

.site-nav {
  gap: 8px;
}

.site-nav a,
.logout-form button {
  min-height: 38px;
  border-radius: 8px;
  padding: 9px 13px;
  color: #34271a;
}

.hero {
  min-height: calc(86svh - 84px);
  padding-inline: clamp(18px, 5vw, 80px);
  background-image:
    linear-gradient(90deg, rgba(11, 10, 8, 0.92) 0%, rgba(17, 13, 9, 0.73) 38%, rgba(17, 13, 9, 0.24) 70%, rgba(17, 13, 9, 0.04)),
    url("/assets/led-ahsap-cerceve.png");
}

.hero-content {
  width: min(650px, 100%);
  padding-left: clamp(18px, 2.2vw, 30px);
  border-left: 1px solid rgba(236, 208, 149, 0.42);
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(3.2rem, 7.4vw, 7.2rem);
  line-height: 0.9;
}

.hero p {
  max-width: 520px;
  color: rgba(255, 247, 231, 0.88);
  font-weight: 600;
}

.hero-actions {
  gap: 14px;
}

.hero-proof {
  gap: 10px;
}

.hero-proof span {
  border-color: rgba(236, 208, 149, 0.28);
  background: rgba(255, 247, 231, 0.075);
  color: rgba(255, 247, 231, 0.9);
}

.button {
  border-radius: 8px;
}

.button.primary {
  background:
    linear-gradient(135deg, #fff2bf 0%, #d9aa51 46%, #a36c25 100%);
}

.button.soft,
.button.ghost {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff8ec 0%, #f5ecdc 100%);
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(236, 208, 149, 0.18), transparent 22rem),
    repeating-linear-gradient(90deg, rgba(72, 52, 28, 0.035) 0 1px, transparent 1px 120px);
}

.intro-section .inner,
.muted-section .inner,
.steps-section .inner {
  position: relative;
}

.intro-section .two-column {
  align-items: center;
}

.editorial-copy {
  padding-block: 12px;
}

.editorial-copy h2 {
  max-width: 680px;
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  line-height: 0.96;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #66584d;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  font-weight: 500;
  line-height: 1.74;
}

.feature-list {
  position: relative;
  overflow: hidden;
  border-color: rgba(236, 208, 149, 0.24);
  background:
    linear-gradient(135deg, rgba(20, 15, 11, 0.96), rgba(26, 41, 36, 0.92)),
    url("/assets/logo-ledcerceve-icon.png");
  background-repeat: no-repeat;
  background-size: cover, 170px;
  background-position: center, right -18px bottom -24px;
  box-shadow: 0 28px 80px rgba(23, 15, 8, 0.18);
}

.feature-list::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(236, 208, 149, 0.14), transparent 32%);
}

.feature-list > * {
  position: relative;
  z-index: 1;
}

.feature-list strong {
  color: var(--ivory);
}

.feature-list span,
.feature-list .eyebrow {
  color: rgba(255, 247, 231, 0.72);
}

.muted-section {
  background:
    linear-gradient(180deg, #f3ead9 0%, #fff8ed 54%, #f7ecdc 100%);
}

.section-head {
  max-width: 850px;
}

.section-head h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.model-grid {
  gap: clamp(16px, 2.4vw, 28px);
}

.model-card {
  min-height: 390px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(249, 236, 211, 0.94));
  box-shadow: 0 28px 70px rgba(33, 22, 11, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 153, 67, 0.5);
  box-shadow: 0 34px 86px rgba(33, 22, 11, 0.18);
}

.model-card h3 {
  font-size: 1.35rem;
}

.model-number {
  color: rgba(200, 153, 67, 0.13);
  font-size: clamp(6rem, 11vw, 8.4rem);
}

.steps-section {
  background:
    linear-gradient(180deg, #fff9ef, #f2e7d5);
}

.steps {
  gap: clamp(16px, 2.4vw, 28px);
}

.steps article {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border-color: rgba(120, 86, 40, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.95), rgba(250, 240, 222, 0.92));
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--forest), var(--rose));
}

.steps span {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #fff0bd, #d5a44b);
  box-shadow: 0 12px 26px rgba(200, 153, 67, 0.24);
}

.luxury-contact-section {
  background:
    linear-gradient(180deg, #fff8ec 0%, #f3e7d5 100%);
}

.product-layout,
.auth-layout,
.admin-detail,
.contact-grid {
  gap: clamp(28px, 5vw, 76px);
}

@media (max-width: 900px) {
  .hero-content {
    padding-left: 18px;
  }

  .feature-list {
    background-size: cover, 140px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-logo {
    width: min(245px, 72vw);
    height: 54px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a,
  .logout-form button {
    min-height: 34px;
    padding: 7px 9px;
  }

  .hero {
    min-height: 70svh;
  }

  .hero-content {
    padding-left: 14px;
  }

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

  .hero-proof span {
    width: 100%;
  }

  .editorial-copy h2,
  .section-head h2 {
    font-size: clamp(2.3rem, 11vw, 3.35rem);
  }
}

:root {
  --font-body: "Alegreya Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Infant", Georgia, "Times New Roman", serif;
  --font-accent: "Cormorant Infant", Georgia, "Times New Roman", serif;
  --paper: #f6eddd;
  --surface: #fff9ed;
  --ivory: #fff6e5;
  --gold: #c69a48;
  --gold-soft: #efd89d;
  --forest: #17463f;
  --moss: #68795b;
  --rose: #8b5a50;
}

body {
  color: #1b140d;
  background:
    linear-gradient(90deg, rgba(26, 70, 63, 0.05), transparent 18%, rgba(198, 154, 72, 0.06) 50%, transparent 82%, rgba(139, 90, 80, 0.04)),
    repeating-linear-gradient(90deg, rgba(91, 65, 31, 0.04) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, #fff8eb 0%, #f4ead9 42%, #fff6e7 72%, #efe1cb 100%);
  font-size: 1.05rem;
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(92, 70, 43, 0.025) 0 1px, transparent 1px 96px);
}

.hero h1,
.page-hero h1,
h2,
.section-head h2,
.summary-box h2,
.luxury-contact-card h2,
.auth-visual h1,
.auth-card h1 {
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3.4rem, 7.8vw, 7.6rem);
}

.hero p,
.page-hero p {
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

.editorial-copy h2,
.section-head h2 {
  font-weight: 600;
}

.editorial-copy p:not(.eyebrow),
.section-head p,
.model-card p,
.steps p,
.contact-process p,
.luxury-contact-card p {
  font-family: var(--font-body);
}

.eyebrow,
.topline,
.site-nav a,
.logout-form button,
.button,
.model-card-head span,
.product-badges span,
th {
  font-family: var(--font-body);
  font-weight: 700;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.98), rgba(246, 233, 211, 0.93));
  box-shadow: 0 18px 46px rgba(58, 37, 18, 0.09);
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.94), rgba(242, 230, 211, 0.94));
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(240, 228, 207, 0.92), rgba(255, 248, 236, 0.96) 48%, rgba(240, 225, 202, 0.9));
}

.steps-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(236, 222, 198, 0.95));
}

.feature-list {
  background:
    linear-gradient(135deg, rgba(22, 16, 11, 0.96), rgba(18, 70, 63, 0.9)),
    url("/assets/logo-ledcerceve-icon.png");
}

.section.trust-section {
  background:
    linear-gradient(90deg, #120d08 0%, #2f2416 32%, #17463f 70%, #0d2b27 100%),
    repeating-linear-gradient(90deg, rgba(255, 246, 229, 0.04) 0 1px, transparent 1px 118px);
  border-top-color: rgba(198, 154, 72, 0.28);
}

.section.trust-section .trust-grid div {
  border-color: rgba(239, 216, 157, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.11), rgba(255, 246, 229, 0.045));
}

.section.trust-section .trust-grid strong {
  color: #fff4dc;
  font-weight: 600;
}

.section.trust-section .trust-grid span {
  color: rgba(255, 244, 220, 0.78);
}

.site-footer {
  background:
    linear-gradient(90deg, #fff3db 0%, #ead5aa 42%, #17463f 100%);
  color: #20150b;
  border-top: 1px solid rgba(198, 154, 72, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.site-footer strong {
  color: #20150b;
  font-weight: 600;
}

.site-footer p {
  color: rgba(32, 21, 11, 0.74);
  font-weight: 500;
}

.footer-links a {
  color: #fff5df;
  border-color: rgba(255, 246, 229, 0.26);
  background: rgba(18, 13, 8, 0.28);
  box-shadow: 0 12px 24px rgba(18, 13, 8, 0.12);
}

.footer-links a:hover {
  color: #1a1108;
  border-color: rgba(255, 246, 229, 0.7);
  background: linear-gradient(135deg, #fff0bd, #d2a14a);
}

@media (max-width: 900px) {
  .site-footer {
    background:
      linear-gradient(180deg, #fff3db 0%, #ead5aa 36%, #17463f 100%);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 1rem;
  }

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

.faq-hero {
  background-image:
    linear-gradient(90deg, rgba(15, 11, 8, 0.94), rgba(22, 15, 10, 0.7) 48%, rgba(23, 70, 63, 0.22)),
    url("/assets/led-ahsap-cerceve.png");
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(239, 216, 157, 0.2), transparent 24rem),
    linear-gradient(180deg, #fff7e9 0%, #f2e5d0 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(85, 61, 31, 0.04) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
}

.faq-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.faq-panel {
  position: sticky;
  top: 118px;
  overflow: hidden;
  border: 1px solid rgba(239, 216, 157, 0.24);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(18, 12, 8, 0.96), rgba(23, 70, 63, 0.9)),
    url("/assets/logo-ledcerceve-icon.png");
  background-repeat: no-repeat;
  background-size: cover, 170px;
  background-position: center, right -18px bottom -20px;
  box-shadow: 0 28px 76px rgba(25, 16, 8, 0.18);
}

.faq-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--forest), var(--rose));
}

.faq-panel > * {
  position: relative;
}

.faq-panel h2 {
  margin-bottom: 16px;
  color: var(--ivory);
  font-size: clamp(2.15rem, 3.8vw, 3.6rem);
  line-height: 0.96;
}

.faq-panel p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(255, 246, 229, 0.76);
  line-height: 1.7;
}

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

.faq-list {
  gap: 14px;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(249, 237, 216, 0.94));
  box-shadow: 0 18px 46px rgba(37, 24, 10, 0.08);
}

.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(198, 154, 72, 0.8), rgba(23, 70, 63, 0.75), rgba(139, 90, 80, 0.6));
  opacity: 0;
  transition: opacity 180ms ease;
}

.faq-list details[open]::before {
  opacity: 1;
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 20px 24px;
  color: #25180d;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.78rem);
  font-weight: 600;
  line-height: 1.12;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(198, 154, 72, 0.3);
  border-radius: 50%;
  color: #5f421b;
  background: linear-gradient(135deg, #fff2bf, #e0bc68);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
}

.faq-list details[open] summary {
  padding-bottom: 12px;
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px 80px;
  color: #69594b;
  font-size: 1.08rem;
  line-height: 1.68;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  .faq-list summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
  }
}

.product-hero {
  min-height: 430px;
  background-image:
    linear-gradient(90deg, rgba(15, 11, 8, 0.95), rgba(23, 16, 10, 0.72) 48%, rgba(23, 70, 63, 0.2)),
    url("/assets/led-ahsap-cerceve.png");
}

.product-hero h1 {
  max-width: 920px;
}

.product-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(198, 154, 72, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff7e9 0%, #f2e3cb 100%);
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(85, 61, 31, 0.04) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
}

.product-section .product-layout {
  position: relative;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.86fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.product-section .product-media {
  position: sticky;
  top: 116px;
  overflow: hidden;
  border: 1px solid rgba(239, 216, 157, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 12, 8, 0.98), rgba(23, 70, 63, 0.9));
  box-shadow: 0 34px 90px rgba(30, 18, 8, 0.2);
}

.product-section .product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(15, 10, 7, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 246, 229, 0.04) 0 1px, transparent 1px 96px);
  z-index: 1;
}

.product-section .product-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(239, 216, 157, 0.18);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

.product-section .product-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  transform: scale(1.02);
}

.product-section .media-note,
.product-section .product-badges {
  position: relative;
  z-index: 3;
}

.product-section .media-note {
  margin-top: -104px;
  padding: 0 28px 14px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 600;
  line-height: 1.04;
}

.product-section .product-badges {
  padding: 0 28px 28px;
  gap: 10px;
}

.product-section .product-badges span {
  border-color: rgba(239, 216, 157, 0.34);
  color: rgba(255, 246, 229, 0.9);
  background: rgba(255, 246, 229, 0.08);
  backdrop-filter: blur(10px);
}

.product-detail-copy {
  position: relative;
  z-index: 3;
  margin: 4px 28px 18px;
  border: 1px solid rgba(239, 216, 157, 0.2);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 26px);
  background: linear-gradient(180deg, rgba(255, 246, 226, 0.12), rgba(20, 14, 9, 0.34));
  color: #fff6df;
  backdrop-filter: blur(12px);
}

.product-detail-copy h2 {
  color: #fff6df;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.product-detail-copy p:not(.eyebrow) {
  color: rgba(255, 246, 229, 0.76);
  line-height: 1.7;
}

.product-detail-copy dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.product-detail-copy dl div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(239, 216, 157, 0.16);
}

.product-detail-copy dt {
  color: rgba(255, 246, 229, 0.64);
  font-weight: 900;
}

.product-detail-copy dd {
  margin: 0;
  color: #fff6df;
  font-weight: 800;
}

.product-detail-gallery {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 28px 28px;
}

.product-detail-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin: 0;
  border: 1px solid rgba(239, 216, 157, 0.2);
  border-radius: 8px;
  background: #1a120b;
}

.product-detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.product-detail-gallery figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  color: #fff6df;
  font-size: 0.82rem;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.product-section .order-panel {
  position: relative;
  scroll-margin-top: 120px;
  overflow: hidden;
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 3.4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(248, 235, 211, 0.95));
  box-shadow: 0 30px 80px rgba(37, 24, 10, 0.12);
}

.product-section .order-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--forest), var(--rose));
}

.product-section .order-panel h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.product-section .order-panel > p:not(.eyebrow) {
  max-width: 520px;
  color: #6d5a48;
  font-size: 1.08rem;
  line-height: 1.62;
}

.product-section .variant-options {
  gap: 14px;
  margin: 24px 0 16px;
}

.product-section .option-card {
  position: relative;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  border-color: rgba(111, 78, 35, 0.15);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(250, 238, 217, 0.88));
  box-shadow: 0 14px 34px rgba(37, 24, 10, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-section .option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 154, 72, 0.42);
  box-shadow: 0 20px 44px rgba(37, 24, 10, 0.1);
}

.product-section .option-card.selected {
  border-color: rgba(23, 70, 63, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 246, 229, 0.98), rgba(232, 241, 231, 0.92));
}

.product-section .option-card.selected::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--forest));
}

.product-section .option-card input {
  accent-color: var(--gold);
}

.product-section .option-card strong {
  color: #25180d;
  font-size: 1.08rem;
}

.product-section .option-card small {
  margin-top: 4px;
  color: #756656;
}

.product-section .option-card b {
  color: #25180d;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.product-section .option-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(184, 138, 61, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #3b2b1e;
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.product-section .option-card.selected .option-action {
  border-color: rgba(30, 91, 84, 0.35);
  color: #fffaf0;
  background: linear-gradient(135deg, #1e5b54, #2d766d);
}

.product-section .selected-summary {
  position: relative;
  margin: 0 0 24px;
  border-color: rgba(23, 70, 63, 0.22);
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(23, 70, 63, 0.1), rgba(239, 216, 157, 0.2));
}

.product-section .selected-summary span {
  font-weight: 800;
}

.product-section .selected-summary strong {
  color: #1f160d;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.product-section .selected-summary b {
  color: #17463f;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.product-section .form-grid {
  gap: 16px;
}

.product-section input,
.product-section textarea,
.product-section select {
  border-color: rgba(111, 78, 35, 0.18);
  background: rgba(255, 250, 240, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.product-section input:focus,
.product-section textarea:focus,
.product-section select:focus {
  border-color: rgba(198, 154, 72, 0.55);
  box-shadow: 0 0 0 4px rgba(198, 154, 72, 0.14);
}

.product-section .order-lock {
  border-color: rgba(198, 154, 72, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(240, 229, 209, 0.9));
}

@media (max-width: 900px) {
  .product-section .product-layout {
    grid-template-columns: 1fr;
  }

  .product-section .product-media {
    position: relative;
    top: auto;
  }

  .product-section .product-media img {
    aspect-ratio: 4 / 3;
  }

  .product-detail-copy dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 620px) {
  .product-hero {
    min-height: 340px;
  }

  .product-section .media-note {
    margin-top: -86px;
    padding-inline: 22px;
    font-size: 1.42rem;
  }

  .product-section .product-badges {
    padding-inline: 22px;
  }

  .product-detail-copy {
    margin-inline: 22px;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
    margin-inline: 22px;
  }

  .product-section .option-card {
    grid-template-columns: auto 1fr;
  }

  .product-section .option-card b {
    grid-column: 2;
  }

  .product-section .option-action {
    grid-column: 2;
    justify-self: start;
  }
}

.tracking-hero {
  background-image:
    linear-gradient(90deg, rgba(15, 11, 8, 0.95), rgba(23, 16, 10, 0.72) 48%, rgba(23, 70, 63, 0.2)),
    url("/assets/led-ahsap-cerceve.png");
}

.tracking-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(239, 216, 157, 0.22), transparent 24rem),
    linear-gradient(180deg, #fff7e9 0%, #f2e3cb 100%);
}

.tracking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(85, 61, 31, 0.04) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
}

.tracking-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
}

.tracking-card,
.tracking-steps {
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(248, 235, 211, 0.95));
  box-shadow: 0 30px 80px rgba(37, 24, 10, 0.12);
}

.tracking-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
}

.tracking-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--forest), var(--rose));
}

.tracking-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.96;
}

.tracking-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 22px;
}

.tracking-form label {
  display: grid;
  gap: 8px;
  color: #2a1b0f;
  font-weight: 800;
}

.tracking-note {
  margin: 18px 0 0;
  color: #6b5b4a;
  line-height: 1.62;
}

.tracking-steps {
  display: grid;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 12, 8, 0.96), rgba(23, 70, 63, 0.9));
}

.tracking-steps div {
  padding: 26px;
  border-bottom: 1px solid rgba(239, 216, 157, 0.16);
}

.tracking-steps div:last-child {
  border-bottom: 0;
}

.tracking-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #2a1b0f;
  background: linear-gradient(135deg, #fff2bf, #d6a44d);
  font-weight: 800;
}

.tracking-steps strong {
  display: block;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.tracking-steps p {
  margin: 8px 0 0;
  color: rgba(255, 246, 229, 0.72);
  line-height: 1.54;
}

.tracking-result {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.84);
}

.tracking-result.success {
  border-color: rgba(30, 91, 84, 0.28);
}

.tracking-result.error {
  border-color: rgba(164, 63, 63, 0.24);
}

.tracking-result h3 {
  margin: 0;
  color: #25180d;
}

.tracking-result dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.tracking-result dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
}

.tracking-result dt {
  color: #756656;
  font-weight: 900;
}

.tracking-result dd {
  margin: 0;
}

.product-list-hero {
  background:
    linear-gradient(105deg, rgba(18, 12, 8, 0.94), rgba(31, 21, 13, 0.78) 48%, rgba(23, 70, 63, 0.38)),
    url("/assets/led-ahsap-cerceve.png") center 42% / cover;
  color: var(--surface);
}

.product-list-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.08), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 246, 229, 0.06) 0 1px, transparent 1px 128px);
}

.product-list-hero .eyebrow,
.product-list-hero p {
  color: rgba(255, 248, 235, 0.78);
}

.product-list-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-list-proof span {
  border: 1px solid rgba(255, 246, 229, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff6df;
  background: rgba(18, 12, 8, 0.32);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-list-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 2%, rgba(198, 154, 72, 0.22), transparent 25rem),
    radial-gradient(circle at 88% 14%, rgba(23, 70, 63, 0.14), transparent 28rem),
    linear-gradient(180deg, #fffaf0 0%, #f5e8cf 48%, #efe0c4 100%);
}

.product-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(111, 78, 35, 0.035) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 26%);
}

.product-list-section .inner {
  position: relative;
}

.product-list-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(18px, 4vw, 58px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.product-list-intro h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.95;
}

.product-list-intro > p {
  margin: 0;
  color: #665746;
  font-size: 1.08rem;
  line-height: 1.72;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 238, 219, 0.96));
  box-shadow: 0 28px 80px rgba(37, 24, 10, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-card:hover {
  border-color: rgba(198, 154, 72, 0.38);
  box-shadow: 0 34px 92px rgba(37, 24, 10, 0.18);
  transform: translateY(-3px);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.12 / 1;
  background: #181512;
  overflow: hidden;
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 8, 0.1), transparent 44%, rgba(18, 12, 8, 0.74)),
    linear-gradient(90deg, rgba(18, 12, 8, 0.28), transparent 46%);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.product-card-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 246, 229, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff8e8;
  background: rgba(24, 21, 18, 0.66);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 950;
}

.product-card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 246, 229, 0.36);
  border-radius: 50%;
  color: #fff6df;
  background: rgba(18, 12, 8, 0.48);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.product-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

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

.product-card-topline .eyebrow {
  margin: 0;
}

.product-card-topline > span {
  flex: 0 0 auto;
  border: 1px solid rgba(198, 154, 72, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: #17463f;
  background: rgba(255, 249, 237, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
}

.product-card-body h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 0.98;
}

.product-card-body p:not(.eyebrow) {
  margin: 0;
  color: #5f5348;
  line-height: 1.7;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-specs span {
  border: 1px solid rgba(111, 78, 35, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  color: #705c45;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-model-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.product-model-list a,
.product-model-list.empty span {
  display: grid;
  gap: 3px;
  min-height: 56px;
  border: 1px solid rgba(184, 138, 61, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  color: #2d2118;
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.94), rgba(246, 234, 211, 0.82));
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(37, 24, 10, 0.07);
}

.product-model-list a:hover {
  border-color: rgba(30, 91, 84, 0.42);
  background: #ffffff;
  transform: translateY(-1px);
}

.product-model-list strong {
  font-size: 0.9rem;
  font-weight: 950;
}

.product-model-list span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-model-list.empty span {
  color: #756656;
  background: rgba(255, 255, 255, 0.58);
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.product-card-actions .button {
  min-height: 46px;
}

@media (max-width: 900px) {
  .tracking-layout {
    grid-template-columns: 1fr;
  }

  .product-list-hero {
    background-position: center;
  }

  .product-list-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-card-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .tracking-form {
    grid-template-columns: 1fr;
  }

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

  .product-card-media {
    aspect-ratio: 1 / 0.82;
  }

  .product-card-actions .button {
    width: 100%;
  }
}

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

.admin-users-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(30, 91, 84, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #f4ead9 100%);
}

.admin-stats-section {
  padding-bottom: 0;
}

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

.stat-card {
  border: 1px solid rgba(111, 78, 35, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 26px);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(248, 238, 219, 0.9));
  box-shadow: var(--shadow-soft);
}

.stat-card span {
  display: block;
  color: #756656;
  font-size: 0.84rem;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  color: #25180d;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.history-box,
.settings-form {
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.history-box ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.history-box li {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 14px;
}

.history-box li span {
  color: var(--muted);
}

.checkbox-line {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
}

.checkbox-line input {
  width: auto;
}

.settings-form {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.bank-transfer-box {
  margin-top: 22px;
  border: 1px solid rgba(198, 154, 72, 0.28);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 252, 244, 0.98), rgba(245, 228, 193, 0.93));
  box-shadow: 0 22px 54px rgba(37, 24, 10, 0.12);
}

.bank-transfer-box h2 {
  margin-bottom: 16px;
  color: #25180d;
}

.bank-transfer-box dl {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.bank-transfer-box dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(111, 78, 35, 0.14);
}

.bank-transfer-box dt {
  color: #7a6449;
  font-weight: 900;
}

.bank-transfer-box dd {
  margin: 0;
  color: #25180d;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.bank-transfer-box .iban {
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
}

.receipt-upload-box,
.receipt-inline-form {
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  padding: clamp(18px, 2.6vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 238, 219, 0.94));
  box-shadow: var(--shadow-soft);
}

.receipt-upload-box {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.receipt-upload-box h2 {
  margin-bottom: 0;
}

.receipt-upload-box p:not(.eyebrow) {
  margin: 0;
  color: #665746;
}

.receipt-upload-box label,
.receipt-inline-form label {
  display: grid;
  gap: 7px;
  color: #25180d;
  font-weight: 900;
}

.receipt-inline-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
  padding: 16px;
}

.payment-status {
  border-color: rgba(30, 91, 84, 0.26);
  background: rgba(30, 91, 84, 0.08);
}

.admin-products-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(239, 216, 157, 0.2), transparent 24rem),
    linear-gradient(180deg, #fff7e9 0%, #f2e3cb 100%);
}

.admin-products-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.product-admin-create,
.product-admin-form {
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(248, 235, 211, 0.95));
  box-shadow: 0 24px 64px rgba(37, 24, 10, 0.1);
}

.product-admin-create {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.product-admin-create h2 {
  margin-bottom: 4px;
}

.product-admin-list {
  display: grid;
  gap: 18px;
}

.product-admin-form {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  overflow: hidden;
}

.product-admin-preview {
  min-height: 280px;
  background: #15110d;
}

.product-admin-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-admin-fields {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.product-admin-edit-form {
  display: grid;
  gap: 14px;
}

.product-admin-fields h3 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.product-admin-create label,
.product-admin-fields label {
  display: grid;
  gap: 7px;
  color: #25180d;
  font-weight: 800;
}

.product-admin-create small,
.product-admin-fields small {
  color: #756656;
  font-weight: 500;
}

.product-image-admin-list {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(111, 78, 35, 0.12);
  margin-top: 8px;
  padding-top: 18px;
}

.product-image-admin-list h4 {
  margin: 0;
  color: #25180d;
  font-size: 1.05rem;
}

.product-image-admin-form {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(111, 78, 35, 0.14);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.72);
}

.product-image-admin-form img {
  width: 100%;
  height: 130px;
  border-radius: 6px;
  object-fit: cover;
}

.product-image-admin-form > div {
  display: grid;
  gap: 10px;
}

.product-image-admin-form h4 {
  margin: 0;
}

.product-image-create {
  margin-top: 18px;
}

.gallery-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(30, 91, 84, 0.14), transparent 25rem),
    linear-gradient(180deg, #fff9ed 0%, #f3e1be 100%);
}

.home-products-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(198, 154, 72, 0.18), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #f4e5cb 100%);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
}

.home-product-card {
  overflow: hidden;
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 237, 216, 0.94));
  box-shadow: 0 24px 64px rgba(37, 24, 10, 0.12);
}

.home-product-card > a {
  position: relative;
  display: block;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: #1a120b;
}

.home-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.home-product-card:hover img {
  transform: scale(1.04);
}

.home-product-card > a span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 246, 229, 0.34);
  border-radius: 999px;
  padding: 8px 11px;
  color: #fff6df;
  background: rgba(18, 12, 8, 0.58);
  font-size: 0.8rem;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.home-product-card > div {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
}

.home-product-card h3 {
  margin: 0;
  color: #25180d;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.home-product-card p:not(.eyebrow) {
  margin: 0;
  color: #665746;
  line-height: 1.62;
}

.home-product-card strong {
  color: #17463f;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 36px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 30vw, 420px);
  border: 1px solid rgba(111, 78, 35, 0.16);
  border-radius: 8px;
  background: #1a120b;
  box-shadow: 0 28px 70px rgba(37, 24, 10, 0.14);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(17, 11, 6, 0.78));
}

.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff6df;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}

@media (max-width: 900px) {
  .admin-actions {
    justify-content: flex-start;
  }

  .admin-products-layout,
  .product-admin-form {
    grid-template-columns: 1fr;
  }

  .receipt-inline-form,
  .product-image-admin-form {
    grid-template-columns: 1fr;
  }

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

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

  .product-admin-create {
    position: relative;
    top: auto;
  }

  .product-admin-preview {
    min-height: 220px;
  }

  .bank-transfer-box dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 620px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
