/* =========================================
   HG HOMEWORKS COLLECTIVE — Shared Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700&family=Barlow+Condensed:wght@200;300;400&family=GFS+Didot&family=League+Spartan:wght@400;600;700;800&family=Montserrat:wght@400;500;600&family=Oswald:wght@400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --bg: #e8e6df;
  --fg: #1a1a1a;
  --accent: #92957e;
  --accent-light: rgba(146, 149, 126, 0.12);
  --dark-bg: #5a5850;
  --btn-bg: #1a1a1a;
  --btn-text: #ffffff;
  --font-body: 'Assistant', sans-serif;
  --font-heading: 'New York', 'Iowan Old Style', 'Apple Garamond', Baskerville, 'Times New Roman', serif;
  --font-display: 'League Spartan', 'Oswald', Impact, sans-serif;
  --font-sub: 'Montserrat', 'Assistant', sans-serif;
  --font-brand: 'Barlow Condensed', 'Oswald', Impact, sans-serif;
  --announce-h: 38px;
  --nav-h: 54px;
  --max-w: 1300px;
  --ease: cubic-bezier(0, 0, .3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

body {
  font-family: var(--font-body);
  font-size: 1.5rem;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  padding-top: 0;
}

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--announce-h);
  background: var(--dark-bg);
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sub);
}

.announce-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce-bar-arrow {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.announce-bar-arrow:hover { color: #fff; }

/* =========================================
   MAIN NAV (below hero on homepage, fixed on inner pages)
   ========================================= */
.main-nav {
  background: var(--bg);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  z-index: 900;
}

.main-nav.sticky {
  position: sticky;
  top: var(--announce-h);
}

.main-nav.fixed-top {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 3.2rem;
  align-items: center;
  margin: 0; padding: 0;
  flex-shrink: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--fg);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-sub);
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active { opacity: 1; }

/* ---- Dropdown mega-menu ---- */
.main-nav li.has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid rgba(26,26,26,0.1);
  border-top: 2px solid var(--fg);
  min-width: 680px;
  padding: 2.8rem 3rem;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.main-nav li.has-dropdown:hover .nav-dropdown { display: flex; gap: 3rem; }
.main-nav li.has-dropdown:hover .nav-dropdown--simple { gap: 0; }

/* Simple 2-item dropdown */
.nav-dropdown--simple {
  flex-direction: column;
  gap: 0;
  min-width: 260px;
  padding: 0.8rem 0;
}

/* Nav utility buttons (cart, auth) — pinned right so they don't affect nav link sizing */
.nav-utils {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-dropdown--simple a {
  display: block;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding: 1.1rem 2.4rem;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
}
.nav-dropdown--simple a:hover { opacity: 1; background: rgba(26,26,26,0.04); }

.dropdown-section { flex: 1; }

.dropdown-section-title {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}

.dropdown-categories { display: flex; flex-direction: column; gap: 1.6rem; }

.dropdown-cat-name {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(26,26,26,0.15);
}

.dropdown-cat a {
  display: block;
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.5;
  padding: 0.25rem 0 0.25rem 1rem;
  transition: opacity 0.15s, padding-left 0.15s;
}
.dropdown-cat a:hover { opacity: 1; padding-left: 1.4rem; }

.dropdown-divider {
  width: 1px;
  background: rgba(26,26,26,0.1);
  margin: 0;
  flex: 0 0 1px;
}

/* ---- Gallery page ---- */
.gallery-breadcrumb {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.45);
  margin-bottom: 2rem;
}
.gallery-breadcrumb a { color: inherit; text-decoration: none; }
.gallery-breadcrumb a:hover { color: var(--fg); }
.gallery-breadcrumb span { margin: 0 0.6rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-tile {
  aspect-ratio: 4/3;
  background: #d8d4cb;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.gallery-tile:hover img { transform: scale(1.04); }

.gallery-tile-empty {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.25);
}

@media (max-width: 900px) {

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

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,10,10,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  width: 88vw;
  height: 84vh;
  object-fit: contain;
  display: block;
  border: none;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease;
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.6rem;
  width: 5.2rem;
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2010;
  user-select: none;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-close {
  position: fixed;
  top: 1.8rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 3.2rem;
  cursor: pointer;
  z-index: 2010;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

.lightbox-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sub);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  z-index: 2010;
}

/* spacer for pages with fixed nav */
.nav-spacer { height: calc(var(--announce-h) + var(--nav-h)); }

/* =========================================
   LEGACY HEADER (inner pages only — kept for reference)
   ========================================= */
/* Sub-brand label in header */
.header-brand-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.header-brand-label img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Cart icon in nav */
.nav-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
  color: var(--fg);
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--fg);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 1rem;
  font-family: var(--font-sub);
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 4rem;
}

