/* MAISON & CO — Luxury Furniture & Homeware */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #faf8f5;
  --warm-white: #f5f2ed;
  --off-white: #ede9e2;
  --dark: #1a1a18;
  --dark-mid: #2d2d2a;
  --text: #3a3835;
  --text-light: #7a7570;
  --text-muted: #a09a93;
  --border: #e2ddd7;
  --border-light: #ede9e2;
  --gold: #007fff;
  --sale-red: #c0392b;
  --new-green: #2d5a3d;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', system-ui, sans-serif;
  --bar-h: 36px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--cream); font-size: 15px; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--off-white);
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1001;
}
.announcement-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.announcement-inner span { display: inline-block; padding-right: 60px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HEADER ── */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: var(--bar-h);
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 20px;
  position: relative;
}

.utility-nav { display: flex; gap: 20px; }
.utility-nav a { font-size: 12px; letter-spacing: 0.06em; color: var(--text-light); text-transform: uppercase; transition: color 0.2s; }
.utility-nav a:hover { color: var(--dark); }

.logo {
  color: var(--dark);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr auto;
  column-gap: 14px;
  padding: 8px 0 12px;
  text-decoration: none;
  overflow: hidden;
}
.logo-amp { color: var(--gold); }
.logo-name {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-family: var(--font-serif);
  font-size: clamp(40px, 2.8vw, 50px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--dark);
  white-space: nowrap;
  line-height: 1;
}
.logo-subtitle {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-family: 'Tajawal', var(--font-sans);
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 500;
  color: var(--gold);
  direction: ltr;
  white-space: nowrap;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0;
}
.logo-text-wrap { display: contents; }

/* header quick contact */
.header-left-zone { display: flex; align-items: center; gap: 6px; }
.hq-text { display: inline; }
.hq-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-light); transition: color 0.2s;
}
.hq-link:hover { color: var(--dark); }
.hq-link svg { flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  position: relative;
}
.icon-btn:hover { background: var(--off-white); }
.icon-btn svg { width: 20px; height: 20px; color: var(--dark); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--dark); color: #fff;
  border-radius: 50%; font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}

/* ── MAIN NAV ── */
.main-nav { border-top: 1px solid var(--border-light); position: relative; }
.nav-list {
  display: flex;
  justify-content: center;
  gap: 0;
}
.nav-item { position: static; }
.nav-link {
  display: block;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-link:hover,
.nav-item:hover .nav-link { color: var(--dark); }
.sale-item .nav-link { color: var(--sale-red); }
.nav-active { color: var(--dark) !important; border-bottom: 2px solid var(--gold); padding-bottom: 12px; }
.inspiration-link { font-style: italic; font-family: var(--font-serif); font-size: 14px; letter-spacing: 0.04em; text-transform: none; }

/* MEGA MENU — always centered under the full nav bar */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 600px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: none;
  padding: 32px;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.nav-item:hover .mega-menu { display: block; }
.mega-inner { display: flex; gap: 40px; justify-content: space-between; }
.mega-col h4 {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--dark);
}
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a { font-size: 13px; color: var(--text-light); transition: color 0.2s; }
.mega-col ul li a:hover { color: var(--dark); }
.mega-col { flex: 1; min-width: 120px; }
.mega-featured { flex-shrink: 0; }
.mega-featured img { width: 180px; height: 160px; object-fit: cover; }
.mega-featured p { font-size: 12px; color: var(--text-light); margin-top: 8px; line-height: 1.5; }
.mega-featured p strong { color: var(--dark); display: block; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250,248,245,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.search-overlay.active { opacity: 1; pointer-events: all; }
.search-close {
  position: absolute;
  top: 24px; right: 40px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.search-close svg { width: 24px; height: 24px; }
.search-box {
  position: relative;
  width: 100%;
  max-width: 680px;
  border-bottom: 2px solid var(--dark);
  margin-bottom: 24px;
}
.search-input {
  width: 100%;
  padding: 16px 50px 16px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  background: none;
  border: none;
  outline: none;
  color: var(--dark);
}
.search-icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; color: var(--text-muted); }
.search-suggestions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search-suggestions span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.search-suggestions a { font-size: 13px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; color: var(--text); transition: all 0.2s; }
.search-suggestions a:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn-primary:hover { background: transparent; color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-mid); }

/* ── HERO ── */
.hero { position: relative; height: 92vh; min-height: 640px; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: flex-start;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hero-slide.active { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 80px 60px;
  max-width: 660px;
  color: #fff;
}
.hero-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.8; }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(36px, 4.2vw, 64px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.hero-content h1 strong { font-weight: 700; display: block; }
.hero-h1-sub { font-size: clamp(26px, 3vw, 46px); font-weight: 300; opacity: 0.9; font-style: italic; }
.hero-h-blue { color: var(--gold); font-weight: 700; }
.hero-sub { font-size: 15px; max-width: 440px; margin-bottom: 32px; opacity: 0.85; line-height: 1.7; }
.hero-sub:empty { display: none; }
.hero-wa-btn { display: inline-flex; align-items: center; gap: 7px; }
.hero-wa-num { font-size: 0.83em; opacity: 0.9; white-space: nowrap; }
@media (max-width: 420px) { .hero-wa-num { display: none; } }
.sale-link { color: var(--sale-red) !important; font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-controls {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}
.hero-prev, .hero-next {
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  transition: color 0.2s;
  padding: 4px 8px;
}
.hero-prev:hover, .hero-next:hover { color: #fff; }
.hero-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.active { background: #fff; transform: scale(1.25); }

/* ── CATEGORY STRIP ── */
.category-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 48px 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.category-pill:hover { transform: translateY(-3px); }
.category-img {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}
.category-img img { width: 100%; height: 100%; object-fit: cover; }
.category-pill span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); font-weight: 500; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--dark); margin-bottom: 8px; }
.section-header p { color: var(--text-light); font-size: 15px; }
.section-link { display: inline-block; margin-top: 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color 0.2s; }
.section-link:hover { color: var(--dark); }
.eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-family: var(--font-sans); }

/* ── FEATURED BANNER ── */
.featured-banner { padding: 0 40px 80px; }
.featured-banner-inner { display: grid; grid-template-columns: 1fr 1fr; max-width: 1280px; margin: 0 auto; }
.featured-banner-img img { width: 100%; height: 480px; object-fit: cover; }
.featured-banner-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 64px;
  background: var(--off-white);
}
.featured-banner-text h2 { font-family: var(--font-serif); font-size: 48px; font-weight: 400; margin-bottom: 16px; color: var(--dark); }
.featured-banner-text p { color: var(--text-light); margin-bottom: 32px; line-height: 1.8; }

