﻿:root {
  --ink: #151515;
  --muted: #666666;
  --line: #e2ded8;
  --paper: #fafaf8;
  --soft: #f7f2ea;
  --accent: #a6192e;
  --accent-dark: #7d1221;
  --gold: #b99558;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(33, 28, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.lightbox-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(166, 25, 46, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(250, 250, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand img,
.site-footer img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

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

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.mobile-nav {
  display: none;
  position: sticky;
  top: 76px;
  z-index: 19;
  padding: 12px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: auto;
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  background: linear-gradient(120deg, #fafaf8 0%, #f7f2ea 58%, #efe6da 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 25, 46, 0.24), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 250, 248, 0.98) 0%, rgba(250, 250, 248, 0.94) 35%, rgba(250, 250, 248, 0.62) 62%, rgba(250, 250, 248, 0.18) 100%),
    linear-gradient(180deg, rgba(250, 250, 248, 0.2), rgba(247, 242, 234, 0.64));
}

.lace-strip {
  position: absolute;
  right: -170px;
  top: 10%;
  width: 38vw;
  min-width: 420px;
  height: 58vh;
  border: 1px solid rgba(161, 38, 47, 0.14);
  background:
    radial-gradient(circle at 18px 18px, rgba(161, 38, 47, 0.28) 0 4px, transparent 5px) 0 0 / 44px 44px,
    repeating-linear-gradient(135deg, rgba(23, 23, 23, 0.08) 0 2px, transparent 2px 18px);
  transform: rotate(-8deg);
}

.lace-strip-alt {
  right: 20vw;
  top: 40%;
  width: 28vw;
  min-width: 260px;
  height: 38vh;
  opacity: 0.42;
  transform: rotate(9deg);
}

.hero-collage {
  position: absolute;
  top: 22px;
  right: clamp(-20px, 3vw, 54px);
  width: min(760px, 56vw);
  height: calc(100% - 44px);
  opacity: 0.92;
}

.hero-collage img {
  position: absolute;
  display: block;
  width: clamp(120px, 13vw, 210px);
  height: clamp(92px, 10vw, 168px);
  object-fit: contain;
  padding: 12px;
  border: 1px solid rgba(226, 222, 216, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(33, 28, 22, 0.13);
}

.hero-collage img:nth-child(1) {
  top: 2%;
  left: 36%;
  transform: rotate(-5deg);
}

.hero-collage img:nth-child(2) {
  top: 8%;
  right: 2%;
  transform: rotate(4deg);
}

.hero-collage img:nth-child(3) {
  top: 26%;
  left: 18%;
  transform: rotate(5deg);
}

.hero-collage img:nth-child(4) {
  top: 31%;
  right: 16%;
  transform: rotate(-4deg);
}

.hero-collage img:nth-child(5) {
  top: 50%;
  left: 4%;
  transform: rotate(-7deg);
}

.hero-collage img:nth-child(6) {
  top: 54%;
  right: 2%;
  transform: rotate(6deg);
}

.hero-collage img:nth-child(7) {
  bottom: 4%;
  left: 24%;
  transform: rotate(3deg);
}

.hero-collage img:nth-child(8) {
  bottom: 12%;
  right: 24%;
  transform: rotate(-5deg);
}

.hero-collage img:nth-child(9) {
  top: 4%;
  left: 8%;
  transform: rotate(7deg);
}

.hero-collage img:nth-child(10) {
  bottom: 0;
  right: 6%;
  transform: rotate(2deg);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-content .eyebrow {
  margin-bottom: 16px;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.28;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-copy {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  border: 1px solid rgba(166, 25, 46, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span::before {
  content: "\2713";
  margin-right: 7px;
  color: var(--gold);
}

.hero-actions,
.admin-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-button,
.secondary-button,
.text-button {
  min-height: 44px;
  border: 1px solid transparent;
  padding: 12px 18px;
  cursor: pointer;
}

.primary-button {
  background: var(--accent);
  color: var(--white);
}

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

.secondary-button {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.text-button {
  background: transparent;
  color: var(--accent);
  padding-inline: 8px;
}

.featured-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-showcase {
  position: relative;
  min-height: 620px;
}

.hero-lifestyle-image {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: contain;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(33, 28, 22, 0.2);
  background: var(--white);
}

.hero-showcase-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(33, 28, 22, 0.14);
  backdrop-filter: blur(14px);
}

.hero-showcase-caption span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.hero-product-card {
  position: absolute;
  width: min(310px, 72%);
  grid-template-columns: 72px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(33, 28, 22, 0.18);
  backdrop-filter: blur(16px);
}

.hero-product-card > span {
  grid-column: 2;
}

.hero-product-card-one {
  top: 46px;
  left: -18px;
}

.hero-product-card-two {
  right: -16px;
  bottom: 112px;
}

.featured-heading,
.featured-card {
  position: relative;
}

.featured-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
}

.featured-heading span,
.featured-card p,
.featured-card span,
.site-footer span,
.form-note {
  color: var(--muted);
  font-size: 13px;
}

.featured-heading strong {
  color: var(--accent);
  font-size: 13px;
}

.featured-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(33, 28, 22, 0.08);
}

.featured-card-offset {
  margin-left: 28px;
}

.featured-card h3,
.featured-card p {
  margin: 0;
}

.featured-card > strong {
  grid-column: 2;
  color: var(--ink);
  font-size: 15px;
}

.featured-card > span {
  grid-column: 2;
}

.mini-lace {
  grid-row: span 3;
  width: 76px;
  height: 92px;
  border-radius: 6px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background: #fbfaf8;
  object-fit: contain;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.trust-strip div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.06);
  overflow: hidden;
  animation: statRise 0.7s ease both;
}

.trust-strip div:nth-child(2) {
  animation-delay: 0.08s;
}

.trust-strip div:nth-child(3) {
  animation-delay: 0.16s;
}

.trust-strip div:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes statRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-strip div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}

.trust-strip strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.toolbar-section,
.about-section,
.inquiry-section,
.admin-section,
.why-section,
.application-section,
.about-brand-section,
.featured-products-section,
.factory-gallery-section,
.blog-section,
.process-section,
.faq-section {
  padding: 70px clamp(18px, 4vw, 56px) 24px;
}

.full-catalog {
  display: none;
}

body.catalog-open .hero,
body.catalog-open .trust-strip,
body.catalog-open .home-section,
body.catalog-open .why-section {
  display: none;
}

body.catalog-open .toolbar-section.full-catalog {
  display: block;
}

body.catalog-open .product-grid.full-catalog {
  display: grid;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.product-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 160px;
  gap: 14px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 13px;
}

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

textarea {
  resize: vertical;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px) 58px;
}

.product-grid.full-catalog {
  display: none;
}

.featured-product-grid {
  padding: 0;
  margin-top: 28px;
}

.featured-products-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

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

.category-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  min-height: 236px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  border-color: rgba(166, 25, 46, 0.38);
  box-shadow: 0 18px 38px rgba(33, 28, 22, 0.1);
  transform: translateY(-2px);
}

.category-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(166, 25, 46, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.category-card strong {
  font-size: 18px;
  line-height: 1.3;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.category-card small {
  justify-self: start;
  align-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(166, 25, 46, 0.22);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  background: rgba(166, 25, 46, 0.04);
}

.featured-subheading {
  margin-top: 0;
}

.featured-heading-with-categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
  gap: 24px;
}

.section-intro {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.section-mini-tags span {
  border: 1px solid rgba(166, 25, 46, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.featured-lace-collage {
  position: relative;
  width: min(440px, 54vw);
  height: 170px;
  margin-top: 34px;
  pointer-events: none;
}

.featured-lace-collage::before {
  content: "";
  position: absolute;
  inset: 20px 24px 8px 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(166, 25, 46, 0.08), rgba(166, 25, 46, 0));
}

.featured-lace-collage img {
  position: absolute;
  display: block;
  width: 150px;
  height: 108px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(226, 222, 216, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(33, 28, 22, 0.1);
}

.featured-lace-collage img:nth-child(1) {
  left: 0;
  top: 28px;
  transform: rotate(-5deg);
}

.featured-lace-collage img:nth-child(2) {
  left: 112px;
  top: 8px;
  transform: rotate(4deg);
}

.featured-lace-collage img:nth-child(3) {
  left: 220px;
  top: 44px;
  transform: rotate(-3deg);
}

.featured-lace-collage img:nth-child(4) {
  left: 80px;
  top: 82px;
  transform: rotate(6deg);
}

.category-entry-panel {
  align-self: start;
  margin-top: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.07);
}

.category-entry-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.category-entry-heading .eyebrow {
  margin: 0;
}

.category-entry-heading strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

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

.category-entry-list .category-entry-card {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(33, 28, 22, 0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-entry-card span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-entry-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.category-entry-card small {
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.category-entry-list .category-entry-card:hover {
  border-color: rgba(166, 25, 46, 0.38);
  box-shadow: 0 18px 38px rgba(33, 28, 22, 0.1);
  color: var(--accent);
  transform: translateY(-3px);
}

.category-entry-card:focus-visible {
  outline: 3px solid rgba(166, 25, 46, 0.35);
  outline-offset: 3px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.05);
  color: var(--muted);
}

.product-card {
  display: grid;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(33, 28, 22, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  border-color: rgba(166, 25, 46, 0.28);
  box-shadow: 0 18px 38px rgba(33, 28, 22, 0.1);
  transform: translateY(-3px);
}

.product-image {
  overflow: hidden;
  border: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: var(--soft);
  cursor: zoom-in;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  transition: transform 0.28s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-image:focus-visible {
  outline: 3px solid rgba(166, 25, 46, 0.35);
  outline-offset: -3px;
}

.product-image span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  background:
    radial-gradient(circle at 18px 18px, rgba(161, 38, 47, 0.28) 0 3px, transparent 4px) 0 0 / 38px 38px,
    repeating-linear-gradient(120deg, rgba(185, 149, 88, 0.28) 0 2px, transparent 2px 16px),
    #fff;
}

.product-body {
  padding: 16px;
}

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

.card-actions .edit-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

h3 {
  margin: 0;
  font-size: 19px;
}

.status-pill {
  flex: none;
  border: 1px solid var(--line);
  padding: 5px 8px;
  color: var(--muted);
  font-size: 12px;
}

.status-pill.hidden {
  color: var(--accent);
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

dt {
  color: var(--muted);
}

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

.why-section {
  background: var(--paper);
}

.about-brand-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  background: var(--paper);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 1px solid rgba(166, 25, 46, 0.18);
  border-radius: 8px;
}

.about-visual img {
  position: relative;
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.about-brand-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-brand-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.about-points span {
  position: relative;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(33, 28, 22, 0.05);
  color: var(--ink);
  font-weight: 700;
}

.about-points span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 18px 38px rgba(33, 28, 22, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.application-section {
  background: var(--soft);
}

.featured-products-section {
  background: var(--paper);
}

.application-grid article {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: end;
  padding: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.application-grid article span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.application-grid article:hover span {
  transform: scale(1.06);
}

.application-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.02), rgba(21, 21, 21, 0.62));
}

.application-dress span {
  background-image: url("assets/products/YG-5193.webp");
}

.application-veil span {
  background-image: url("assets/products/YG-4929.webp");
}

.application-gown span {
  background-image: url("assets/products/YG-5075.webp");
}

.application-decoration span {
  background-image: url("assets/products/YG-5102.webp");
}

.application-grid article strong {
  position: relative;
  z-index: 2;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.14);
}

.process-section {
  background: var(--paper);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.process-steps div {
  position: relative;
  min-height: 172px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(33, 28, 22, 0.05);
}

.process-steps div::after {
  content: "鈫?;
  position: absolute;
  top: 50%;
  right: -15px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 1;
}

.process-steps div:last-child::after {
  display: none;
}

.process-steps span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
}

.process-steps strong {
  font-size: 17px;
}

.process-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.factory-gallery-section {
  background: var(--soft);
}

.factory-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.factory-gallery article {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.06);
}

.factory-gallery article:first-child {
  grid-row: span 2;
  min-height: 496px;
}

.factory-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.factory-gallery strong {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.14);
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.05);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-section {
  background: var(--paper);
}

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

.blog-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(33, 28, 22, 0.1);
}

.blog-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-grid a {
  align-self: end;
  color: var(--accent);
  font-weight: 700;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  background: var(--ink);
  color: var(--white);
}

.about-copy p {
  margin: 0;
  color: #e2ddd6;
  font-size: 17px;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px;
}

.stats strong {
  display: block;
  font-size: 28px;
}

.stats span {
  color: #c9c0b6;
  font-size: 13px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(33, 28, 22, 0.06);
}

.wide,
.form-note,
.inquiry-actions {
  grid-column: 1 / -1;
}

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

.inquiry-form input[type="file"] {
  padding: 9px 12px;
}

.order-confirmation {
  margin-top: 22px;
  padding: 28px;
  background: linear-gradient(135deg, var(--white), var(--soft));
  border: 1px solid rgba(166, 25, 46, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(33, 28, 22, 0.08);
}

.order-confirmation h2 {
  margin-bottom: 10px;
}

.order-confirmation > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.confirmation-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.confirmation-grid span {
  color: var(--muted);
  font-size: 13px;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 2px;
  min-width: 188px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #1fbd5a;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(20, 94, 49, 0.26);
}

.sticky-whatsapp span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.86;
}

.sticky-whatsapp strong {
  font-size: 14px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.admin-form,
.admin-list {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.admin-form {
  align-self: start;
  display: grid;
  gap: 14px;
}

.admin-list {
  display: grid;
  gap: 8px;
  max-height: 560px;
  overflow: auto;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.admin-row strong,
.admin-row span {
  display: block;
}

.admin-row span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 56px clamp(18px, 4vw, 56px);
  background: #151515;
  color: var(--white);
  border-top: 4px solid var(--accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.2fr;
  gap: 24px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.footer-columns h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 15px;
}

.footer-columns a,
.footer-columns span,
.footer-cta p {
  color: #cfc9c1;
  font-size: 14px;
}

.footer-columns a:hover {
  color: var(--white);
}

.footer-cta p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.social-links {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
  margin-bottom: 6px;
}

.social-links a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(1040px, 94vw);
  max-width: min(1040px, 94vw);
  min-height: 120px;
}

.lightbox-content img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 1040px);
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.lightbox-content p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.72);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: auto;
  padding: 28px;
  background: rgba(21, 21, 21, 0.72);
}

.product-detail-modal[hidden] {
  display: none;
}

.product-detail-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 91;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.72);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.product-detail-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 28px auto;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.detail-gallery,
.detail-info {
  min-width: 0;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: zoom-in;
  box-shadow: 0 14px 34px rgba(33, 28, 22, 0.06);
}

.detail-main-image img,
.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.detail-thumbs button {
  aspect-ratio: 1;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.detail-info {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 4px;
}

.detail-info h2 {
  font-size: clamp(30px, 4vw, 48px);
}

#detailDescription {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-specs {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.05);
}

.detail-specs div {
  align-items: start;
}

.detail-specs dt {
  font-size: 13px;
}

.detail-specs dd {
  max-width: 62%;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  border: 1px solid rgba(166, 25, 46, 0.18);
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--white);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-actions .primary-button,
.detail-actions .secondary-button {
  min-width: 160px;
  justify-content: center;
  text-align: center;
}

.detail-faq,
.related-products {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-faq h3,
.related-products h3 {
  margin: 0 0 10px;
}

.detail-faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.related-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-products h3 {
  flex-basis: 100%;
}

.related-products button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--soft);
  cursor: pointer;
}

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

  .hero-product-card-one,
  .hero-product-card-two {
    left: auto;
    right: 18px;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .icon-button {
    display: inline-grid;
    place-items: center;
  }

  .hero,
  .about-brand-section,
  .about-section,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-collage {
    right: -120px;
    width: 620px;
    opacity: 0.28;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(250, 250, 248, 0.98), rgba(250, 250, 248, 0.88));
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-lifestyle-image {
    height: 520px;
  }

  .hero-product-card {
    width: min(320px, calc(100% - 34px));
  }

  .about-visual img {
    min-height: 340px;
  }

  .featured-heading-with-categories {
    grid-template-columns: 1fr;
  }

  .featured-panel {
    margin-top: 34px;
  }

  .product-tools,
  .inquiry-form,
  .confirmation-grid,
  .product-detail-content {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .feature-grid,
  .category-grid,
  .application-grid,
  .process-steps,
  .factory-gallery,
  .faq-list,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-gallery article:first-child {
    grid-row: auto;
    min-height: 260px;
  }

  .process-steps div::after {
    display: none;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .mobile-nav {
    top: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .hero {
    padding-top: 42px;
  }

  .hero-collage {
    right: -180px;
    width: 540px;
    opacity: 0.18;
  }

  .hero-lifestyle-image {
    height: 420px;
  }

  .hero-showcase-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-product-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
  }

  .hero-tags span {
    width: 100%;
    text-align: center;
  }

  .featured-card,
  .featured-card-offset {
    margin-left: 0;
  }

  .category-entry-panel {
    padding: 16px;
  }

  .category-entry-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .product-detail-modal {
    padding: 12px;
  }

  .product-detail-content {
    margin: 44px auto 12px;
    padding: 16px;
  }

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

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 164px;
    padding: 11px 13px;
  }

  .trust-strip,
  .feature-grid,
  .category-grid,
  .application-grid,
  .about-points,
  .process-steps,
  .factory-gallery,
  .faq-list,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .application-grid article,
  .factory-gallery article,
  .factory-gallery article:first-child {
    min-height: 260px;
  }

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

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

/* Homepage restored to the original simpler visual direction. */
.hero::after {
  display: none;
}

.hero-tags span::before,
.about-points span::before {
  content: none;
  display: none;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: #e6e0d8;
}

.trust-strip div {
  gap: 4px;
  padding: 24px 20px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.trust-strip div::before {
  display: none;
}

.about-brand-section {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: initial;
}

.about-brand-copy {
  gap: 24px;
}

.feature-card {
  transition: none;
}

.feature-card:hover {
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.06);
  transform: none;
}

.application-grid article {
  min-height: 160px;
}

.application-grid article span {
  inset: 14px;
  border: 1px solid rgba(166, 25, 46, 0.12);
  background:
    radial-gradient(circle at 18px 18px, rgba(166, 25, 46, 0.2) 0 3px, transparent 4px) 0 0 / 36px 36px,
    repeating-linear-gradient(135deg, rgba(21, 21, 21, 0.06) 0 2px, transparent 2px 16px);
  opacity: 0.72;
  transform: none;
}

.application-grid article:hover span {
  transform: none;
}

.application-grid article::after {
  display: none;
}

.application-grid article strong {
  z-index: 1;
  padding: 8px 10px;
  background: rgba(250, 250, 248, 0.86);
  border-radius: 6px;
  box-shadow: none;
}

.process-steps {
  gap: 12px;
}

.process-steps div {
  min-height: 120px;
}

.process-steps div::after {
  display: none;
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(33, 28, 22, 0.04);
}

.site-footer {
  padding: 44px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: none;
}

@media (max-width: 820px) {
  .trust-strip,
  .feature-grid,
  .category-grid,
  .application-grid,
  .process-steps,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .trust-strip,
  .feature-grid,
  .category-grid,
  .application-grid,
  .about-points,
  .process-steps,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .category-entry-list .category-entry-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
.trust-strip div,
.feature-card,
.product-card,
.blog-grid article {
  animation: softFadeUp 0.55s ease both;
}

/* Sprint 5: brand trust refinements */
.hero-content {
  padding-block: 12px;
}

.hero-content .eyebrow {
  margin-bottom: 18px;
}

.hero-subtitle {
  margin-top: 24px;
  line-height: 1.34;
}

.hero-copy {
  margin-top: 18px;
  line-height: 1.78;
}

.hero-tags {
  gap: 12px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(33, 28, 22, 0.05);
}

.hero-tags span::before {
  content: "\2713";
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.text-button {
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.primary-button {
  box-shadow: 0 12px 26px rgba(166, 25, 46, 0.2);
}

.primary-button:hover {
  box-shadow: 0 16px 34px rgba(166, 25, 46, 0.28);
  transform: translateY(-2px);
}

.secondary-button {
  box-shadow: 0 10px 24px rgba(33, 28, 22, 0.06);
}

.secondary-button:hover {
  color: var(--accent);
  border-color: rgba(166, 25, 46, 0.28);
  box-shadow: 0 14px 30px rgba(33, 28, 22, 0.1);
  transform: translateY(-2px);
}

.trust-strip {
  padding-block: 42px;
}

.trust-strip div {
  gap: 8px;
  padding: 28px 24px;
}

.trust-strip span {
  line-height: 1.45;
}

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

.brand-story-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.06);
}

.brand-story-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.brand-story-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-card {
  min-height: 238px;
  padding: 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  letter-spacing: 0.04em;
}

.feature-card p {
  margin-top: 14px;
  line-height: 1.72;
}

.site-footer {
  gap: 34px;
  padding-block: 62px;
}

.footer-columns {
  grid-template-columns: 0.9fr 1fr 1.15fr 0.9fr 1.25fr;
}

.footer-columns h3 {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-columns a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-columns a:hover {
  transform: translateX(2px);
}

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

@media (max-width: 620px) {
  .brand-story-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* Sprint 6: product browsing refinements */
.product-card {
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(33, 28, 22, 0.06);
}

.product-card:hover {
  box-shadow: 0 22px 50px rgba(33, 28, 22, 0.14);
  transform: translateY(-5px);
}

.product-image {
  background: linear-gradient(145deg, #fbfaf7, #f4eee6);
  cursor: zoom-in;
}

.product-image img {
  border-radius: 6px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.09);
}

.product-body {
  padding: 22px;
}

.card-actions {
  gap: 10px;
  margin-top: 18px;
}

.card-actions .secondary-button {
  justify-content: center;
  text-align: center;
}

.lightbox {
  z-index: 140;
  padding: clamp(14px, 3vw, 32px);
  background: rgba(0, 0, 0, 0.86);
}

.lightbox-content {
  width: min(1180px, 94vw);
  max-width: min(1180px, 94vw);
}

.lightbox-content img {
  max-width: 94vw;
  max-height: 84vh;
  border-radius: 10px;
  cursor: zoom-out;
}

.lightbox-caption,
.lightbox-content p {
  color: rgba(255, 255, 255, 0.88);
}

.product-detail-modal {
  z-index: 120;
  background: rgba(21, 21, 21, 0.62);
  backdrop-filter: blur(8px);
}

.product-detail-content {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 46px);
  width: min(1240px, 100%);
  padding: clamp(20px, 4vw, 38px);
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.detail-main-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #fbfaf7, #f1ebe2);
  cursor: zoom-in;
  overflow: hidden;
}

.detail-main-image img {
  transition: transform 0.28s ease;
}

.detail-main-image:hover img {
  transform: scale(1.08);
}

.detail-thumbs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.detail-thumbs button {
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.detail-thumbs button:hover,
.detail-thumbs button.is-active {
  border-color: rgba(166, 25, 46, 0.55);
  box-shadow: 0 10px 24px rgba(166, 25, 46, 0.12);
  transform: translateY(-2px);
}

.detail-info {
  gap: 18px;
}

.detail-info h2 {
  line-height: 1;
}

#detailDescription {
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 1.75;
}

.detail-specs {
  display: grid;
  gap: 0;
  box-shadow: 0 12px 30px rgba(33, 28, 22, 0.06);
}

.detail-specs div {
  padding: 10px 0;
}

.detail-tags span {
  background: #fffaf4;
}

.detail-faq,
.related-products {
  box-shadow: 0 10px 26px rgba(33, 28, 22, 0.05);
}

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

.related-products h3 {
  grid-column: 1 / -1;
}

.related-product-card {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.related-product-card:hover {
  border-color: rgba(166, 25, 46, 0.28);
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.1);
  transform: translateY(-2px);
}

.related-product-card img,
.related-product-card > span {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.related-product-card strong {
  color: var(--ink);
  font-size: 14px;
}

.related-product-card small {
  color: var(--muted);
  line-height: 1.35;
}

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

@media (max-width: 620px) {
  .product-body {
    padding: 18px;
  }

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

  .related-products {
    grid-template-columns: 1fr;
  }
}

/* Sprint 7: SEO article and category pages */
.article-page {
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
}

.article-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 82px) 0;
}

.article-shell h1 {
  max-width: 860px;
  margin-bottom: 18px;
}

.article-shell h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-shell p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.article-lead {
  max-width: 760px;
  margin: 0 0 28px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.article-breadcrumb a {
  color: var(--accent);
  font-weight: 700;
}

.article-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 30px;
}

.article-link-grid a {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(33, 28, 22, 0.06);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.article-link-grid a:hover {
  color: var(--accent);
  box-shadow: 0 16px 34px rgba(33, 28, 22, 0.1);
  transform: translateY(-2px);
}

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

@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

