/* ENZO Homepage — WoodMart Glasses-inspired
   Local fonts only (no CDN / Google Fonts) */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf9f7;
  --bg-soft: #f0eeea;
  --surface: #ffffff;
  --ink: #242424;
  --muted: #777777;
  --line: rgba(36, 36, 36, 0.08);
  --accent: #2a2a2a;
  --accent-soft: #111111;
  --radius: 0;
  --container: 1220px;
  --header-h: 74px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Manrope", "Segoe UI", sans-serif;
  --shadow: 0 20px 50px rgba(36, 36, 36, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head--center .section-sub {
  margin-inline: auto;
}

.section-head--center .product-tabs {
  justify-content: center;
  margin-top: 0.5rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 0.45rem;
  line-height: 1.2;
  color: var(--ink);
}

.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--accent);
  color: #fff;
}

.btn-dark:hover {
  background: var(--accent-soft);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-ghost,
.btn-line {
  background: transparent;
  border-color: rgba(22, 22, 22, 0.2);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-line:hover {
  border-color: var(--ink);
}

.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

a:hover .link-arrow::after,
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* ========== HEADER ========== */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  position: relative;
  height: var(--header-h);
  background: rgba(246, 245, 242, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header-wrap.is-nav-open {
  z-index: 1100;
}

.site-header-wrap.is-scrolled .site-header {
  box-shadow: 0 8px 30px rgba(22, 22, 22, 0.05);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.has-dropdown,
.has-mega {
  position: relative;
}

.dropdown,
.mega-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.28s var(--ease);
  z-index: 50;
}

.dropdown {
  min-width: 220px;
  padding: 0.7rem 0;
}

.dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.dropdown a:hover {
  color: var(--ink);
  background: var(--bg);
}

.mega-menu {
  left: 50%;
  transform: translate(-50%, 10px);
  width: min(96vw, 980px);
  padding: 1.5rem;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.mega-col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.mega-col a:hover {
  color: var(--ink);
}

.mega-title {
  font-weight: 650;
  color: var(--ink) !important;
  margin-bottom: 0.35rem;
}

.mega-title--spaced {
  margin-top: 0.9rem;
}

.has-dropdown:hover .dropdown,
.has-mega:hover .mega-menu,
.has-dropdown:focus-within .dropdown,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  justify-self: end;
}

@media (min-width: 921px) {
  .main-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .main-nav .nav-list {
    pointer-events: auto;
  }

  .nav-close {
    display: none;
  }
}

.nav-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.25s;
}

.icon-btn:hover {
  background: rgba(22, 22, 22, 0.05);
}

.nav-overlay {
  display: none;
}

/* Search */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(246, 245, 242, 0.96);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.search-overlay[hidden] {
  display: none;
}

.search-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.search-form {
  width: min(100%, 640px);
  display: flex;
  gap: 0.75rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.75rem;
}

.search-form input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  outline: none;
}

.search-form button {
  border: 0;
  background: transparent;
  font-weight: 650;
  cursor: pointer;
}

/* ========== HERO — Glasses demo style: centered cutout product ========== */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  overflow: hidden;
  background: #efece6;
}

.hero-track {
  position: relative;
  height: min(92vh, 820px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease);
}

.hero-slide.is-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide[data-tone="sand"] .hero-slide-bg {
  background:
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(255, 255, 255, 0.65) 0%, transparent 70%),
    linear-gradient(160deg, #e8e2d6 0%, #f4f0e8 45%, #ddd5c8 100%);
}

.hero-slide[data-tone="mist"] .hero-slide-bg {
  background:
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(255, 255, 255, 0.7) 0%, transparent 70%),
    linear-gradient(160deg, #dfe4e8 0%, #eef1f3 45%, #d4d9de 100%);
}

.hero-slide[data-tone="blush"] .hero-slide-bg {
  background:
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(255, 255, 255, 0.7) 0%, transparent 70%),
    linear-gradient(160deg, #e8ddd8 0%, #f5eeea 45%, #dccfc8 100%);
}

.hero-slide[data-tone="stone"] .hero-slide-bg {
  background:
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(255, 255, 255, 0.65) 0%, transparent 70%),
    linear-gradient(160deg, #e2e0db 0%, #f2f1ee 45%, #d5d2cb 100%);
}

