:root {
  color-scheme: light;
  --ink: #202124;
  --muted: #69635e;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #ddd6ca;
  --accent: #946221;
  --accent-dark: #6d4718;
  --sage: #7b8a68;
  --blue: #37566f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.construction-banner {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  min-height: 112px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-bottom: 5px solid #202124;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.13) 0,
      rgba(255, 255, 255, 0.13) 12px,
      transparent 12px,
      transparent 24px
    ),
    #f2b544;
  color: #202124;
  text-align: center;
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.2);
}

.construction-banner__label {
  padding: 6px 10px;
  border-radius: 999px;
  background: #202124;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.construction-banner strong {
  font-size: clamp(25px, 4vw, 44px);
  line-height: 1.05;
}

.construction-banner > span:last-child {
  max-width: 320px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 72px clamp(18px, 6vw, 80px) 52px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 22, 20, 0.78), rgba(22, 22, 20, 0.24)),
    url("/backup/assets/www.layeredcreationsllc.com-category-e8e405_b891920b89fb489bbb6e097fbdf8debb-mv2.jpg-m6s72f.jpg?v=20260721-2") center/cover;
}

.hero-content {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 54px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.filters {
  max-width: 1180px;
  margin: 0 auto 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 9px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.filter.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.product h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin-top: auto;
  font-size: 19px;
  font-weight: 800;
}

.buy {
  width: 100%;
  margin-top: 4px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  padding: 11px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.buy:hover {
  background: var(--accent-dark);
}

.buy[disabled] {
  border-color: var(--line);
  background: #e6e0d7;
  color: #756f68;
  cursor: not-allowed;
}

.info-band {
  background: #283c36;
  color: #f7f0e7;
}

.info-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.info-grid h2,
.info-grid h3,
.policy h2 {
  margin-top: 0;
}

.info-grid p,
.policy p,
.policy li {
  line-height: 1.6;
}

.policy {
  max-width: 920px;
  margin: 0 auto;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.checkout-warning {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 14px 16px;
  border: 1px solid #d5b36c;
  border-radius: 8px;
  background: #fff5d9;
  color: #5c4213;
}

@media (max-width: 720px) {
  .construction-banner {
    flex-direction: column;
    min-height: 0;
  }

  .site-header,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 68vh;
  }
}