/* ── PRODUCTS SECTION ── */
.products-section { padding: 80px 40px; }
.products-section.alt-bg { background: var(--warm-white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.products-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.product-card { display: flex; flex-direction: column; }
.product-info { display: flex; flex-direction: column; flex: 1; }
.card-add-btn { margin-top: auto; }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--warm-white);
  margin-bottom: 16px;
}
.product-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s; }
.product-img.secondary { opacity: 0; }
.product-img-wrap:hover .product-img.primary { opacity: 0; }
.product-img-wrap:hover .product-img.secondary { opacity: 1; }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(250,248,245,0.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.wishlist-btn svg { width: 16px; height: 16px; }
.product-img-wrap:hover .wishlist-btn { opacity: 1; }
.wishlist-btn.active svg { fill: #e05252; stroke: #e05252; }

.product-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px;
}
.product-badge.sale { background: var(--sale-red); color: #fff; }
.product-badge.new { background: var(--new-green); color: #fff; }

/* Out of Stock overlay on card image */
.product-oos-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.52);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.product-oos-overlay span {
  background: #c0392b;
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
}
.product-img.oos-dimmed { filter: grayscale(40%); }

.quick-add { display: none; }

.product-category { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.product-name { font-family: var(--font-serif); font-size: 18px; font-weight: 400; margin-bottom: 4px; }
.product-name a { color: var(--dark); transition: color 0.2s; }
.product-name a:hover { color: var(--gold); }
.product-desc { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.price-current { font-size: 15px; font-weight: 500; color: var(--dark); }
.price-sale { font-size: 15px; font-weight: 600; color: var(--sale-red); }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.product-swatches { display: flex; gap: 6px; }
.swatch {
  width: 18px; height: 18px;
  border-radius: 50%; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.swatch:hover { transform: scale(1.2); }
.swatch.active { border-color: var(--dark); }

/* ── SHOP BY ROOM ── */
.shop-by-room { padding: 80px 40px; }
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 16px;
  max-width: 1280px; margin: 0 auto;
}
.room-card {
  position: relative;
  overflow: hidden;
  display: block;
}
.room-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.room-card:hover img { transform: scale(1.04); }
.room-card.room-large { grid-row: span 2; }
.room-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  color: #fff;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.room-label h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; }
.room-label span { font-size: 12px; opacity: 0.85; }

/* ── EDITORIAL SPLIT ── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 520px;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
  background: var(--dark);
  color: var(--cream);
}
.editorial-text .eyebrow { color: var(--gold); }
.editorial-text h2 { font-family: var(--font-serif); font-size: 42px; font-weight: 400; margin-bottom: 20px; }
.editorial-text p { color: rgba(250,248,245,0.75); margin-bottom: 24px; line-height: 1.8; }
.editorial-list { margin-bottom: 36px; }
.editorial-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: rgba(250,248,245,0.8); }
.editorial-list li::before { content: '✦'; font-size: 8px; margin-right: 10px; color: var(--gold); }

/* ── COLLECTION BANNER ── */
.collection-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.collection-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.collection-banner-overlay {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 40px;
}
.collection-banner-overlay h2 { font-family: var(--font-serif); font-size: 58px; font-weight: 400; margin-bottom: 16px; }
.collection-banner-overlay p { margin-bottom: 32px; opacity: 0.85; line-height: 1.8; font-size: 15px; }

/* ── JOURNAL ── */
.journal-section { padding: 80px 40px; background: var(--warm-white); }
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1280px; margin: 0 auto;
}
.journal-card { display: flex; flex-direction: column; }
.journal-large { grid-column: span 2; }
.journal-img { overflow: hidden; }
.journal-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s; }
.journal-large .journal-img img { height: 340px; }
.journal-card:hover .journal-img img { transform: scale(1.04); }
.journal-info { padding: 20px 0; flex: 1; display: flex; flex-direction: column; }
.journal-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.journal-info h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 400; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.journal-large .journal-info h3 { font-size: 28px; }
.journal-info p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.journal-read { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); border-bottom: 1px solid currentColor; padding-bottom: 2px; margin-top: auto; align-self: flex-start; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--dark);
  padding: 56px 40px;
}
.trust-item {
  flex: 1; max-width: 260px;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 32px; height: 32px; color: var(--gold); margin: 0 auto 16px; }
.trust-item h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.trust-item p { font-size: 12px; color: rgba(250,248,245,0.55); }

/* ── INSTAGRAM ── */
.instagram-section { padding: 80px 40px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1280px; margin: 0 auto;
}
.insta-tile { position: relative; overflow: hidden; aspect-ratio: 1; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-tile:hover img { transform: scale(1.06); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.insta-tile:hover .insta-overlay { opacity: 1; }

/* ── NEWSLETTER ── */
.newsletter-section { padding: 80px 40px; background: var(--off-white); }
.newsletter-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-text h2 { font-family: var(--font-serif); font-size: 38px; font-weight: 400; color: var(--dark); margin-bottom: 12px; }
.newsletter-text p { color: var(--text-light); line-height: 1.8; }
.newsletter-fields { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.nl-input {
  flex: 1; min-width: 140px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-sans); font-size: 14px;
  outline: none; color: var(--dark);
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--dark); }
.nl-disclaimer { font-size: 11px; color: var(--text-muted); }
.nl-disclaimer a { text-decoration: underline; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(250,248,245,0.7); }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 60px; padding: 72px 40px 48px; border-bottom: 1px solid rgba(255,255,255,0.08); max-width: 1280px; margin: 0 auto; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-weight: 500; letter-spacing: 0.15em; color: var(--cream); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.footer-logo .footer-amp { color: var(--gold); }
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; }
.footer-logo-img.footer-logo-def { display: inline-block; filter: invert(1); opacity: 0.85; }
.footer-logo-img.footer-logo-drk { display: none; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(250,248,245,0.55); margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(250,248,245,0.5); transition: color 0.2s; }
.footer-social a:hover { color: var(--cream); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links { display: flex; gap: 32px; justify-content: space-between; }
.footer-col h5 { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(250,248,245,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  padding: 24px 40px;
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: rgba(250,248,245,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(250,248,245,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--cream); }
.footer-payments { display: flex; gap: 8px; }
.payment-icon {
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  border-radius: 3px;
}

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  top: 0; right: -480px;
  width: 440px; max-width: 100%;
  height: 100vh;
  background: var(--cream);
  z-index: 3000;
  display: flex; flex-direction: column;
  transition: right 0.38s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--dark); }
.cart-close { padding: 4px; }
.cart-close svg { width: 20px; height: 20px; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 24px; }
.cart-item { display: flex; gap: 16px; }
.cart-item img { width: 80px; height: 100px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-serif); font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--border); width: fit-content; }
.cart-item-qty button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--dark); transition: background 0.2s; }
.cart-item-qty button:hover { background: var(--off-white); }
.cart-item-qty span { width: 40px; text-align: center; font-size: 14px; border-left: 1px solid var(--border); border-right: 1px solid var(--border); line-height: 32px; }
.cart-item-price { font-size: 15px; font-weight: 500; color: var(--dark); flex-shrink: 0; }
.cart-footer { padding: 20px 28px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-subtotal span:first-child { font-size: 14px; color: var(--text-light); }
.cart-subtotal span:last-child { font-size: 18px; font-family: var(--font-serif); font-weight: 500; color: var(--dark); }
.cart-shipping-note { font-size: 12px; color: var(--new-green); margin-bottom: 16px; }
.cart-checkout-btn { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.cart-view-bag { display: block; text-align: center; font-size: 12px; color: var(--text-light); text-decoration: underline; }
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LOADING SCREEN ── */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity 0.6s ease;
}
#loading-screen.fade-out { opacity: 0; pointer-events: none; }
.loading-logo-text {
  font-family: var(--font-serif);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 600; letter-spacing: 0.12em;
  color: var(--cream); text-align: center;
  animation: loadFadeUp 0.7s ease forwards;
}
.loading-logo-text span { color: var(--gold); }
.loading-tagline {
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,248,245,0.4); text-align: center;
  animation: loadFadeUp 0.7s 0.15s ease both;
}
.loading-bar-wrap {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden; position: relative;
  margin-top: 8px;
}
.loading-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--gold);
  animation: loadFill 1.85s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loadFill { to { width: 100%; } }
@keyframes loadFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }

/* ── MOBILE NAV ── */
.mobile-menu-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer; border: none; background: none; padding: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
  transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1500;
  padding: 0;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav-overlay.active { transform: translateX(0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-header .logo {
  position: static;
  transform: none;
  top: auto;
  bottom: auto;
  padding: 0;
  grid-template-rows: auto auto;
  height: 48px;
  min-height: unset;
  column-gap: 8px;
  align-items: center;
}
.mobile-nav-header .logo .logo-icon { height: 48px; width: auto; }
.mobile-nav-header .logo .logo-name { font-size: 20px; align-self: end; }
.mobile-nav-header .logo .logo-subtitle { font-size: 11px; letter-spacing: 0; align-self: start; margin-top: 1px; }
.mobile-nav-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-nav-links {
  display: flex; flex-direction: column;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav-links a {
  display: block;
  padding: 18px 28px;
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: var(--dark);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--gold); padding-left: 36px; }
.mobile-nav-links a.mob-active { color: var(--gold); border-left: 3px solid var(--gold); }
.mobile-nav-actions {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}
.mobile-nav-actions .icon-btn {
  width: 46px; height: 46px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  flex-shrink: 0;
}
.mobile-nav-actions .icon-btn svg { width: 20px; height: 20px; }
.mobile-nav-actions .lang-btn { font-size: 13px !important; padding: 10px 22px !important; letter-spacing: 0.08em !important; }

.mobile-nav-contact {
  padding: 28px 28px 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.mobile-nav-contact a {
  font-size: 14px; color: var(--text-light);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.mobile-nav-contact a:hover { color: var(--dark); }
.mobile-nav-contact svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav-social { display: flex; gap: 16px; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.mobile-nav-social a { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ── RESPONSIVE: TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .header-top { padding: 14px 24px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .journal-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .journal-large { grid-column: span 2; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .featured-banner { padding: 0 24px 60px; }
  .featured-banner-text { padding: 48px 48px; }
  .editorial-text { padding: 60px 48px; }
  .footer-top { padding: 56px 24px 40px; gap: 40px; }
  .footer-bottom { padding: 20px 24px; }
  .products-section { padding: 60px 24px; }
  .shop-by-room { padding: 60px 24px; }
  .trust-strip { padding: 48px 24px; }
}

/* ── RESPONSIVE: MOBILE (≤768px) ── */
@media (max-width: 768px) {
  /* Header */
  .header-top { padding: 12px 16px; }
  .hq-text { display: none; }
  .mobile-menu-btn { display: flex; }
  .main-nav { display: none; }
  .header-actions { gap: 2px; }
  .header-actions .icon-btn { width: 36px; height: 36px; }
  /* Hide wishlist only; keep search + account + cart */
  .header-actions .icon-btn[aria-label="Wishlist"] { display: none; }

  /* Logo center on mobile */
  .header-top { position: relative; }
  .logo { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); padding: 2px 0; column-gap: 8px; }
  .logo-name { font-size: 22px; }
  .logo-subtitle { font-size: 13px; letter-spacing: 0; margin-top: 2px; }

  /* Hero — tall enough to show all content + buttons without clipping */
  .hero { height: 105vw; min-height: 480px; }
  .hero-content { padding: 32px 16px 68px; max-width: 100%; z-index: 3; }
  .hero-controls { bottom: 8px; z-index: 2; }
  /* Hide prev/next arrows on mobile — users swipe; clutter removed */
  .hero-prev, .hero-next { display: none; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 8px; }
  .hero-ctas .btn { width: auto; padding: 10px 16px; font-size: 10px; letter-spacing: 0.07em; }

  /* Category strip */
  .category-strip { padding: 28px 16px; justify-content: flex-start; gap: 16px; }
  .category-img { width: 70px; height: 70px; }

  /* Products */
  .products-section { padding: 48px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-grid.four-col { grid-template-columns: repeat(2, 1fr); }

  /* Featured banner */
  .featured-banner { padding: 0 16px 48px; }
  .featured-banner-inner { grid-template-columns: 1fr; }
  .featured-banner-img img { height: 260px; }
  .featured-banner-text { padding: 36px 28px; }
  .featured-banner-text h2 { font-size: 30px; }

  /* Rooms */
  .shop-by-room { padding: 48px 16px; }
  .rooms-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .room-card { height: 220px; }
  .room-card.room-large { grid-row: span 1; height: 260px; }

  /* Editorial */
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-img { height: 260px; overflow: hidden; }
  .editorial-img img { height: 260px; width: 100%; object-fit: cover; }
  .editorial-text { padding: 40px 24px; }
  .editorial-text h2 { font-size: 30px; }

  /* Collection banner */
  .collection-banner { min-height: 420px; }
  .collection-banner-overlay h2 { font-size: 36px; }
  .collection-banner-overlay p { font-size: 14px; }

  /* Journal */
  .journal-section { padding: 48px 16px; }
  .journal-grid { grid-template-columns: 1fr; gap: 28px; }
  .journal-large { grid-column: span 1; }
  .journal-img img, .journal-large .journal-img img { height: 220px; }

  /* Trust */
  .trust-strip { flex-direction: column; align-items: center; padding: 40px 20px; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 28px 0; max-width: 100%; width: 100%; }
  .trust-item:last-child { border-bottom: none; }

  /* Instagram */
  .instagram-section { padding: 48px 16px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  /* Newsletter */
  .newsletter-section { padding: 48px 16px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-text h2 { font-size: 28px; }
  .newsletter-fields { flex-direction: column; }
  .nl-input { width: 100%; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; padding: 40px 16px 28px; gap: 36px; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
  .footer-col { min-width: calc(50% - 12px); }
  .footer-bottom { padding: 16px; flex-direction: column; text-align: center; gap: 12px; }

  /* Section header */
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(26px, 6vw, 40px); }
}

/* ── RESPONSIVE: SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .products-grid { gap: 10px; }
  .hero { height: 120vw; min-height: 480px; }
  .hero-content { padding: 28px 16px 64px; }
  .hero-controls { bottom: 6px; }
  .category-img { width: 60px; height: 60px; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-col { min-width: 100%; }
  .trust-strip { padding: 32px 16px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .announcement-bar { font-size: 11px; }
  .category-pill span { font-size: 10px; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 48px); }
  .hero-h1-sub { font-size: clamp(20px, 6vw, 36px); }
  /* Extra-compact header on small phones */
  .header-actions .icon-btn { width: 32px; height: 32px; }
  .header-actions .icon-btn svg { width: 17px; height: 17px; }
  .hero-ctas .btn { padding: 9px 13px; font-size: 9px; }
}

/* ── RESPONSIVE: LARGE TV (≥1600px) ── */
@media (min-width: 1600px) {
  .header-top { padding: 20px 80px; }
  .main-nav .nav-link { padding: 16px 24px; font-size: 13px; }
  .hero-content { padding: 88px 120px 60px; max-width: 800px; }
  .products-grid { max-width: 1600px; }
  .footer-top { max-width: 1600px; }
  .footer-bottom { max-width: 1600px; }
  .section-header h2 { font-size: 60px; }
}

/* ── NAV FIXES ── */
/* Ensure header z-index stacks above all content */
.site-header { z-index: 1000; }
/* Smooth logo transition on scroll */
.site-header.scrolled .logo { letter-spacing: 0.04em; }
/* iPad: show contact, hide some icons */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-top { padding: 14px 28px; }
  .mega-menu { min-width: 480px; }
  .mega-featured { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   BRANDS MARQUEE
   ========================================== */
.brands-marquee-section {
  padding: 64px 0;
  background: var(--dark);
  overflow: hidden;
}
.brands-marquee-section .bm-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 42px;
}
.brands-marquee-section .bm-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.brands-marquee-section .bm-header h2 span { color: var(--gold); }
.brands-marquee-section .bm-header p {
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  margin-top: 10px;
  letter-spacing: 0.06em;
}
.bm-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.bm-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: bmScroll 35s linear infinite;
}
.bm-inner.paused { animation-play-state: paused; }
@keyframes bmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bm-item {
  display: inline-flex;
  align-items: center;
  padding: 16px 38px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.bm-item-name {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.7vw, 25px);
  font-weight: 500;
  color: rgba(255,255,255,0.27);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.bm-item:hover .bm-item-name { color: var(--gold); }
.bm-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  pointer-events: none;
}

/* Brand hover popup */
.bm-popup {
  position: fixed;
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.06);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.bm-popup.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.bm-popup-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bm-popup-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 9px;
  font-weight: 600;
}
.bm-popup-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.bm-popup-cat {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.bm-popup-cat:hover { background: var(--dark); color: #fff; }
.bm-popup-all {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.bm-popup-all:hover { background: var(--gold); color: var(--dark); }

/* ==========================================
   WISHLIST DRAWER
   ========================================== */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--cream);
  z-index: 9100;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 50px rgba(0,0,0,0.18);
}
.wishlist-drawer.open { transform: translateX(0); }
.wishlist-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s;
}
.wishlist-backdrop.active { opacity: 1; pointer-events: all; }
.wishlist-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.wishlist-drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wishlist-drawer-title h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.wl-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
}
.wishlist-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
  opacity: 0.5;
  border-radius: 6px;
  transition: opacity 0.2s, background 0.2s;
}
.wishlist-drawer-close:hover { opacity: 1; background: rgba(0,0,0,0.05); }
.wishlist-drawer-close svg { width: 20px; height: 20px; display: block; }
.wishlist-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}
.wishlist-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  padding: 60px 0;
  text-align: center;
}
.wishlist-empty-state svg { width: 52px; height: 52px; opacity: 0.18; color: var(--dark); }
.wishlist-empty-state h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark);
  opacity: 0.5;
}
.wishlist-empty-state p {
  font-size: 13px;
  color: rgba(0,0,0,0.38);
  line-height: 1.6;
  max-width: 220px;
}
.wl-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}
.wl-item:last-child { border-bottom: none; }
.wl-img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.04);
}
.wl-img-placeholder {
  width: 76px;
  height: 76px;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
}
.wl-info { flex: 1; min-width: 0; }
.wl-cat {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 4px;
  font-weight: 600;
}
.wl-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.35;
}
.wl-price { font-size: 14px; color: var(--dark); font-weight: 500; }
.wl-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(0,0,0,0.25);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
  margin-top: 2px;
}
.wl-remove:hover { color: #c0392b; background: rgba(192,57,43,0.07); }
.wl-remove svg { width: 16px; height: 16px; display: block; }
.wishlist-drawer-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.wl-browse-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.wl-browse-btn:hover { background: var(--gold); color: var(--dark); }
.wishlist-btn.saved svg { fill: #c0392b; stroke: #c0392b; }
.wishlist-btn.saved { color: #c0392b; }
#wishlist-btn { position: relative; }
.wl-header-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
.wl-header-count.show { display: flex; }

/* ==========================================
   SEARCH RESULTS PANEL
   ========================================== */
.search-results-panel {
  width: 100%;
  max-width: 680px;
  max-height: 55vh;
  overflow-y: auto;
  margin-top: 18px;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.search-results-panel.visible { display: block; }
.sr-group { margin-bottom: 6px; }
.sr-group-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 6px 6px;
  font-weight: 600;
}
.sr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  transition: background 0.15s;
}
.sr-item:hover { background: rgba(0,0,0,0.05); }
.sr-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.sr-text { flex: 1; min-width: 0; }
.sr-title { font-size: 14px; color: var(--dark); font-weight: 500; margin-bottom: 2px; }
.sr-sublabel { font-size: 11px; color: var(--text-muted); letter-spacing: 0.03em; }
.sr-badge {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
  color: var(--text-muted);
  flex-shrink: 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sr-thumb {
  width: 46px; height: 46px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0; background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
}
.sr-price {
  font-size: 13px; font-weight: 700; color: var(--dark);
  white-space: nowrap; flex-shrink: 0;
}
.sr-price-sale { color: #c0392b; }
.sr-loading {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 32px 20px; color: var(--text-muted); font-size: 13px;
}
.sr-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12); border-top-color: var(--gold);
  animation: sr-spin 0.7s linear infinite; display: inline-block; flex-shrink: 0;
}
@keyframes sr-spin { to { transform: rotate(360deg); } }
.sr-no-results {
  text-align: center;
  padding: 44px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.sr-no-results strong { color: var(--dark); }
@media (max-width: 768px) {
  .wishlist-drawer { width: 100vw; }
  .bm-item { padding: 14px 22px; }
  .bm-item-name { font-size: 13px; }
  .bm-popup { width: 240px; padding: 18px 20px; }
  .bm-popup-brand { font-size: 18px; }
}

/* ==========================================
   PAYMENT METHODS SECTION
   ========================================== */
.payment-section {
  background: var(--off-white);
  padding: 32px 40px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.payment-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  font-weight: 600;
  margin-bottom: 20px;
}
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
}
.payment-icon {
  width: 52px;
  height: 52px;
  background: var(--dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-icon svg { width: 24px; height: 24px; stroke: var(--cream); }
.payment-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.payment-desc {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}
.payment-sep {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
  .payment-section { padding: 28px 20px; }
  .payment-method { padding: 12px 20px; }
  .payment-sep { width: 60px; height: 1px; }
  .payment-methods { flex-direction: column; }
}

/* ==========================================
   PRODUCT DETAIL MODAL
   ========================================== */
.pd-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pd-modal-backdrop.open { opacity: 1; pointer-events: all; }
.pd-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  width: min(900px, 96vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  z-index: 9201;
  display: flex;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}
.pd-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.pd-modal-img-col {
  width: 45%;
  flex-shrink: 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.pd-modal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd-modal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.pd-modal-badge.sale { background: #c0392b; }
.pd-modal-badge.new { background: var(--dark); }
.pd-modal-badge.out-of-stock { background: #555; }

/* Stock indicator */
.pd-stock-indicator { margin: 6px 0 10px; font-size: 13px; font-weight: 500; }
.stock-qty { color: #27ae60; font-weight: 600; }
.stock-out { color: #c0392b; font-weight: 700; font-size: 14px; }
.pd-modal-info-col {
  flex: 1;
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  min-width: 0;
}
.pd-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.pd-modal-close:hover { background: #fff; }
.pd-modal-close svg { width: 16px; height: 16px; }
.pd-cat-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  font-weight: 600;
  margin-bottom: 10px;
}
.pd-modal-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.pd-modal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.pd-price-main {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}
.pd-price-main.sale { color: #c0392b; }
.pd-price-original {
  font-size: 16px;
  color: rgba(0,0,0,0.35);
  text-decoration: line-through;
}
.pd-modal-desc {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pd-features-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  font-weight: 600;
  margin-bottom: 10px;
}
.pd-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
}
.pd-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.pd-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}
.pd-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
}
.pd-btn-wa:hover { background: #1da851; }
.pd-btn-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.pd-btn-wl {
  padding: 13px 16px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.pd-btn-wl:hover { background: var(--gold); color: var(--dark); }
.pd-btn-wl svg { width: 16px; height: 16px; }
.pd-btn-wl.saved svg { fill: #c0392b; stroke: #c0392b; }
.pd-btn-wl.saved { background: rgba(192,57,43,0.08); color: #c0392b; }
.pd-btn-cart {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid var(--dark);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex: 1;
}
.pd-btn-cart:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.pd-btn-cart svg { flex-shrink: 0; }

/* View Details button on product cards */
.view-details-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.view-details-btn:hover { background: var(--dark); color: var(--cream); }

.card-add-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--dark);
  color: var(--cream);
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  position: relative;
  z-index: 2;
}
.card-add-btn:hover { background: #333330; }
.card-add-btn:active { transform: scale(0.98); }
.card-add-btn.added { background: var(--new-green); }

@media (max-width: 700px) {
  .pd-modal { flex-direction: column; width: 96vw; max-height: 95vh; border-radius: 12px; }
  .pd-modal-img-col { width: 100%; height: 220px; }
  .pd-modal-info-col { padding: 22px 20px 20px; }
  .pd-modal-actions { flex-direction: column; }
}

/* ==========================================
   LANGUAGE TOGGLE BUTTON
   ========================================== */
.lang-btn {
  font-size: 11px;
  letter-spacing: 0.07em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.lang-btn:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }


/* ── LOGO ICON ── */
.logo-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon-drk { display: none; }
html.dark-mode .logo-icon-def { display: none; }
html.dark-mode .logo-icon-drk { display: block; }

/* ── THEME TOGGLE ── */
#theme-toggle, #mobile-theme-toggle { position: relative; }
#theme-toggle .icon-moon, #mobile-theme-toggle .icon-moon { display: none; }
html.dark-mode #theme-toggle .icon-sun, html.dark-mode #mobile-theme-toggle .icon-sun { display: none; }
html.dark-mode #theme-toggle .icon-moon, html.dark-mode #mobile-theme-toggle .icon-moon { display: block; }

/* ── DARK MODE ── */
html.dark-mode {
  --cream: #1a1a18;
  --warm-white: #222220;
  --off-white: #2a2a27;
  --dark: #f0ebe3;
  --dark-mid: #d8d2ca;
  --text: #cec8c0;
  --text-light: #8a8278;
  --text-muted: #5a5550;
  --border: #363330;
  --border-light: #2c2a27;
  --gold: #4a7fdb;
  color-scheme: dark;
}
html.dark-mode body { background: #1a1a18; color: #cec8c0; }
html.dark-mode .site-header { background: #222220; border-bottom-color: #363330; }
html.dark-mode .mega-menu { background: #2a2a27; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
html.dark-mode .mega-menu a { color: #cec8c0; }
html.dark-mode .mega-menu h4 { color: #f0ebe3; }
html.dark-mode .main-nav .nav-link { color: #cec8c0; }
html.dark-mode .logo { color: #f0ebe3; }
html.dark-mode .logo-name { color: #f0ebe3; }
html.dark-mode .icon-btn { color: #cec8c0; }
html.dark-mode .mobile-nav-overlay { background: #1a1a18; border-right-color: #363330; }
html.dark-mode .mobile-nav-link { color: #cec8c0; border-bottom-color: #363330; }
html.dark-mode .mobile-nav-close { color: #cec8c0; }
html.dark-mode .mobile-nav-actions { border-top-color: #363330; }
html.dark-mode .mobile-nav-actions .icon-btn { background: #252522; border-color: #3d3a35; color: #d4cfc8; }
html.dark-mode .mobile-nav-actions .icon-btn:hover { background: #2e2e2a; }
html.dark-mode .mobile-nav-actions .lang-btn { border-color: #8a8580; color: #d4cfc8; background: transparent; }
html.dark-mode .mobile-nav-actions .lang-btn:hover { background: #d4cfc8; color: #1a1a18; border-color: #d4cfc8; }
html.dark-mode .hero-slide::after { background: rgba(0,0,0,0.55); }
html.dark-mode .products-section { background: #1a1a18; }
html.dark-mode .products-section.alt-bg { background: #222220; }
html.dark-mode .product-card { background: #222220; border-color: #363330; }
html.dark-mode .product-name a { color: #f0ebe3; }
html.dark-mode .product-category { color: #8a8278; }
html.dark-mode .product-desc { color: #8a8278; }
html.dark-mode .card-add-btn { background: #f0ebe3; color: #1a1a18; }
html.dark-mode .card-add-btn:hover { background: #e0dbd3; }
html.dark-mode .card-add-btn.added { background: var(--new-green); color: #fff; }
html.dark-mode .trust-strip { background: #111110; }
html.dark-mode .trust-item h4 { color: #f0ebe3; }
html.dark-mode .trust-item p { color: #8a8278; }
html.dark-mode .section-header h2 { color: #f0ebe3; }
html.dark-mode .section-header p { color: #8a8278; }
html.dark-mode .category-pill { color: #cec8c0; }
html.dark-mode .category-pill:hover { color: #f0ebe3; }
html.dark-mode .featured-banner-text h2 { color: #f0ebe3; }
html.dark-mode .featured-banner-text p { color: #cec8c0; }
html.dark-mode .editorial-text { background: #2a2a27; color: #f0ebe3; }
html.dark-mode .editorial-text h2 { color: #f0ebe3; }
html.dark-mode .editorial-text p { color: rgba(240,235,227,0.75); }
html.dark-mode .editorial-list li { color: rgba(240,235,227,0.8); border-bottom-color: rgba(255,255,255,0.1); }
html.dark-mode .brands-section { background: #222220; }
html.dark-mode .brand-logo { filter: invert(1) brightness(0.7); }
/* Brands marquee: background turns white in dark mode (var(--dark) flips), so fix all text */
html.dark-mode .brands-marquee-section { background: #f0ebe3; }
html.dark-mode .brands-marquee-section .bm-header h2 { color: #1a1a18; }
html.dark-mode .brands-marquee-section .bm-header p { color: rgba(26,26,24,0.5); }
html.dark-mode .bm-item-name { color: rgba(26,26,24,0.45); }
html.dark-mode .bm-item:hover .bm-item-name { color: #4a7fdb; }
html.dark-mode .bm-sep { background: rgba(26,26,24,0.18); }
html.dark-mode .payment-section { background: #222220; }
html.dark-mode .payment-method { color: #cec8c0; }
html.dark-mode .payment-icon svg { stroke: #4a7fdb; }
html.dark-mode .payment-name { color: #f0ebe3; }
html.dark-mode .payment-desc { color: #8a8278; }
html.dark-mode .payment-sep { background: #363330; }
html.dark-mode .payment-label { color: rgba(255,255,255,0.6); }
html.dark-mode .site-footer { background: #111110; }
html.dark-mode .footer-bottom { background: #0d0d0c; border-top-color: #252320; }
html.dark-mode .footer-logo { color: #f0ebe3; }
html.dark-mode .footer-desc { color: #8a8278; }
html.dark-mode .footer-col h5 { color: #f0ebe3; }
html.dark-mode .footer-col a { color: #8a8278; }
html.dark-mode .footer-col a:hover { color: #4a7fdb; }
html.dark-mode .footer-bottom p { color: #5a5550; }
html.dark-mode .wishlist-drawer { background: #1a1a18; border-left-color: #363330; }
html.dark-mode .wishlist-drawer h3 { color: #f0ebe3; }
html.dark-mode .wl-empty p { color: #8a8278; }
html.dark-mode .wl-item-name { color: #f0ebe3; }
html.dark-mode .wl-item-price { color: #4a7fdb; }
html.dark-mode .pd-modal { background: #222220; }
html.dark-mode .pd-modal-name { color: #f0ebe3; }
html.dark-mode .pd-modal-desc { color: #cec8c0; }
html.dark-mode .pd-cat-tag { color: #8a8278; }
html.dark-mode .pd-features li { color: #cec8c0; }
html.dark-mode .pd-features-title { color: #f0ebe3; }
html.dark-mode .pd-color-name { color: #8a8278; }
html.dark-mode .filter-chip { background: #2a2a27; border-color: #363330; color: #cec8c0; }
html.dark-mode .filter-chip:hover,
html.dark-mode .filter-chip.active { background: #f0ebe3; color: #1a1a18; border-color: #f0ebe3; }
html.dark-mode .filter-bar { background: #222220; border-color: #363330; }
html.dark-mode .page-hero { background: #111110; }
html.dark-mode .page-hero h1 { color: #f0ebe3; }
html.dark-mode .page-hero p { color: #8a8278; }
html.dark-mode .room-label { background: rgba(26,26,24,0.85); }
html.dark-mode .room-label h3 { color: #f0ebe3; }
html.dark-mode .room-label span { color: #4a7fdb; }
html.dark-mode .btn-dark { background: #f0ebe3; color: #1a1a18; }
html.dark-mode .btn-dark:hover { background: #d8d2ca; }
html.dark-mode .hq-link { color: #cec8c0; }
html.dark-mode .cart-drawer { background: #1a1a18; border-left-color: #363330; }
html.dark-mode .lang-btn { background: #2a2a27; color: #cec8c0; border-color: #363330; }
html.dark-mode .lang-btn:hover { background: #363330; color: #f0ebe3; }
html.dark-mode .shop-by-room { background: #1a1a18; }
html.dark-mode .collection-banner-overlay p { color: rgba(240,235,227,0.85); }

/* ── PRODUCT COLOR PICKER (in modal) ── */
.pd-swatches-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 6px; }
.pd-swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s, outline-color 0.18s;
  padding: 0;
}
.pd-swatch:hover { transform: scale(1.1); }
.pd-swatch.active { outline-color: var(--dark); transform: scale(1.15); }
.pd-color-name { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; min-height: 16px; }

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  .announcement-bar { font-size: 11px; padding: 8px 0; }
  /* Both toggles live inside the mobile menu — hide them from the header */
  .header-actions #lang-toggle,
  .header-actions #theme-toggle { display: none !important; }
  /* Hide any theme-toggle that ended up in the left zone (legacy) */
  #header-left-extra #theme-toggle { display: none; }
  /* Hide WhatsApp icon link on mobile to prevent left-zone crowding */
  .hq-link { display: none; }
}
@media (max-width: 480px) {
  .announcement-bar { font-size: 10px; }
}

/* ── DARK MODE: MOBILE NAV ── */
html.dark-mode .mobile-menu-btn span { background: #f0ebe3; }
html.dark-mode .mobile-nav-overlay .mobile-nav-close svg { stroke: #f0ebe3; }

/* ── DARK MODE: ANNOUNCEMENT BAR ── */
html.dark-mode .announcement-bar { background: #111110; color: #fff; border-bottom-color: transparent; }

/* ── DARK MODE: SEARCH RESULTS ── */
html.dark-mode .search-overlay { background: rgba(26,26,24,0.97); }
html.dark-mode .search-overlay input { background: #2a2a27; border-color: #363330; color: #f0ebe3; }
html.dark-mode .sr-group-title { color: rgba(255,255,255,0.32); }
html.dark-mode .sr-item { color: #f0ebe3; }
html.dark-mode .sr-item:hover { background: rgba(255,255,255,0.08); }
html.dark-mode .sr-icon { background: rgba(255,255,255,0.07); }
html.dark-mode .sr-title { color: rgba(255,255,255,0.9); }
html.dark-mode .sr-sublabel { color: rgba(255,255,255,0.38); }
html.dark-mode .sr-badge { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
html.dark-mode .sr-no-results { color: rgba(255,255,255,0.3); }
html.dark-mode .sr-no-results strong { color: rgba(255,255,255,0.6); }
html.dark-mode .search-suggestions a { color: #cec8c0; border-color: #363330; }
html.dark-mode .search-suggestions a:hover { background: #f0ebe3; color: #1a1a18; }
html.dark-mode .search-close svg { stroke: #f0ebe3; }

/* ── LOADING SCREEN LOGO ── */
.loading-logo-img {
  width: min(82vw, 820px);
  max-height: 55vh;
  height: auto; object-fit: contain;
  mix-blend-mode: screen;
  animation: loadFadeUp 0.6s ease forwards;
  display: block; margin: 0 auto;
}

/* ── FIXED SOCIAL BUTTONS ── */
.fixed-social-btns {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fixed-social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.fixed-social-btn:hover { transform: scale(1.1); box-shadow: 0 4px 18px rgba(0,0,0,0.28); }
.fixed-social-btn svg { width: 22px; height: 22px; }
.fixed-social-wa { background: #25d366; }
.fixed-social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.fixed-social-fb { background: #1877f2; }

/* ── HEADER LEFT ZONE ── */
.header-left-extra { display: flex; align-items: center; gap: 2px; }

/* ── CART ITEM REMOVE ── */
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }
.cart-item-remove {
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  font-size: 18px; line-height: 1; padding: 0; transition: color 0.2s;
}
.cart-item-remove:hover { color: #c0392b; }
html.dark-mode .cart-item-remove { color: #6a6560; }
html.dark-mode .cart-item-remove:hover { color: #e74c3c; }

/* ── PRODUCT GALLERY IN MODAL ── */
.pd-gallery-wrap { position: relative; width: 100%; height: 100%; }
.pd-gallery-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity 0.4s; }
.pd-gallery-dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0; position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.25)); }
.pd-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s, transform 0.2s; border: none; padding: 0; }
.pd-dot.active { background: #fff; transform: scale(1.3); }

/* ── DARK MODE: PROCESS SECTION (services.html override) ── */
html.dark-mode .process-section { background: #1a1a18 !important; }
html.dark-mode .process-section .section-header h2 { color: #f0ebe3 !important; }
html.dark-mode .process-section .section-header p { color: rgba(240,235,227,0.55) !important; }
html.dark-mode .step h4 { color: #f0ebe3 !important; }
html.dark-mode .step p { color: rgba(240,235,227,0.55) !important; }
html.dark-mode .step-num { background: #1a1a18 !important; }
html.dark-mode .service-card { background: #2a2a27 !important; border-color: #363330 !important; }
html.dark-mode .service-card h3 { color: #f0ebe3 !important; }
html.dark-mode .service-card p { color: #8a8278 !important; }
html.dark-mode .branch-card { border-color: #363330 !important; }
html.dark-mode .branch-info h3 { color: #f0ebe3 !important; }
html.dark-mode .branch-info p { color: #8a8278 !important; }
html.dark-mode .branch-tag { background: #2a2a27 !important; color: #8a8278 !important; }
html.dark-mode .warranty-section { background: #222220 !important; }
html.dark-mode .warranty-text h2 { color: #f0ebe3 !important; }
html.dark-mode .warranty-text p { color: #8a8278 !important; }
html.dark-mode .warranty-list li { color: #cec8c0 !important; border-bottom-color: #363330 !important; }

/* ── DARK MODE: CONTACT PAGE ── */
html.dark-mode .contact-info-section { background: #1a1a18 !important; }
html.dark-mode .contact-info-section h2 { color: #f0ebe3 !important; }
html.dark-mode .contact-info-section > p { color: rgba(240,235,227,0.6) !important; }
html.dark-mode .info-text h4 { color: rgba(240,235,227,0.5) !important; }
html.dark-mode .info-text a, html.dark-mode .info-text p { color: #f0ebe3 !important; }
html.dark-mode .branches-contact { background: #1c1c1a !important; }
html.dark-mode .branch-contact-card { background: #2a2a27 !important; border-color: #363330 !important; }
html.dark-mode .faq-item { border-bottom-color: #363330 !important; }
html.dark-mode .faq-question { color: #f0ebe3 !important; }
html.dark-mode .faq-answer { color: #8a8278 !important; }
html.dark-mode .contact-form-section h2 { color: #f0ebe3 !important; }
html.dark-mode .contact-form-section > p { color: #8a8278 !important; }
html.dark-mode .form-input, html.dark-mode .form-textarea, html.dark-mode .form-select { background: #2a2a27 !important; border-color: #363330 !important; color: #f0ebe3 !important; }
html.dark-mode .form-group label { color: #6a6560 !important; }
html.dark-mode .page-hero { background: #111110 !important; }
html.dark-mode .page-hero h1 { color: #f0ebe3 !important; }
html.dark-mode .page-hero p { color: rgba(240,235,227,0.6) !important; }

/* ── DARK MODE: LOADING SCREEN — always dark regardless of variable flip ── */
html.dark-mode #loading-screen { background: #1a1a18 !important; }
html.dark-mode .loading-logo-text { color: #f0ebe3 !important; }
html.dark-mode .loading-tagline { color: rgba(250,248,245,0.4) !important; }
html.dark-mode .loading-bar-wrap { background: rgba(255,255,255,0.08) !important; }

/* ── REVIEWS SECTION ── */
.reviews-section {
  padding: 80px 40px;
  background: var(--warm-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 48px auto 0;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
.review-stars {
  width: 96px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext y='13' font-size='14' fill='%23ddd'%3E★★★★★%3C/text%3E%3C/svg%3E") no-repeat left center;
  background-size: 96px 16px;
  position: relative;
  display: inline-block;
}
.stars-filled {
  position: absolute; top: 0; left: 0; height: 100%;
  overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext y='13' font-size='14' fill='%23b89a6a'%3E★★★★★%3C/text%3E%3C/svg%3E") no-repeat left center;
  background-size: 96px 16px;
}
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.review-name { font-weight: 600; font-size: 13px; color: var(--dark); letter-spacing: 0.02em; }
.review-rating {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(184,154,106,0.1);
  padding: 3px 9px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .reviews-section { padding: 56px 16px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .review-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
html.dark-mode .reviews-section { background: #1e1e1b; }
html.dark-mode .review-card { background: #252522; border-color: #363330; }
html.dark-mode .review-name { color: #f0ebe3; }
html.dark-mode .review-text { color: #8a8278; }

/* ── ORDER SUCCESS MODAL ── */
.order-success-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.order-success-overlay.show { opacity: 1; pointer-events: all; }
.order-success-modal {
  background: var(--cream);
  max-width: 440px; width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.order-success-overlay.show .order-success-modal { transform: translateY(0); }
.order-success-icon {
  width: 64px; height: 64px;
  background: rgba(184,154,106,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.order-success-icon svg { width: 32px; height: 32px; stroke: var(--gold); }
.order-success-modal h2 {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 400;
  color: var(--dark); margin-bottom: 12px;
}
.order-success-modal p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.order-success-meta {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--warm-white);
  border: 1px solid var(--border);
}
.order-success-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); justify-content: center; }
.order-success-item svg { flex-shrink: 0; stroke: var(--gold); }
.order-success-close { width: 100%; }
.order-invoice-btn { width: 100%; justify-content: center; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.order-invoice-btn.loading { opacity: 0.6; pointer-events: none; }
@media (max-width: 480px) {
  .order-success-modal { padding: 36px 24px; }
  .order-success-modal h2 { font-size: 22px; }
}
html.dark-mode .order-success-modal { background: #252522; }
html.dark-mode .order-success-modal h2 { color: #f0ebe3; }
html.dark-mode .order-success-meta { background: #1a1a18; border-color: #363330; }

/* ── CHECKOUT MODAL ── */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.checkout-overlay.show { opacity: 1; pointer-events: all; }
.checkout-modal {
  background: var(--cream);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.checkout-overlay.show .checkout-modal { transform: translateY(0); }
.checkout-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--cream); z-index: 1;
}
.checkout-modal-header h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--dark); }
.checkout-modal-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: none; background: none; font-size: 22px; cursor: pointer; color: var(--text-muted);
}
.checkout-modal-close:hover { color: var(--dark); }
.checkout-modal-body { padding: 20px 24px 28px; }
.checkout-section-title { font-family: var(--font-serif); font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 12px; }
.checkout-summary { margin-bottom: 20px; padding: 14px 16px; background: var(--warm-white, #faf8f5); border: 1px solid var(--border); }
.checkout-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-light); padding: 3px 0; }
.checkout-summary-total { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--dark); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-field { margin-bottom: 14px; }
.checkout-field label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.checkout-field .req { color: #c0392b; }
.checkout-field input, .checkout-field textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); background: var(--white, #fff);
  font-family: var(--font-sans); font-size: 13px; color: var(--dark);
  outline: none; transition: border-color 0.2s; resize: vertical;
}
.checkout-field input:focus, .checkout-field textarea:focus { border-color: var(--gold); }
.co-submit-btn { width: 100%; justify-content: center; display: flex; align-items: center; gap: 8px; margin-top: 4px; }
@media (max-width: 480px) {
  .checkout-row { grid-template-columns: 1fr; }
  .checkout-modal { max-height: 95vh; }
}
html.dark-mode .checkout-modal { background: #252522; }
html.dark-mode .checkout-modal-header { background: #252522; border-color: #363330; }
html.dark-mode .checkout-field input, html.dark-mode .checkout-field textarea { background: #1a1a18; border-color: #363330; color: #f0ebe3; }

/* ─────────────────────────────────────────────
   AUTH MODAL & ACCOUNT DASHBOARD
───────────────────────────────────────────── */
.auth-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.auth-overlay.open { opacity: 1; pointer-events: all; }

.auth-modal {
  background: var(--cream);
  width: 100%; max-width: 420px;
  padding: 40px 36px 36px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s;
}
.auth-overlay.open .auth-modal { transform: translateY(0); }

.auth-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--text-muted);
  line-height: 1; padding: 4px 8px;
  transition: color 0.2s;
}
.auth-modal-close:hover { color: var(--dark); }

.auth-logo-wrap { text-align: center; margin-bottom: 20px; }
.auth-logo-wrap img { width: 60px; height: 60px; object-fit: contain; }

.auth-modal h2 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--dark); text-align: center;
  margin-bottom: 4px;
}
.auth-modal-sub { text-align: center; font-size: 13px; color: var(--text-light); margin-bottom: 24px; }

.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.auth-tab {
  flex: 1; background: none; border: none; cursor: pointer;
  padding: 10px 0; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.auth-tab.active { color: var(--dark); border-bottom-color: var(--gold); }

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

.auth-field { margin-bottom: 16px; }
.auth-field label {
  display: block; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 6px;
}
.auth-field input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  background: var(--warm-white);
  color: var(--dark); font-size: 14px;
  outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.auth-field input:focus { border-color: var(--gold); }

.auth-error {
  font-size: 12px; color: #c0392b;
  margin-bottom: 12px; min-height: 16px;
}
.auth-submit { width: 100%; margin-top: 4px; justify-content: center; }

.auth-footer-link {
  text-align: center; margin-top: 18px;
  font-size: 12px; color: var(--text-muted);
}
.auth-footer-link button {
  background: none; border: none; cursor: pointer;
  color: var(--gold); text-decoration: underline;
  font-size: 12px;
}

/* Verify email panel */
.auth-verify { text-align: center; padding: 16px 0 8px; }
.auth-verify-icon { font-size: 48px; margin-bottom: 16px; }
.auth-verify h2 { margin-bottom: 12px; }
.auth-verify p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.auth-verify strong { color: var(--dark); }
.auth-verify-actions { display: flex; flex-direction: column; gap: 10px; }
.auth-back-link {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 13px;
  text-decoration: underline;
}

/* Account icon update */
.account-icon-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold);
  color: #fff; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
  pointer-events: none;
}

/* Account Dashboard (side drawer) */
.account-dashboard-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.account-dashboard-overlay.open { opacity: 1; pointer-events: all; }

.account-dashboard {
  position: fixed; top: 0; right: 0;
  width: 360px; max-width: 100vw; height: 100%;
  background: var(--cream);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 0 0 32px;
  display: flex; flex-direction: column;
}
.account-dashboard-overlay.open .account-dashboard { transform: translateX(0); }

.account-dash-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.account-dash-header h3 {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 400; color: var(--dark);
}
.account-dash-close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--text-muted);
  line-height: 1; padding: 4px;
  transition: color 0.2s;
}
.account-dash-close:hover { color: var(--dark); }

.account-dash-profile {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.account-avatar-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold);
  color: #fff; font-size: 24px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.account-dash-name { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.account-dash-email-text { font-size: 12px; color: var(--text-muted); }

.account-dash-section { padding: 20px 24px; flex: 1; }
.account-dash-section h4 {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px;
}

.account-wl-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.account-wl-item img { width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; }
.account-wl-item-info { flex: 1; }
.account-wl-item-name { font-size: 13px; color: var(--dark); font-weight: 500; }
.account-wl-item-price { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.account-dash-empty { font-size: 13px; color: var(--text-muted); text-align: center; padding: 20px 0; }

.account-dash-footer { padding: 16px 24px 0; }
.account-logout-btn { width: 100%; justify-content: center; }

/* Dark mode */
html.dark-mode .auth-modal { background: #252522; }
html.dark-mode .auth-modal h2 { color: #f0ebe3; }
html.dark-mode .auth-modal-sub { color: #8a8278; }
html.dark-mode .auth-tab { color: #8a8278; }
html.dark-mode .auth-tab.active { color: #f0ebe3; }
html.dark-mode .auth-field label { color: #8a8278; }
html.dark-mode .auth-field input { background: #1a1a18; border-color: #363330; color: #f0ebe3; }
html.dark-mode .auth-field input:focus { border-color: var(--gold); }
html.dark-mode .auth-footer-link { color: #8a8278; }
html.dark-mode .auth-verify p { color: #8a8278; }
html.dark-mode .auth-verify strong { color: #f0ebe3; }
html.dark-mode .auth-back-link { color: #8a8278; }
html.dark-mode .account-dash-header h3 { color: #f0ebe3; }
html.dark-mode .account-dashboard { background: #252522; }
html.dark-mode .account-dash-name { color: #f0ebe3; }
html.dark-mode .account-wl-item-name { color: #f0ebe3; }

/* ── Hide account icon in navbar ── */
.icon-btn[aria-label="Account"] { display: none !important; }
html.dark-mode .account-dash-section h4 { color: #8a8278; }

/* ══════════════════════════════════════════════════════════
   ARABIC / RTL LAYOUT
   ══════════════════════════════════════════════════════════ */
html[dir="rtl"] {
  font-family: 'Tajawal', 'Poppins', system-ui, sans-serif;
}
html[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }

/* ── Logo: ALWAYS left-to-right text, never flipped ── */
.logo { direction: ltr; unicode-bidi: isolate; }

/* ── Header flex ── */
/* dir="rtl" already reverses flex row. row-reverse brings it back to visual LTR so
   hamburger stays left, logo stays center, actions stay right on all screen sizes. */
html[dir="rtl"] .header-top { flex-direction: row-reverse; }
html[dir="rtl"] .header-left-zone { flex-direction: row-reverse; }
html[dir="rtl"] .header-actions { flex-direction: row-reverse; }
html[dir="rtl"] .main-nav .nav-list { flex-direction: row-reverse; }
html[dir="rtl"] .announcement-inner { flex-direction: row-reverse; animation-direction: reverse; }

/* ── Cart / Wishlist drawers ── */
/* Cart drawer stays on RIGHT in both LTR and RTL (standard e-commerce convention) */
html[dir="rtl"] .wishlist-drawer { left: auto; right: -480px; border-right: none; border-left: 1px solid var(--border); }
html[dir="rtl"] .wishlist-drawer.open { right: 0; }

/* ── Hero ── */
/* flex-start in RTL = physical RIGHT side (flex items flow right→left in RTL) */
html[dir="rtl"] .hero-slide { justify-content: flex-start; }
html[dir="rtl"] .hero-content { padding: 72px 80px 60px; text-align: right; }
html[dir="rtl"] .hero-ctas { justify-content: flex-start; }
html[dir="rtl"] .hero-slide::after {
  background: linear-gradient(to left, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

/* ── Product cards ── */
html[dir="rtl"] .product-info { text-align: right; }
html[dir="rtl"] .product-card .product-badge { left: auto; right: 12px; }
/* Default: keep English product text LTR; overridden by .lang-ar rule below when Arabic fields are set */
html[dir="rtl"] .product-name,
html[dir="rtl"] .product-name a,
html[dir="rtl"] .product-desc { direction: ltr; unicode-bidi: isolate; text-align: left; }

/* ── Prices / numbers ── */
html[dir="rtl"] .product-price,
html[dir="rtl"] .cart-subtotal,
html[dir="rtl"] .price-current,
html[dir="rtl"] .price-sale,
html[dir="rtl"] .price-original { font-family: 'Poppins', sans-serif; direction: ltr; display: inline-block; unicode-bidi: isolate; }

/* ── Phone numbers / links (always LTR) ── */
html[dir="rtl"] .hq-link { direction: ltr; unicode-bidi: isolate; white-space: nowrap; }
html[dir="rtl"] .channel-link,
html[dir="rtl"] .branch-detail { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* ── Search ── */
html[dir="rtl"] .search-bar { direction: rtl; }
html[dir="rtl"] .search-input { text-align: right; }

/* ── Mobile nav ── */
html[dir="rtl"] .mobile-nav-links { text-align: right; }
html[dir="rtl"] .mobile-nav-links a { direction: rtl; display: block; text-align: right; }

/* ── Footer ── */
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .trust-strip { flex-direction: row-reverse; }
html[dir="rtl"] .payment-methods { flex-direction: row-reverse; }

/* ── Section headings ── */
html[dir="rtl"] .section-header { text-align: right; }
html[dir="rtl"] .section-link { margin-left: 0; margin-right: auto; }

/* ── Products page RTL ── */
html[dir="rtl"] .filter-bar { direction: rtl; justify-content: flex-start; }
html[dir="rtl"] .filter-chip { font-family: 'Tajawal', sans-serif; }
html[dir="rtl"] .page-hero { text-align: center; }
html[dir="rtl"] .sale-banner-strip { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .products-toolbar { direction: rtl; }
html[dir="rtl"] .pt-search { direction: rtl; }
html[dir="rtl"] .pt-search-input { text-align: right; }
html[dir="rtl"] .pt-price-label { margin-left: 0; margin-right: 0; }
html[dir="rtl"] #price-min,
html[dir="rtl"] #price-max { direction: ltr; text-align: right; }
html[dir="rtl"] .pt-select { direction: rtl; }
html[dir="rtl"] .pt-no-results { text-align: right; }
html[dir="rtl"] .categories-section .section-header { text-align: right; }
html[dir="rtl"] .category-card-label { text-align: right; }
/* Room cards (index.html) */
html[dir="rtl"] .room-label { text-align: right; }
/* Editorial section */
html[dir="rtl"] .editorial-text { text-align: right; }
html[dir="rtl"] .editorial-list { padding-right: 20px; padding-left: 0; }
html[dir="rtl"] .editorial-list li::before { margin-right: 0; margin-left: 8px; float: right; }
/* Collection banner */
html[dir="rtl"] .collection-banner-overlay { text-align: center; }

/* ── Contact page ── */
/* Channel cards contain English content — keep LTR, centered */
html[dir="rtl"] .channel-card { direction: ltr; }
html[dir="rtl"] .channel-card h3,
html[dir="rtl"] .channel-card p { text-align: center; }
/* Page hero: center-aligned in both languages, allow RTL flow for Arabic text */
html[dir="rtl"] .page-hero-inner { text-align: center; }
html[dir="rtl"] .contact-form-section,
html[dir="rtl"] .contact-info-section,
html[dir="rtl"] .branch-contact-card,
html[dir="rtl"] .info-item,
html[dir="rtl"] .form-group,
html[dir="rtl"] .form-row { direction: ltr; text-align: left; }
/* Section headings on contact page are translated to Arabic → RTL */
html[dir="rtl"] .channels-section .section-header,
html[dir="rtl"] .branches-contact .section-header { direction: rtl; text-align: right; }

/* ── Mobile RTL ── */
@media (max-width: 768px) {
  /* Logo: absolute centering works the same in RTL */
  html[dir="rtl"] .logo { left: 50%; right: auto; transform: translateX(-50%); }

  /* Lang/theme toggles live in mobile menu only — keep hidden in header */
  html[dir="rtl"] .header-actions #lang-toggle,
  html[dir="rtl"] .header-actions #theme-toggle { display: none !important; }

  /* Header-actions: keep tight gap on mobile */
  html[dir="rtl"] .header-actions { gap: 2px; }

  /* Hero */
  html[dir="rtl"] .hero-content { padding: 40px 16px; text-align: right; }
  html[dir="rtl"] .hero-ctas { flex-wrap: wrap; justify-content: flex-start; }
}

/* ── MOBILE NAV RTL ── */
html[dir="rtl"] .mobile-nav-overlay { transform: translateX(100%); }
html[dir="rtl"] .mobile-nav-overlay.active { transform: translateX(0); }
html[dir="rtl"] .mobile-nav-links a {
  padding-left: 28px; padding-right: 28px;
  border-left: none; border-bottom: 1px solid var(--border-light);
}
html[dir="rtl"] .mobile-nav-links a:hover { padding-left: 28px; padding-right: 36px; }
html[dir="rtl"] .mobile-nav-links a.mob-active { border-left: none; border-right: 3px solid var(--gold); }
html[dir="rtl"] .mobile-nav-header { flex-direction: row-reverse; }

/* ── MOBILE HEADER CLEAN LAYOUT (LTR + RTL) ── */
@media (max-width: 768px) {
  /* Prevent header-left-extra from taking space when empty */
  .header-left-extra:empty { display: none; }

  /* Account button always hidden on mobile */
  .header-actions .icon-btn[aria-label="Account"] { display: none !important; }

  /* Both toggles live in the mobile menu only — always hidden in header on mobile */
  .header-actions #lang-toggle,
  .header-actions #theme-toggle { display: none !important; }
}

/* ── FAQ Section RTL ── */
html[dir="rtl"] .faq-section { direction: rtl; text-align: right; }
html[dir="rtl"] .faq-section .section-header { text-align: right; }
html[dir="rtl"] .faq-question { flex-direction: row-reverse; text-align: right; width: 100%; }
html[dir="rtl"] .faq-question .faq-icon { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .faq-answer { text-align: right; direction: rtl; }

/* ── Product cards: allow Arabic names/descriptions to render RTL ── */
html[dir="rtl"].lang-ar .product-name,
html[dir="rtl"].lang-ar .product-name a,
html[dir="rtl"].lang-ar .product-desc,
html[dir="rtl"].lang-ar .product-category { direction: rtl; unicode-bidi: isolate; text-align: right; }

/* ── Cart drawer RTL ── */
html[dir="rtl"] .cart-header { flex-direction: row-reverse; }
html[dir="rtl"] .cart-item { flex-direction: row-reverse; }
html[dir="rtl"] .cart-item-info { text-align: right; }
html[dir="rtl"] .cart-item-qty { flex-direction: row-reverse; }
html[dir="rtl"] .cart-footer { direction: rtl; }
html[dir="rtl"] .cart-subtotal-row { flex-direction: row-reverse; }

/* ── Responsive Arabic: products page toolbar on mobile ── */
@media (max-width: 768px) {
  html[dir="rtl"] .products-toolbar { flex-direction: column; align-items: flex-end; }
  html[dir="rtl"] .pt-search { width: 100%; }
  html[dir="rtl"] .pt-filters { justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
  html[dir="rtl"] .sale-banner-strip { flex-direction: column; text-align: center; }
  html[dir="rtl"] .filter-bar { flex-wrap: wrap; justify-content: flex-end; }
}

/* ── Responsive Arabic: hero on mobile ── */
@media (max-width: 480px) {
  html[dir="rtl"] .hero-content { padding: 32px 16px; }
  html[dir="rtl"] .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Dark mode: product modal close X should be dark on light button ── */
html.dark-mode .pd-modal-close svg { stroke: var(--dark); }

/* ── FAQ section RTL: questions right-aligned, icon on left ── */
html[dir="rtl"] .faq-section { direction: rtl; }
html[dir="rtl"] .faq-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  direction: rtl;
}
html[dir="rtl"] .faq-question span:first-child { flex: 1; text-align: right; }
html[dir="rtl"] .faq-question .faq-icon { margin-left: 0; margin-right: 0; flex-shrink: 0; order: -1; }
html[dir="rtl"] .faq-answer { text-align: right; direction: rtl; padding-right: 0; padding-left: 0; }

/* ── Branch cards in Arabic: left-aligned content stays LTR ── */
html[dir="rtl"] .branch-contact-card { direction: ltr; text-align: left; }
html[dir="rtl"] .branches-contact .section-header { direction: rtl; text-align: right; }

/* ── Journal section RTL ── */
html[dir="rtl"] .journal-section .section-header { text-align: right; }
html[dir="rtl"] .journal-info { text-align: right; }

/* ── Reviews section RTL ── */
html[dir="rtl"] .reviews-section .section-header { text-align: right; }
html[dir="rtl"] .review-card { text-align: right; direction: rtl; }
html[dir="rtl"] .review-author { flex-direction: row-reverse; }

/* ── Footer logo image (dark/light switching) ── */
html.dark-mode .footer-logo-img.footer-logo-def { filter: none; opacity: 1; display: none; }
html.dark-mode .footer-logo-img.footer-logo-drk { display: inline-block; }

/* ── WhatsApp header link: always show in Arabic on mobile ── */
@media (max-width: 768px) {
  html[dir="rtl"] .hq-link { display: flex !important; }
  html[dir="rtl"] .hq-link { flex-direction: row; align-items: center; gap: 5px; white-space: nowrap; font-size: 11px; }
}

/* ── Announcement bar RTL ── */
html[dir="rtl"] .announcement-bar { direction: rtl; }

/* ── Services page RTL ── */
html[dir="rtl"] .page-hero { direction: rtl; }
html[dir="rtl"] .services-section .section-header,
html[dir="rtl"] .process-section .section-header,
html[dir="rtl"] .branches-section .section-header,
html[dir="rtl"] .warranty-section .warranty-text { text-align: right; direction: rtl; }
html[dir="rtl"] .service-card { text-align: right; direction: rtl; }
html[dir="rtl"] .step { direction: rtl; }
html[dir="rtl"] .warranty-list li { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .branch-info { text-align: right; direction: rtl; }

/* ── Contact page RTL ── */
html[dir="rtl"] .channels-section .section-header { text-align: right; direction: rtl; }
html[dir="rtl"] .channel-card { direction: rtl; }
html[dir="rtl"] .contact-form-section { direction: rtl; text-align: right; }
html[dir="rtl"] .contact-info-section { direction: rtl; text-align: right; }
html[dir="rtl"] .info-item { flex-direction: row-reverse; }
html[dir="rtl"] .social-links-contact { flex-direction: row-reverse; }