.section { padding: 7rem 0; }
.section--sm { padding: 4rem 0; }
.section--dark { background: var(--dark-bg); color: #fff; }

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(3.2rem, 5vw, 5rem); }
h2 { font-size: clamp(2.4rem, 3.5vw, 3.6rem); }
h3 { font-size: clamp(2rem, 2.5vw, 2.6rem); }
h4 { font-size: 1.9rem; }

.eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

.body-text {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 68ch;
  color: rgba(26,26,26,0.78);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  border: 1px solid transparent;
  font-family: var(--font-body);
}

.btn:hover { opacity: 0.78; }

.btn--outline {
  background: transparent;
  border-color: var(--fg);
  color: var(--fg);
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* =========================================
   HERO / BANNER CAROUSEL
   ========================================= */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: var(--announce-h); /* push below announcement bar */
}

/* Carousel images */
.hero-banner .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-banner .hero-slide.active { opacity: 1; }

/* The aspect-ratio wrapper keeps the banner proportional */
.hero-banner-inner {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 300px;
}

/* Text overlay sits in the white chevron area (~left 42%) */
.hero-text-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 42%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5% 3rem 3.5% 5%;
  pointer-events: none;
}

/* Top group: logos + brand name */
.hero-top { display: flex; flex-direction: column; }

/* Bottom group: headline + contact */
.hero-bottom { display: flex; flex-direction: column; }

.hero-brand-logos {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 0.3rem;
}

.hero-brand-logos img {
  height: clamp(44px, 6vw, 80px);
  width: auto;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
}


.hero-brand-name {
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 1.4vw, 2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 0.4rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Contact info block */
.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sub);
  font-size: clamp(0.78rem, 0.9vw, 1.1rem);
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.hero-contact-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  opacity: 0.7;
}

/* Right overlay (photo side — bottom right) */
.hero-right-overlay {
  position: absolute;
  bottom: 8%;
  right: 3%;
  width: 44%;
  z-index: 2;
  text-align: right;
  padding: 0 2rem;
  pointer-events: none;
}

.hero-right-logo {
  height: clamp(44px, 5vw, 72px);
  width: auto;
  object-fit: contain;
  margin-left: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}

.hero-right-text {
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 1.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 1.8rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26,26,26,0.25);
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dot.active { background: var(--fg); }

/* Legacy hero (inner page pages) */
.hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem;
  color: #fff;
  width: 100%;
  text-align: center;
}

.hero-content h1 { color: #fff; margin-bottom: 1.5rem; }

/* =========================================
   GRIDS
   ========================================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

/* =========================================
   PLACEHOLDER IMAGES (swap with real photos)
   ========================================= */
.img-ph {
  width: 100%;
  background-color: #c9b99a;
  display: block;
  position: relative;
  overflow: hidden;
}

.img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.04) 100%);
}

.img-ph--4-3  { aspect-ratio: 4/3; }
.img-ph--3-4  { aspect-ratio: 3/4; }
.img-ph--1-1  { aspect-ratio: 1/1; }
.img-ph--16-9 { aspect-ratio: 16/9; }
.img-ph--2-1  { aspect-ratio: 2/1; }
.img-ph--3-2  { aspect-ratio: 3/2; }