/* Product dead-center — like glasses-slider-img.png */
.hero-product {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 1;
  width: min(58vw, 620px);
  transform: translate(-50%, -46%) scale(0.92);
  opacity: 0;
  pointer-events: none;
}

.hero-slide.is-active .hero-product {
  animation: heroProductIn 1s 0.05s var(--ease) forwards;
}

.hero-slide.is-active .hero-product img {
  opacity: 1;
}

.hero-product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 35px 45px rgba(36, 36, 36, 0.16));
  transform-origin: center center;
}

.hero-slide.is-active .hero-product img {
  animation: heroProductFloat 6s 1.1s ease-in-out infinite;
}

/* Text left overlay — Glasses layout */
.hero-content {
  position: absolute;
  left: max(calc((100% - var(--container)) / 2), 1.5rem);
  top: 50%;
  z-index: 2;
  width: min(100% - 3rem, 420px);
  transform: translateY(-42%);
  opacity: 0;
}

.hero-slide.is-active .hero-content {
  animation: heroTextIn 0.9s 0.15s var(--ease) forwards;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(36, 36, 36, 0.2);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroProductIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes heroProductFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(calc(-42% + 18px));
  }
  to {
    opacity: 1;
    transform: translateY(-42%);
  }
}

.hero-nav {
  position: absolute;
  right: max(calc((100% - var(--container)) / 2), 1.25rem);
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 36, 36, 0.12);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.25s;
}

.hero-arrow:hover {
  background: #fff;
  border-color: var(--ink);
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(36, 36, 36, 0.22);
  cursor: pointer;
  padding: 0;
  transition: 0.25s;
}

.hero-dot.is-active {
  background: var(--ink);
  width: 24px;
  border-radius: 999px;
}

/* ========== CATEGORY BANNERS ========== */
.cat-banners {
  padding-top: 3rem;
}

.cat-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cat-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(160deg, #f3f1ec, #e8e5de);
  display: grid;
}

.cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

.cat-banner:hover img {
  transform: scale(1.04);
}

.cat-banner-body {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(246, 245, 242, 0.94) 42%);
}

.cat-banner-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.cat-banner h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  margin: 0 0 0.7rem;
  letter-spacing: -0.025em;
  font-weight: 600;
}

/* ========== PRODUCTS ========== */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  border: 0;
  background: transparent;
  padding: 0.55rem 0.95rem;
  color: var(--muted);
  font-weight: 550;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  flex: 0 0 auto;
}

.tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-grid > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-grid[hidden] {
  display: none;
}

.product-panel[hidden],
.product-panels .product-panel:not(.is-active) {
  display: none;
}

.product-panel-foot {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.25rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card__media {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.product-thumb {
  aspect-ratio: 1;
  background:
    linear-gradient(180deg, #faf9f7, #f0eee9);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-thumb img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-cat {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.product-name {
  font-family: var(--display);
  font-size: 1rem;
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
  font-weight: 600;
}

.product-name a {
  color: inherit;
  text-decoration: none;
}

.product-name a:hover {
  color: var(--ink);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid rgba(36, 36, 36, 0.18);
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.product-cta:hover,
.product-card:hover .product-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ========== FEATURED SPLIT ========== */
.featured-split {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55));
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.featured-media {
  background:
    radial-gradient(circle at 30% 20%, #fff, transparent 45%),
    linear-gradient(160deg, #efede8, #e2dfd8);
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.featured-media img {
  width: min(78%, 380px);
  filter: drop-shadow(0 25px 35px rgba(22, 22, 22, 0.12));
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.featured-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 600;
}

.featured-copy > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--ink);
}

/* ========== STORY STRIP ========== */
.story-strip {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.story-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.story-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.35));
}

.story-inner {
  position: relative;
  z-index: 1;
  padding-block: 4.5rem;
  max-width: 560px;
  margin-left: max(calc((100% - var(--container)) / 2), 1.25rem);
  margin-right: auto;
}

.story-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

.story-inner > p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.5rem;
}

/* ========== TRUST ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--line);
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--ink);
}

.trust-item h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ========== LOOKBOOK ========== */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.look-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.35 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.look-card:hover img {
  transform: scale(1.03);
}

.look-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 650;
}

