:root {
  --cream: #faf6ee;
  --cream-deep: #f3ecdd;
  --cream-soft: #fffdf8;
  --ink: #2a2521;
  --ink-soft: #6b625a;
  --black: #11100f;
  --black-soft: #1c1917;
  --gold: #a97e2f;
  --gold-dark: #7c5c1f;
  --gold-light: #d9b978;
  --line: #e4d9c2;
  --white: #ffffff;
  --danger: #a1362b;
  --success: #426b49;
  --radius: 6px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px rgba(42, 37, 33, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.cart-open,
body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 1rem;
  z-index: 1000;
  border-radius: var(--radius);
}

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

.container {
  width: min(calc(100% - 4rem), var(--container));
  margin: 0 auto;
}

.eyebrow,
.about-label {
  margin: 0 0 0.8rem;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.section-title,
.section-heading h2,
.page-intro h1,
.content-copy h2,
.shop-help h2,
.story-teaser h2,
.category-copy h1,
.category-copy h2,
.product-detail-copy h1 {
  font-family: var(--font-display);
  color: var(--ink);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.7rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 600;
}

.section-heading p:last-child {
  color: var(--ink-soft);
  margin: 0.9rem auto 0;
  max-width: 650px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.68rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.header-logo {
  width: 82px;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0 0.38rem;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: left 0.2s ease, right 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  left: 0;
  right: 0;
}

.header-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  color: var(--gold-dark);
  background: rgba(169, 126, 47, 0.08);
}

.cart-badge {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
}

/* Buttons */
.btn,
.btn-shop,
.btn-secondary,
.btn-link-dark {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0.78rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn-shop:hover,
.btn-secondary:hover,
.btn-link-dark:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-shop,
.btn-link-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover,
.btn-shop:hover,
.btn-link-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-whatsapp {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-whatsapp:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Home hero */
.hero-wrap {
  background:
    linear-gradient(90deg, rgba(250, 246, 238, 0.98), rgba(250, 246, 238, 0.78)),
    url("../images/hero-bg.webp") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero {
  max-width: var(--container);
  margin: 0 auto;
  min-height: 610px;
  padding: 4.2rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0.5rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-desc {
  max-width: 560px;
  margin: 0 0 1.7rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  width: min(100%, 520px);
  position: relative;
  border: 1px solid rgba(17, 16, 15, 0.12);
  padding: 12px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 14px -16px -16px 14px;
  border: 1px solid rgba(169, 126, 47, 0.34);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Black premium strip */
.premium-strip {
  background: var(--black);
  color: var(--white);
}

.premium-strip-inner {
  width: min(calc(100% - 4rem), var(--container));
  margin: 0 auto;
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1.5rem;
}

.premium-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.premium-strip-item svg {
  color: var(--gold-light);
  flex: 0 0 auto;
}

/* Categories */
.category-section,
.featured-section,
.story-section,
.seo-copy-section,
.shop-collection,
.category-products,
.related-products {
  padding: 5.5rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.category-card {
  min-height: 245px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--cream-soft), var(--cream-deep));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(169, 126, 47, 0.25);
  border-radius: 50%;
  right: -32px;
  top: -28px;
}

.category-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--black);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 16, 15, 0.35);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: auto;
}

.category-card h3 {
  margin: 2.2rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}

.category-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.category-link {
  margin-top: 1rem;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

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

.product-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(124, 92, 31, 0.35);
}

.product-image {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image img,
.product-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.product-chip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  padding: 0.35rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream));
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.product-info {
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 600;
}

.product-name a:hover {
  color: var(--gold-dark);
}

.product-tags,
.product-size,
.product-description {
  color: var(--ink-soft);
}

.product-tags {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-description {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.product-size {
  margin: 0.8rem 0 0;
  font-size: 0.72rem;
}

.product-price {
  margin: 0.38rem 0 1rem;
  color: var(--black);
  font-weight: 700;
}

.product-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.product-actions .btn-shop {
  width: 100%;
}

.product-details-link {
  min-width: 46px;
  height: 46px;
  border: 1px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s ease, color 0.2s ease;
}

.product-details-link:hover {
  background: var(--black);
  color: var(--white);
}

/* Story teaser */
.story-section {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-visual img {
  width: 100%;
  max-height: 530px;
  object-fit: cover;
  border: 1px solid rgba(17, 16, 15, 0.15);
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-light);
  z-index: 0;
  pointer-events: none;
}

.story-teaser h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 600;
}

.story-teaser p:not(.section-kicker) {
  color: var(--ink-soft);
}

/* Features */
.features {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  text-align: center;
  padding: 1.2rem 0.8rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.feature-title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-sub {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

/* SEO copy blocks */
.seo-copy-section {
  padding-top: 1rem;
}

.seo-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}

.seo-copy p {
  margin: 0.8rem 0;
  color: var(--ink-soft);
}

.inline-link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Page heroes */
.page-intro,
.about-hero,
.contact-hero,
.shop-hero,
.legal-hero,
.category-hero {
  padding: 5.5rem 2rem 4.8rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  border-bottom: 1px solid var(--line);
}

.page-intro-inner,
.about-hero-inner,
.contact-hero-inner,
.shop-hero-inner,
.legal-hero-inner,
.category-hero-inner {
  max-width: 790px;
  margin: 0 auto;
}

.page-intro h1,
.about-hero h1,
.contact-hero h1,
.shop-hero h1,
.legal-hero h1,
.category-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
}

.page-intro p:last-child,
.about-hero-text,
.contact-hero-inner > p:last-child,
.shop-hero-inner > p:last-child,
.legal-hero-inner > p:last-child,
.category-hero-inner > p:last-child {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  max-width: 680px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* Shop */
.shop-toolbar {
  position: sticky;
  top: 86px;
  z-index: 20;
  background: rgba(250, 246, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.shop-toolbar-inner {
  width: min(calc(100% - 4rem), var(--container));
  margin: 0 auto;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: center;
}

.shop-search-wrap {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.8rem;
}

.shop-search-wrap svg {
  color: var(--ink-soft);
  flex: 0 0 auto;
}

.shop-search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.filter-btn {
  min-height: 38px;
  padding: 0.48rem 0.75rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.72rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.collection-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.collection-heading-row h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
}

.product-count {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.shop-empty {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--ink-soft);
}

.pagination {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.pagination button,
.pagination a {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination button:hover,
.pagination button.active,
.pagination a:hover,
.pagination a.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-help {
  padding: 4rem 2rem 5rem;
  background: var(--black);
  color: var(--white);
}

.shop-help-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.shop-help h2 {
  color: var(--white);
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
}

.shop-help p:not(.about-label) {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 1.3rem;
  max-width: 620px;
}

.shop-help .about-label {
  color: var(--gold-light);
}

.shop-help .btn-primary {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
}

.shop-help .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
}

/* About */
.about-section,
.about-philosophy,
.about-values,
.about-experience,
.about-delivery {
  padding: 5.5rem 2rem;
}

.about-grid,
.content-grid,
.contact-grid,
.product-detail-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-image img,
.content-media img {
  width: 100%;
  border: 1px solid var(--line);
}

.about-content h2,
.content-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.05;
  font-weight: 600;
}

.about-content p:not(.about-label),
.content-copy p:not(.about-label),
.about-center p:not(.about-label) {
  color: var(--ink-soft);
}

.about-philosophy {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-center {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-center h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 600;
}

.values-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border: 1px solid var(--line);
  padding: 1.8rem;
  background: rgba(255,255,255,0.46);
}

.value-card span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.value-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.88rem;
}

/* Contact */
.contact-section {
  padding: 5.5rem 2rem;
}

.contact-grid {
  align-items: start;
}

.contact-copy h2,
.contact-form-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
}

.contact-copy > p:not(.about-label) {
  color: var(--ink-soft);
}

.contact-detail-list {
  margin: 2rem 0;
  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail > span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-detail h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.contact-detail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.contact-form-card {
  padding: 2rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
}

.contact-form-card form {
  display: grid;
  gap: 0.65rem;
}

.contact-form-card label,
.cart-checkout label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea,
.cart-checkout input,
.cart-checkout textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: 0;
  border-radius: 2px;
}

.contact-form-card textarea,
.cart-checkout textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus,
.cart-checkout input:focus,
.cart-checkout textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(169, 126, 47, 0.08);
}

.input-error {
  border-color: var(--danger) !important;
}

.field-err {
  display: none;
  margin: -0.25rem 0 0;
  color: var(--danger);
  font-size: 0.7rem;
}

.field-err.show {
  display: block;
}

.btn-contact-submit {
  margin-top: 0.5rem;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.contact-form-note {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.contact-promise {
  padding: 4.5rem 2rem;
  background: var(--black);
  color: var(--white);
}

.contact-promise-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.contact-promise h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
}

.contact-promise p:not(.about-label) {
  color: rgba(255,255,255,0.72);
}

.contact-promise .about-label {
  color: var(--gold-light);
}

/* Legal */
.legal-section {
  padding: 4.8rem 2rem 6rem;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
}

.legal-updated {
  margin: 0 0 2.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
}

.legal-block p,
.legal-block li {
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.85;
}

.legal-block ul {
  padding-left: 1.2rem;
}

.legal-block a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Category landing */
.category-summary {
  padding: 4.5rem 0 1rem;
}

.category-summary-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.category-copy h1,
.category-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.98;
  font-weight: 600;
}

.category-copy p {
  color: var(--ink-soft);
}

.category-aside {
  border-left: 4px solid var(--black);
  background: var(--cream-deep);
  padding: 1.6rem;
}

.category-aside h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.category-aside p,
.category-aside li {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.category-aside ul {
  margin: 0;
  padding-left: 1.15rem;
}

.category-products {
  padding-top: 3.2rem;
}

/* Product detail */
.breadcrumbs {
  width: min(calc(100% - 4rem), var(--container));
  margin: 0 auto;
  padding: 1.1rem 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.product-detail {
  padding: 3.3rem 2rem 5.5rem;
}

.product-detail-grid {
  align-items: start;
}

.product-detail-media {
  border: 1px solid var(--line);
  background: var(--cream-deep);
  padding: 0;
}

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

.product-detail-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  line-height: 0.98;
  font-weight: 600;
}

.product-detail-tags {
  margin: 0 0 1rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.product-detail-price {
  margin: 1rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
}

.product-detail-copy p {
  color: var(--ink-soft);
}

.product-detail-meta {
  margin: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-detail-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.product-detail-meta div:last-child {
  border-bottom: 0;
}

.product-detail-meta span:first-child {
  color: var(--ink-soft);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.product-copy-section {
  padding: 0 2rem 5.5rem;
}

.product-copy {
  max-width: 900px;
  margin: 0 auto;
}

.product-copy h2 {
  margin: 2.2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.product-copy p,
.product-copy li {
  color: var(--ink-soft);
}

.related-products {
  border-top: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  width: min(calc(100% - 4rem), var(--container));
  margin: 0 auto;
  padding: 3.6rem 0 2.4rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand-block p {
  margin: 0.85rem 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  max-width: 260px;
}

.footer-logo {
  width: 92px;
  height: 70px;
  object-fit: contain;
  filter: brightness(1.25);
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  margin: 0.48rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

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

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-light);
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-placeholder {
  opacity: 0.32;
  cursor: default;
}

.footer-bottom {
  width: min(calc(100% - 4rem), var(--container));
  margin: 0 auto;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.48);
  font-size: 0.68rem;
}

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

/* Cart */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17,16,15,0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(430px, 100%);
  height: 100dvh;
  background: var(--cream-soft);
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  transform: translateX(102%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.cart-items {
  padding: 1rem 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.cart-empty {
  color: var(--ink-soft);
  text-align: center;
  margin-top: 2rem;
}

.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-row .thumb {
  width: 72px;
  height: 72px;
  background: var(--cream-deep);
  overflow: hidden;
  position: relative;
}

.cart-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row .name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.cart-row .price {
  color: var(--ink-soft);
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

.qty {
  display: grid;
  grid-template-columns: 28px 26px 28px;
  align-items: center;
  border: 1px solid var(--line);
}

.qty button {
  width: 28px;
  height: 30px;
  border: 0;
  background: transparent;
}

.qty span {
  text-align: center;
  font-size: 0.72rem;
}

.cart-checkout {
  border-top: 1px solid var(--line);
  padding: 1.1rem 1.25rem 1.35rem;
  max-height: 52dvh;
  overflow-y: auto;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.cart-checkout input,
.cart-checkout textarea {
  margin: 0.32rem 0 0.55rem;
}

.cart-checkout textarea {
  min-height: 82px;
}

/* 404 */
.not-found {
  min-height: 68vh;
  padding: 6rem 2rem;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 680px;
}

.not-found-code {
  margin: 0;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 10rem);
  line-height: 0.8;
}

.not-found h1 {
  margin: 1.2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
}

.not-found p {
  color: var(--ink-soft);
}

/* Accessibility focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
}

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

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

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

  .shop-toolbar-inner {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    justify-content: flex-start;
  }

  .shop-toolbar {
    top: 78px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.55rem 1.25rem;
  }

  .header-logo {
    width: 72px;
    height: 64px;
  }

  .mobile-menu-btn {
    display: inline-flex;
    justify-self: end;
  }

  .header-icons {
    gap: 0.45rem;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    z-index: 55;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.5rem 1.5rem;
    display: grid;
    gap: 0;
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem 4.2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-frame {
    max-width: 480px;
  }

  .premium-strip-inner {
    grid-template-columns: 1fr;
    padding: 1.2rem 0;
    gap: 0.65rem;
  }

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

  .story-teaser,
  .about-grid,
  .content-grid,
  .contact-grid,
  .product-detail-grid,
  .category-summary-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-visual {
    max-width: 640px;
    margin: 0 auto;
  }

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

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

  .category-summary-grid {
    gap: 1.5rem;
  }

  .category-aside {
    border-left-width: 3px;
  }
}

@media (max-width: 640px) {
  .container,
  .breadcrumbs,
  .premium-strip-inner,
  .shop-toolbar-inner,
  .footer-top,
  .footer-bottom {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-inner {
    padding-inline: 0.85rem;
    gap: 0.5rem;
  }

  .header-logo {
    width: 64px;
    height: 58px;
  }

  .main-nav {
    top: 70px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 3rem 1rem 3.6rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 20vw, 5rem);
  }

  .tagline {
    font-size: 1.15rem;
  }

  .hero-desc {
    font-size: 0.96rem;
  }

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

  .hero-actions .btn,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .category-section,
  .featured-section,
  .story-section,
  .seo-copy-section,
  .shop-collection,
  .category-products,
  .related-products {
    padding: 4rem 0;
  }

  .category-grid,
  .product-grid,
  .featured-section .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .page-intro,
  .about-hero,
  .contact-hero,
  .shop-hero,
  .legal-hero,
  .category-hero {
    padding: 4rem 1rem 3.6rem;
  }

  .shop-toolbar {
    top: 70px;
  }

  .shop-toolbar-inner {
    padding: 0.8rem 0;
  }

  .shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
  }

  .filter-btn {
    white-space: nowrap;
  }

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

  .about-section,
  .about-philosophy,
  .about-values,
  .about-experience,
  .about-delivery,
  .contact-section,
  .legal-section,
  .product-detail,
  .product-copy-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-form-card {
    padding: 1.35rem;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .feature {
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-actions {
    display: grid;
  }

  .product-detail-actions .btn,
  .product-detail-actions .btn-secondary {
    width: 100%;
  }

  .cart-row {
    grid-template-columns: 62px 1fr;
  }

  .cart-row .thumb {
    width: 62px;
    height: 62px;
  }

  .cart-row .qty {
    grid-column: 2;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Working WhatsApp highlight link */
.premium-strip-link{color:inherit;text-decoration:none}.premium-strip-link:hover{color:inherit}.premium-strip-item svg{width:20px;height:20px;flex:0 0 20px}