/* Pillow cover color swatches */
.img-ph--p1  { background-color: #d6cfc4; }
.img-ph--p2  { background-color: #4a4840; }
.img-ph--p3  { background-color: #c8a882; }
.img-ph--p4  { background-color: #8fa89a; }
.img-ph--p5  { background-color: #2e2c29; }
.img-ph--p6  { background-color: #b8a28c; }
.img-ph--p7  { background-color: #92957e; }
.img-ph--p8  { background-color: #c9c0b2; }
.img-ph--p9  { background-color: #6e5c4a; }
.img-ph--i1  { background-color: #d6cfc4; }
.img-ph--i2  { background-color: #ccc3b5; }
.img-ph--i3  { background-color: #b3a899; }
.img-ph--i4  { background-color: #d8d0c5; }
.img-ph--dark { background-color: #d6cfc4; }
.img-ph--hero { background: linear-gradient(160deg, #d4c9b0, #c2b59a); }
.img-ph--hero-dark { background: linear-gradient(160deg, #3a3830, #2a2820); }

/* =========================================
   COLLECTION CARDS (Home page)
   ========================================= */
.collection-card {
  text-decoration: none;
  color: var(--fg);
  display: block;
}

.collection-card .card-img {
  margin-bottom: 1.6rem;
  overflow: hidden;
}

.collection-card .card-img .img-ph {
  transition: transform 0.5s var(--ease);
}

.collection-card:hover .card-img .img-ph {
  transform: scale(1.03);
}

.collection-card .card-logo {
  height: 32px;
  object-fit: contain;
  margin-bottom: 0.8rem;
  object-position: left;
}

.card-name {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 1.35rem;
  color: rgba(26,26,26,0.6);
  line-height: 1.6;
}

/* =========================================
   PRODUCT GRID (Pundamoda)
   ========================================= */
.product-card {
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(26,26,26,0.18);
}

/* ---- Image wrapper ---- */
.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d8d4cb;
}

.product-img-wrap img,
.product-img-wrap .product-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-wrap .product-ph {
  transform: scale(1.04);
}

/* ---- Wishlist heart ---- */
.product-wish-btn {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  z-index: 10;
  background: rgba(255,255,255,0.72);
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(26,26,26,0.6);
  transition: color 0.2s, transform 0.15s, background 0.2s;
  padding: 0.5rem 0.6rem;
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
}
.product-wish-btn:hover { transform: scale(1.2); }
.product-wish-btn.wishlisted { color: #c0392b; }

/* ---- Hover bar (Add to Cart) ---- */
.product-hover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(74,72,64,0.92);
  transform: translateY(100%);
  transition: transform 0.28s var(--ease);
  z-index: 8;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.product-card:hover .product-hover-bar { transform: translateY(0); }

.product-hover-bar button {
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1.3rem 1rem;
  width: 100%;
}
.product-hover-bar button:hover { opacity: 0.75; }
.product-hover-bar button:disabled { opacity: 0.4; cursor: default; }

/* ---- Dots ---- */
.product-dots {
  position: absolute;
  bottom: 4.6rem; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card:hover .product-dots { opacity: 1; }

.product-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.product-dots .dot.active { background: #fff; }

/* ---- Image arrows ---- */
.product-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.8rem;
  width: 3.4rem; height: 3.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.product-card:hover .product-arrow { opacity: 1; }
.product-arrow:hover { background: rgba(255,255,255,0.32); }
.product-arrow--prev { left: 0.7rem; }
.product-arrow--next { right: 0.7rem; }

/* ---- Info below card ---- */
.product-info {
  padding: 1.2rem 0 0.2rem;
}

.product-name {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  margin-bottom: 0.3rem;
  text-decoration: none;
  color: var(--fg);
  transition: text-decoration 0.15s;
}
.product-card:hover .product-name { text-decoration: underline; text-underline-offset: 3px; }

.product-sub {
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* =========================================
   TABS (House of Goyen)
   ========================================= */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(26,26,26,0.15);
  margin-bottom: 5rem;
}

.tab-btn {
  padding: 1.4rem 3.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-sub);
  color: var(--fg);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.tab-btn.active {
  opacity: 1;
  border-bottom-color: var(--fg);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Tab button hover dropdown */
.tab-btn-wrap {
  position: relative;
}

.tab-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid rgba(26,26,26,0.1);
  border-top: 2px solid var(--fg);
  min-width: 260px;
  padding: 1.6rem 0;
  z-index: 500;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  text-align: left;
}

.tab-btn-wrap:hover .tab-dropdown { display: block; }

.tab-dropdown-section {
  padding: 0.8rem 2.4rem 1.4rem;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.tab-dropdown-section:last-child { border-bottom: none; }

.tab-dropdown-cat-name {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.tab-dropdown a {
  display: block;
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.5;
  padding: 0.3rem 0 0.3rem 1rem;
  transition: opacity 0.15s, padding-left 0.15s;
}
.tab-dropdown a:hover { opacity: 1; padding-left: 1.4rem; }

/* =========================================
   SERVICES (House of Goyen)
   ========================================= */
.service-card { text-align: center; }

.service-card .service-img {
  margin-bottom: 2rem;
  overflow: hidden;
}

.service-label {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.service-desc {
  font-size: 1.4rem;
  line-height: 1.75;
  color: rgba(26,26,26,0.7);
}

/* =========================================
   INQUIRY FORM
   ========================================= */
.inquiry-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.form-group label {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.65);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(26,26,26,0.2);
  font-family: var(--font-body);
  font-size: 1.45rem;
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231a1a1a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.5rem;
  cursor: pointer;
}

.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrap input {
  flex: 1;
  padding-right: 3.8rem;
}
.password-toggle {
  position: absolute;
  right: 1.2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(26,26,26,0.45);
  display: flex;
  align-items: center;
  line-height: 0;
  transition: color 0.2s;
}
.password-toggle:hover { color: rgba(26,26,26,0.75); }

/* =========================================
   FAQ ACCORDION (Triptique)
   ========================================= */
.faq-list { list-style: none; }

.faq-item {
  border-bottom: 1px solid rgba(26,26,26,0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
  text-align: left;
  font-size: 1.45rem;
  font-family: var(--font-heading);
  color: var(--fg);
  cursor: pointer;
  gap: 2rem;
}

.faq-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--fg);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 14px; height: 1px; }
.faq-icon::after  { width: 1px; height: 14px; transition: transform 0.3s; }

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer {
  display: none;
  padding: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(26,26,26,0.7);
  max-width: 72ch;
}

.faq-item.open .faq-answer { display: block; }

/* =========================================
   MOSAIC COLLAGE (Read / About)
   ========================================= */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
}

.mosaic-item { overflow: hidden; }
.mosaic-item--tall { grid-row: span 2; }

.mosaic-caption {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}

/* =========================================
   EVENTS (Triptique)
   ========================================= */
.events-empty {
  text-align: center;
  padding: 6rem 0;
  color: rgba(26,26,26,0.4);
}

.events-empty-icon { font-size: 3.6rem; margin-bottom: 1.5rem; }

.events-empty p {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: rgba(26,26,26,0.5);
}

.events-empty span {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

/* =========================================
   DIVIDER
   ========================================= */
.divider {
  width: 4rem;
  height: 1px;
  background: var(--accent);
  margin: 2rem auto;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.85);
  padding: 6rem 4rem 4rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  list-style: none;
  margin-bottom: 3.5rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-divider {
  width: 3rem; height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto 2.5rem;
}

.footer-copy {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* =========================================
   SHOP — Product enhancements
   ========================================= */
.products-loading {
  text-align: center;
  color: var(--accent);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4rem 0;
  grid-column: 1/-1;
}

.product-price {
  font-size: 1.3rem;
  font-family: var(--font-sub);
  color: rgba(26,26,26,0.65);
  margin-top: 0.25rem;
}

.stock-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--fg);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  z-index: 1;
}

.stock-badge--out { background: rgba(26,26,26,0.55); }

/* ---- Pagination ---- */
/* ---- Shop Filters ---- */
.shop-filters-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.filter-bar-label {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.45);
  white-space: nowrap;
}
.filter-bar-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.filter-bar-sublabel {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
  white-space: nowrap;
}
.filter-select-wrap { position: relative; }
.filter-select {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  padding: 0.55rem 3.2rem 0.55rem 1.3rem;
  border: 1.5px solid rgba(26,26,26,0.22);
  border-radius: 4px;
  background: #fff;
  color: rgba(26,26,26,0.75);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(26,26,26,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  min-width: 148px;
  transition: border-color 0.18s;
  letter-spacing: 0.04em;
}
.filter-select:hover { border-color: var(--fg); }
.filter-select:focus { outline: none; border-color: var(--fg); }

/* Legacy pill styles kept for backward compat */
.shop-filters {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.45);
  white-space: nowrap;
}
.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.filter-pill {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  padding: 0.45rem 1.3rem;
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 100px;
  background: transparent;
  color: rgba(26,26,26,0.65);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--fg); color: var(--fg); }
.filter-pill.active { background: var(--fg); border-color: var(--fg); color: #fff; }

.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 5rem;
  padding: 0 1.6rem;
}
.pg-ellipsis {
  min-width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--fg);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.pg-btn {
  min-width: 3.8rem;
  height: 3.8rem;
  border: 1px solid rgba(26,26,26,0.2);
  background: transparent;
  color: var(--fg);
  font-family: var(--font-sub);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.pg-btn:hover:not(:disabled) {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.pg-btn.pg-active {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.pg-btn:disabled { opacity: 0.3; cursor: default; }
.pg-arrow { font-size: 1.8rem; }

/* =========================================
   CART DRAWER
   ========================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: var(--bg);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
}

.cart-close-btn {
  font-size: 2.4rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 0;
}
.cart-close-btn:hover { opacity: 1; }

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

.cart-empty {
  text-align: center;
  color: rgba(26,26,26,0.45);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  padding: 4rem 0;
}

.cart-item {
  display: flex;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
  align-items: flex-start;
  position: relative;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  overflow: hidden;
  background: #d6cfc4;
}

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

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.cart-item-size {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.cart-item-price {
  font-size: 1.3rem;
  font-family: var(--font-sub);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-qty-controls button {
  background: none;
  border: 1px solid rgba(26,26,26,0.2);
  width: 26px; height: 26px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: background 0.15s;
  line-height: 1;
}
.cart-qty-controls button:hover { background: rgba(26,26,26,0.06); }

.cart-qty-controls span { font-size: 1.3rem; min-width: 18px; text-align: center; }

.cart-item-remove {
  position: absolute;
  top: 1.2rem; right: 0;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: rgba(26,26,26,0.3);
  transition: color 0.2s;
  line-height: 1;
  padding: 0;
}
.cart-item-remove:hover { color: var(--fg); }

.cart-footer {
  padding: 1.8rem 2.4rem;
  border-top: 1px solid rgba(26,26,26,0.1);
  background: var(--bg);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sub);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 1.4rem;
  background: var(--fg);
  color: #fff;
  border: none;
  font-family: var(--font-sub);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-checkout-btn:hover { opacity: 0.8; }

/* =========================================
   MODALS (Auth + Checkout + Success)
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg);
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 4rem 4rem 3.5rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.8rem; right: 2rem;
  font-size: 2.4rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(26,26,26,0.4);
  transition: color 0.2s;
  padding: 0;
}
.modal-close:hover { color: var(--fg); }

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  font-weight: 400;
}

.auth-message {
  font-size: 1.3rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  font-family: var(--font-sub);
  border-radius: 2px;
}
.auth-message--error   { background: #fdf0f0; color: #c0392b; }
.auth-message--success { background: #f0fdf4; color: #1a7a3e; }

.auth-switch {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 2rem;
  color: rgba(26,26,26,0.6);
}
.auth-switch a { color: var(--fg); text-decoration: underline; }

.auth-submit-btn {
  width: 100%;
  padding: 1.4rem;
  background: var(--fg);
  color: #fff;
  border: none;
  font-family: var(--font-sub);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.8rem;
}
.auth-submit-btn:hover:not(:disabled) { opacity: 0.82; }
.auth-submit-btn:disabled { opacity: 0.45; cursor: default; }

/* Checkout modal */
.checkout-modal .modal-box { max-width: 560px; }

.co-summary {
  background: rgba(26,26,26,0.04);
  padding: 1.6rem;
  margin-bottom: 2.4rem;
}

.co-line {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  padding: 0.4rem 0;
  color: rgba(26,26,26,0.75);
}

.co-line--total {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  border-top: 1px solid rgba(26,26,26,0.1);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}

/* Success modal */
.success-modal .modal-box {
  text-align: center;
  padding: 5rem 4rem;
}

.success-icon {
  font-size: 4.5rem;
  margin-bottom: 2rem;
}

.success-modal h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.success-modal p {
  font-size: 1.4rem;
  color: rgba(26,26,26,0.65);
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Toast */
#pm-toast {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--fg);
  color: #fff;
  padding: 1.2rem 2.4rem;
  font-size: 1.3rem;
  font-family: var(--font-sub);
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2000;
  pointer-events: none;
  white-space: nowrap;
}
#pm-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================
   PUBLISHED WORKS
   ========================================= */
.press-list { list-style: none; }

.press-item {
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.press-thumb {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
}

.press-item:last-child { border-bottom: none; }

.press-pub {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-sub);
  margin-bottom: 0.5rem;
}

.press-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.press-date {
  font-size: 1.2rem;
  color: rgba(26,26,26,0.45);
  font-family: var(--font-sub);
}

/* =========================================
   COMING SOON (Triptique)
   ========================================= */
.coming-soon-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 4rem;
}

.coming-soon-section .eyebrow {
  margin-bottom: 2rem;
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.4rem;
}

.coming-soon-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: rgba(26,26,26,0.55);
  max-width: 48ch;
  margin: 0 auto 3.5rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-item--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .container { padding: 0 2rem; }
  .section { padding: 5rem 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  /* Announce bar: allow text to wrap on mobile */
  :root { --announce-h: 52px; }
  .announce-bar { height: auto; min-height: 52px; font-size: 0.85rem; letter-spacing: 0.07em; padding: 0.5rem 0; }

  /* Hero banner on mobile */
  .hero-banner-inner { padding-top: 49%; min-height: 260px; }
  .hero-text-overlay {
    width: 48%;
    background: none;
    padding: 5% 1rem 5% 4%;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  .hero-top { display: flex; align-items: flex-start; justify-content: flex-start; }
  .hero-brand-logos { display: flex; gap: 0.8rem; justify-content: flex-start; }
  .hero-brand-logos img { filter: brightness(0) invert(1); height: 22px; }
  .hero-brand-name { font-size: 0.72rem; letter-spacing: 0.12em; text-align: left; margin-bottom: 0.6rem; color: #fff; }
  .hero-bottom { align-items: flex-start; text-align: left; }
  .hero-headline { font-size: clamp(1.4rem, 4.5vw, 2.4rem); text-align: left; margin-bottom: 0; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }
  .hero-contact { display: none; }
  .hero-right-overlay { display: block; width: 52%; padding: 0 1rem; bottom: 5%; }
  .hero-right-logo { height: clamp(28px, 4vw, 44px); }
  .hero-right-text { font-size: clamp(0.9rem, 2.8vw, 1.6rem); }

  /* Hide hero carousel dots on mobile (they overlap the text overlay) */
  .hero-dots { display: none; }

  /* Main nav on mobile: column layout, links wrap centered, utils below */
  .main-nav { height: auto; padding: 0.8rem 1rem; flex-direction: column; gap: 0.6rem; }
  .main-nav ul { gap: 1.2rem; flex-wrap: wrap; justify-content: center; flex-shrink: 1; }
  .main-nav a { font-size: 0.85rem; letter-spacing: 0.1em; }
  .nav-utils { position: static; transform: none; }

  /* Page tab nav on mobile: horizontally scrollable, no wrap */
  .tab-nav { overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .tab-btn { padding: 1rem 1.8rem; font-size: 0.85rem; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0; }

  /* Tab dropdown hidden on mobile (not practical) */
  .tab-dropdown { display: none !important; }

  .cart-drawer { width: 100%; max-width: 100%; }

  /* Hide nav dropdowns on mobile (hover not available on touch) */
  .main-nav li.has-dropdown:hover .nav-dropdown { display: none; }
  .main-nav li.has-dropdown:hover .nav-dropdown--simple { display: none; }

  .hero { height: 45vh; }
  .hero-content { padding: 2rem; }

  .press-item { grid-template-columns: 1fr; }
  .press-thumb { display: none; }

  /* Product cards — 2-col mobile adjustments */
  .product-name { font-size: 1.2rem; }
  .product-sub { font-size: 1.1rem; }
  .product-price { font-size: 1.2rem; }
  .product-info { padding: 1rem 0.8rem; }
  .product-wish-btn { width: 3.2rem; height: 3.2rem; font-size: 1.6rem; }

  /* Filter bar on mobile: stack vertically */
  .shop-filters-bar { gap: 1.2rem; }
  .filter-bar-label { display: none; }
  .filter-select { min-width: 120px; font-size: 1.1rem; padding: 0.5rem 2.8rem 0.5rem 1rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: 1fr; }

  /* Very small screens: slightly taller banner, smaller headline */
  .hero-banner-inner { padding-top: 56%; }
  .hero-headline { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }

  .modal-box { padding: 3rem 2rem; }
}