/* ========== INFO CARDS ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.info-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.info-card > div {
  padding: 1.25rem 1.25rem 1.5rem;
}

.info-card h3 {
  font-family: var(--display);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.blog-thumb {
  overflow: hidden;
  aspect-ratio: 1.15;
  background: var(--bg-soft);
  margin-bottom: 1rem;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.blog-meta .entry-cats {
  color: inherit;
}

.blog-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  line-height: 1.3;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, #ebe8e2, #f7f6f3 45%, #e7e4de);
  border-block: 1px solid var(--line);
}

.newsletter-inner {
  text-align: center;
  max-width: 640px;
}

.newsletter-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: min(100%, 320px);
  height: 48px;
  border: 1px solid rgba(22, 22, 22, 0.15);
  background: #fff;
  padding: 0 1rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--ink);
}

.newsletter-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.newsletter-note a {
  text-decoration: underline;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 0.94rem;
}

.footer-brand .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--display);
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  transition: color 0.25s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s var(--ease);
  z-index: 60;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid,
  .blog-grid,
  .info-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: min(88vw, 360px);
    background: #fff;
    z-index: 1002;
    padding: 4.5rem 1.25rem 2rem;
    transform: none;
    transition: left 0.4s var(--ease);
    overflow-y: auto;
    border-right: 1px solid var(--line);
    display: block;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    left: 0;
  }

  .nav-close {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .has-dropdown > .nav-link::after,
  .has-mega > .nav-link::after {
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
    color: var(--muted);
    transition: transform 0.25s var(--ease);
  }

  .has-dropdown.is-open > .nav-link::after,
  .has-mega.is-open > .nav-link::after {
    content: "−";
  }

  .dropdown,
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    padding: 0;
    transition: max-height 0.35s var(--ease);
  }

  .has-dropdown.is-open > .dropdown,
  .has-mega.is-open > .mega-menu {
    max-height: 3000px;
    padding: 0.25rem 0 0.75rem 0.75rem;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .cat-banners-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-track {
    min-height: 78vh;
    height: 78vh;
  }

  .hero-product {
    width: min(78vw, 340px);
    top: 42%;
  }

  .hero-content {
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    top: auto;
    bottom: 5.5rem;
    transform: none;
  }

  .hero-slide.is-active .hero-content {
    animation: heroTextInMobile 0.85s 0.12s var(--ease) forwards;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .hero-nav {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
  }
}

@keyframes heroTextInMobile {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .product-grid,
  .blog-grid,
  .info-grid,
  .trust-grid,
  .lookbook-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .look-card {
    aspect-ratio: 2.1 / 1;
  }

  .section {
    padding: 3.5rem 0;
  }

  .header-actions .cart-btn {
    display: inline-flex;
  }

  .product-tabs {
    justify-content: flex-start;
    width: 100%;
    margin-top: 0.5rem;
  }

  .section-head--center .product-tabs {
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
}

/* ========== SINGLE POST ========== */
.single-post-main {
  padding-bottom: 4rem;
}

.single-hero {
  padding: 3rem 0 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.single-hero__inner {
  max-width: 760px;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.single-meta a {
  color: inherit;
}

.single-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 600;
}

.single-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 62ch;
}

.single-hero__media {
  margin-top: 2rem;
  padding-bottom: 2.5rem;
}

.single-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}

.single-body {
  padding-top: 3rem;
}

.single-content-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.single-content-wrap .entry-content {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--ink);
}

.single-content-wrap .entry-content h2,
.single-content-wrap .entry-content h3,
.single-content-wrap .entry-content h4 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  margin: 2.25rem 0 0.85rem;
  line-height: 1.25;
}

.single-content-wrap .entry-content p,
.single-content-wrap .entry-content ul,
.single-content-wrap .entry-content ol,
.single-content-wrap .entry-content blockquote {
  margin: 0 0 1.25rem;
}

.single-content-wrap .entry-content blockquote {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--ink);
  background: var(--bg-soft);
  color: var(--muted);
}

.single-content-wrap .entry-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.single-tags__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.single-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.single-tags__list a {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
  background: #fff;
}

.single-tags__list a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.single-content-wrap .post-navigation {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

.single-content-wrap .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.single-content-wrap .nav-previous,
.single-content-wrap .nav-next {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem 1.1rem;
}

.single-content-wrap .nav-next {
  text-align: right;
}

.post-nav__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.post-nav__title {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}

.single-comments-wrap {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .single-hero {
    padding-top: 2rem;
  }

  .single-content-wrap .nav-links {
    grid-template-columns: 1fr;
  }

  .single-content-wrap .nav-next {
    text-align: left;
  }
}
