/* ============================================================
   HomeStore Brand — UTOPIA HOME Style Design System
   White-first, inspiration-driven, high-quality lifestyle
   ============================================================ */

:root {
  /* Brand Colors */
  --b-navy:    #1b2a3b;
  --b-navy-d:  #111d2b;
  --b-white:   #ffffff;
  --b-off:     #f9f7f4;
  --b-gray:    #f2f2f2;
  --b-muted:   #6b7280;
  --b-border:  #e5e7eb;
  --b-text:    #1a1a1a;
  --b-accent:  #c8a96e;   /* warm gold */
  --b-deal:    #d94f3d;
  --b-green:   #2d7a4f;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  /* Spacing */
  --mw: 1400px;
  --gap: 16px;

  /* Transitions */
  --tr: 0.3s ease;

  /* Shadows */
  --sh: 0 2px 12px rgba(0,0,0,0.08);
  --sh-h: 0 8px 32px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--b-text);
  background: var(--b-white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }

.container { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }

/* ── Animations ── */
.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.in-view { opacity: 1; transform: none; }
.anim-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-left.in-view { opacity: 1; transform: none; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--b-navy);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 9px 40px;
  position: relative;
  letter-spacing: 0.3px;
}
.ann-bar a { color: var(--b-accent); text-decoration: underline; margin-left: 6px; }
.ann-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.6); font-size: 16px;
  transition: color var(--tr);
}
.ann-close:hover { color: #fff; }

/* ============================================================
   GLOBAL HEADER
   ============================================================ */
.global-header {
  background: var(--b-white);
  border-bottom: 1px solid var(--b-border);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px;
  max-width: var(--mw); margin: 0 auto;
}
.logo {
  display: flex; flex-direction: column; line-height: 1.1;
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; letter-spacing: 1px;
  color: var(--b-navy); flex-shrink: 0;
}
.logo-sub { font-size: 10px; font-family: var(--font-sans); letter-spacing: 3px; color: var(--b-muted); font-weight: 400; }
.header-search {
  flex: 1; display: flex; align-items: center;
  border: 2px solid var(--b-navy); border-radius: 3px; overflow: hidden;
  max-width: 640px;
}
.header-search input {
  flex: 1; padding: 9px 14px; border: none; outline: none;
  font-size: 14px; background: var(--b-gray);
}
.header-search button {
  background: var(--b-navy); color: #fff;
  padding: 0 18px; height: 40px; font-size: 15px;
  transition: background var(--tr);
}
.header-search button:hover { background: var(--b-accent); color: var(--b-navy); }
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hdr-btn {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 6px 12px; color: var(--b-text); border-radius: 3px;
  font-size: 12px; transition: background var(--tr);
  white-space: nowrap;
}
.hdr-btn:hover { background: var(--b-gray); }
.hdr-btn i { font-size: 18px; color: var(--b-navy); }
.hdr-btn .hdr-label { font-weight: 600; font-size: 13px; }
.cart-badge {
  background: var(--b-deal); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -2px; right: -2px;
}
.hdr-cart { position: relative; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none; padding: 8px; color: var(--b-navy); font-size: 20px;
}

/* ============================================================
   BRAND SUBNAV
   ============================================================ */
.brand-subnav {
  background: var(--b-white);
  border-bottom: 1px solid var(--b-border);
}
.brand-subnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--mw); margin: 0 auto; padding: 0 24px;
}
.subnav-links { display: flex; }
.subnav-links a {
  display: block; padding: 12px 18px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--b-muted); border-bottom: 2px solid transparent;
  transition: color var(--tr), border-color var(--tr);
}
.subnav-links a:hover,
.subnav-links a.active { color: var(--b-navy); border-bottom-color: var(--b-navy); }
.subnav-brand-search {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--b-border); border-radius: 20px;
  padding: 6px 14px; font-size: 13px; color: var(--b-muted);
  cursor: pointer; transition: border-color var(--tr);
}
.subnav-brand-search:hover { border-color: var(--b-navy); color: var(--b-navy); }
.subnav-brand-search input {
  border: none; outline: none; background: none;
  font-size: 13px; width: 160px; color: var(--b-text);
}

/* ============================================================
   BRAND HERO BANNER
   ============================================================ */
.brand-hero {
  position: relative; overflow: hidden;
  height: 520px; background: #e8e3dc;
}
.brand-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.brand-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.brand-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.brand-hero-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center;
  padding: 0 80px;
}
.brand-hero-text { max-width: 540px; color: #fff; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--b-accent); font-weight: 600; margin-bottom: 12px;
}
.hero-title {
  font-size: 44px; font-weight: 700; line-height: 1.15;
  font-family: var(--font-serif); margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.88);
  margin-bottom: 28px; line-height: 1.6;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--b-white); color: var(--b-navy);
  padding: 13px 28px; font-size: 15px; font-weight: 600;
  border-radius: 2px; letter-spacing: 0.3px;
  transition: background var(--tr), transform var(--tr);
}
.btn-hero:hover { background: var(--b-accent); transform: translateY(-1px); }
.btn-hero i { font-size: 13px; }

/* Split hero (two columns) */
.hero-carousel { position: relative; width: 100%; height: 680px; overflow: hidden; background: var(--b-off); }
.hero-slider { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide { min-width: 100%; height: 100%; display: grid; grid-template-columns: 1fr 1fr; position: relative; }

.hero-dots {
  position: absolute; bottom: 24px; left: 80px; display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.1); cursor: pointer; transition: all 0.3s ease;
}
.hero-dot.active { background: var(--b-accent); width: 24px; border-radius: 4px; }

.brand-hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 680px; overflow: hidden;
}
.hero-split-left {
  background: var(--b-off); display: flex; flex-direction: column;
  justify-content: center; padding: 60px 60px 60px 80px;
}
.hero-split-right { position: relative; overflow: hidden; }
.hero-split-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-split-left .hero-eyebrow { color: var(--b-accent); }
.hero-split-left .hero-title { color: var(--b-navy); font-size: 40px; }
.hero-split-left .hero-subtitle { color: var(--b-muted); }
.hero-split-left .btn-hero {
  background: var(--b-navy); color: #fff;
}
.hero-split-left .btn-hero:hover { background: var(--b-navy-d); }

/* ============================================================
   BRAND SUBNAV (secondary)
   ============================================================ */
.section-header {
  text-align: center; padding: 48px 24px 32px;
}
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--b-accent); font-weight: 600; margin-bottom: 8px;
}
.section-title {
  font-size: 30px; font-weight: 700; color: var(--b-navy);
  font-family: var(--font-serif);
}
.section-sub { font-size: 15px; color: var(--b-muted); margin-top: 8px; }

/* ============================================================
   PRESS / MEDIA LOGOS
   ============================================================ */
.press-section {
  background: var(--b-off); padding: 40px 24px;
  text-align: center; border-top: 1px solid var(--b-border);
  border-bottom: 1px solid var(--b-border);
}
.press-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--b-muted); margin-bottom: 24px; font-weight: 600;
}
.press-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px 48px;
  max-width: 900px; margin: 0 auto;
}
.press-logo {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: #aaa; letter-spacing: 1px; transition: color var(--tr);
  white-space: nowrap;
}
.press-logo:hover { color: var(--b-navy); }
.press-logo.small { font-size: 13px; font-family: var(--font-sans); letter-spacing: 2px; }

/* ============================================================
   CATEGORY TILE GRID
   ============================================================ */
.tile-grid-section { padding: 16px 24px 48px; }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--mw); margin: 0 auto;
}
.tile-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.tile-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }

.tile {
  position: relative; overflow: hidden;
  border-radius: 2px; cursor: pointer;
  aspect-ratio: 4 / 3.9;
  background: var(--b-gray);
}
.tile.tall { aspect-ratio: 3/4; }
.tile.wide { grid-column: span 2; aspect-ratio: 16/7; }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.tile:hover img { transform: scale(1.04); }
.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 22px;
}
.tile-name {
  color: #fff; font-size: 17px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4); margin-bottom: 8px;
  font-family: var(--font-serif);
}
.btn-tile {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95); color: var(--b-navy);
  padding: 7px 16px; font-size: 12px; font-weight: 600;
  border-radius: 1px; letter-spacing: 0.5px;
  width: fit-content; transition: background var(--tr), transform var(--tr);
}
.tile:hover .btn-tile { background: var(--b-accent); transform: translateY(-1px); }

/* ============================================================
   FULL-WIDTH SINGLE PRODUCT BANNER
   ============================================================ */
.fullwidth-banner {
  position: relative; overflow: hidden;
  height: 420px; margin: 8px 0;
}
.fullwidth-banner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.fullwidth-banner:hover img { transform: scale(1.02); }
.fullwidth-banner-content {
  position: absolute; inset: 0; display: flex; align-items: center;
}
.fullwidth-banner-content.left { padding-left: 80px; }
.fullwidth-banner-content.right { justify-content: flex-end; padding-right: 80px; }
.banner-text-box {
  background: rgba(255,255,255,0.96);
  padding: 36px 40px; max-width: 380px;
  border-radius: 2px; box-shadow: var(--sh);
}
.banner-text-box .hero-eyebrow { color: var(--b-accent); margin-bottom: 8px; }
.banner-text-box .hero-title {
  font-size: 28px; color: var(--b-navy); margin-bottom: 10px;
  text-shadow: none;
}
.banner-text-box .hero-subtitle { font-size: 14px; color: var(--b-muted); margin-bottom: 20px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--b-navy); color: #fff;
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  border-radius: 2px; transition: background var(--tr), transform var(--tr);
}
.btn-primary:hover { background: var(--b-navy-d); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--b-navy);
  padding: 11px 24px; font-size: 14px; font-weight: 600;
  border: 2px solid var(--b-navy); border-radius: 2px;
  transition: all var(--tr);
}
.btn-outline:hover { background: var(--b-navy); color: #fff; }

/* ============================================================
   PRODUCT CARDS (Brand Style)
   ============================================================ */
.products-section { padding: 32px 24px 60px; background: var(--b-off); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--mw); margin: 0 auto;
}
.prod-card {
  background: var(--b-white); border-radius: 2px;
  overflow: hidden; cursor: pointer;
  transition: box-shadow var(--tr), transform var(--tr);
}
.prod-card:hover { box-shadow: var(--sh-h); transform: translateY(-3px); }
.prod-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--b-gray);
}
.prod-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.06); }
.prod-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--b-deal); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 8px;
  border-radius: 1px; letter-spacing: 0.5px;
}
.prod-badge.new { background: var(--b-green); }
.prod-badge.sale { background: var(--b-accent); color: var(--b-navy); }
.prod-wish {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.9); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--b-muted); font-size: 14px; opacity: 0;
  transition: opacity var(--tr), color var(--tr);
}
.prod-card:hover .prod-wish { opacity: 1; }
.prod-wish:hover { color: var(--b-deal) !important; }
.prod-wish.active { color: var(--b-deal); opacity: 1; }
.prod-info { padding: 14px 16px 16px; }
.prod-brand { font-size: 11px; color: var(--b-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.prod-name {
  font-size: 14px; font-weight: 600; color: var(--b-navy);
  line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.prod-stars .stars { color: var(--b-accent); font-size: 12px; }
.prod-stars .rcount { color: var(--b-muted); font-size: 12px; }
.prod-sizes { display: flex; flex-wrap: wrap; gap: 4px; margin: 6px 0 8px; }
.size-chip { font-size: 11px; padding: 2px 7px; border: 1px solid var(--b-border); border-radius: 3px; color: var(--b-muted); background: var(--b-off); white-space: nowrap; }
.prod-price { display: flex; align-items: baseline; gap: 8px; min-height: 24px; }
.prod-price:empty { display: none; }
.price-now { font-size: 18px; font-weight: 700; color: var(--b-navy); }
.price-orig { font-size: 13px; color: var(--b-muted); text-decoration: line-through; }
.price-save { font-size: 12px; color: var(--b-deal); font-weight: 600; }
.prod-atc {
  width: 100%; margin-top: 12px;
  background: var(--b-navy); color: #fff;
  padding: 10px; font-size: 13px; font-weight: 600;
  border-radius: 2px; letter-spacing: 0.3px;
  transition: background var(--tr);
}
.prod-atc:hover { background: var(--b-navy-d); }

/* ============================================================
   FEATURES / USP STRIP
   ============================================================ */
.features-strip {
  background: var(--b-navy); color: #fff;
  padding: 40px 24px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: var(--mw); margin: 0 auto;
  text-align: center;
}
.feature-item i {
  font-size: 28px; color: var(--b-accent); margin-bottom: 12px;
}
.feature-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feature-item p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 60px 24px; background: var(--b-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: var(--mw); margin: 0 auto;
}
.testi-card {
  padding: 28px; border: 1px solid var(--b-border); border-radius: 2px;
}
.testi-stars { color: var(--b-accent); font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--b-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--b-gray); overflow: hidden; flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--b-navy); }
.testi-date { font-size: 11px; color: var(--b-muted); }
.testi-source { font-size: 12px; color: var(--b-accent); font-weight: 600; }

/* ============================================================
   LIFESTYLE STORY SECTION (2-col)
   ============================================================ */
.story-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 624px; overflow: hidden;
  position: relative;
}
.story-img { position: relative; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.story-section:hover .story-img img { transform: scale(1.03); }

/* Play Button Overlay */
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70px; height: 70px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--b-navy); cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all 0.3s ease; z-index: 10;
}
.video-play-btn:hover { background: #fff; transform: translate(-50%, -50%) scale(1.1); }
.video-play-btn i { margin-left: 4px; }

/* Video Background (Hero) */
.hero-video-container {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; z-index: -1;
}
.hero-video-container video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6; /* Slight dim for text readability */
}
.hero-split-right { position: relative; overflow: hidden; }

/* Video Modal */
.v-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center;
  z-index: 10000; padding: 24px;
}
.v-modal.active { display: flex; }
.v-modal-close {
  position: absolute; top: 24px; right: 24px; color: #fff; font-size: 32px; cursor: pointer;
}
.v-modal-content {
  width: 100%; max-width: 1000px; aspect-ratio: 16/9; background: #000;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5); border-radius: 4px; overflow: hidden;
}
.v-modal-content video { width: 100%; height: 100%; }

/* Product Video Thumb */
.thumb-video { position: relative; }
.thumb-video::after {
  content: '\f04b'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: #fff; font-size: 16px; text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.story-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 72px;
}
.story-content.bg-off { background: var(--b-off); }
.story-content.bg-navy { background: var(--b-navy); color: #fff; }
.story-content.bg-navy .section-title { color: #fff; }
.story-content.bg-navy .section-sub { color: rgba(255,255,255,0.7); }
.story-content .section-label { margin-bottom: 8px; }
.story-content .section-title { text-align: left; margin-bottom: 16px; font-size: 32px; }
.story-content .section-sub { text-align: left; margin-bottom: 28px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--b-off); padding: 60px 24px;
  text-align: center; border-top: 1px solid var(--b-border);
}
.newsletter-form {
  display: flex; max-width: 440px; margin: 24px auto 0;
  border: 2px solid var(--b-navy); border-radius: 2px; overflow: hidden;
}
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: none; outline: none;
  font-size: 14px; background: var(--b-white);
}
.newsletter-form button {
  background: var(--b-navy); color: #fff;
  padding: 0 24px; font-size: 14px; font-weight: 600;
  transition: background var(--tr);
}
.newsletter-form button:hover { background: var(--b-accent); color: var(--b-navy); }

/* ── Inquiry Section (B2B) ── */
.inquiry-section { padding: 60px 24px; background: #fff; }
.inquiry-container { max-width: 800px; margin: 0 auto; }
.inquiry-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.inquiry-form .full { grid-column: 1 / -1; }
.inquiry-group { display: flex; flex-direction: column; gap: 8px; }
.inquiry-group label { font-size: 13px; font-weight: 600; color: var(--b-navy); }
.inquiry-group input, .inquiry-group textarea {
  padding: 14px; border: 1px solid var(--b-border); border-radius: 4px;
  font-size: 14px; transition: border-color 0.3s ease;
  background: var(--b-off);
}
.inquiry-group input:focus, .inquiry-group textarea:focus {
  border-color: var(--b-navy); outline: none; background: #fff;
}
.inquiry-submit {
  grid-column: 1 / -1; background: var(--b-navy); color: #fff;
  padding: 16px; border: none; border-radius: 4px; font-weight: 600;
  cursor: pointer; transition: background 0.3s ease;
  margin-top: 10px;
}
.inquiry-submit:hover { background: var(--b-navy-d); }
[dir="rtl"] .inquiry-form { text-align: right; }


/* ============================================================
   FOOTER
   ============================================================ */
.brand-footer {
  background: var(--b-navy); color: rgba(255,255,255,0.8);
  padding: 60px 24px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; max-width: var(--mw); margin: 0 auto;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px;
  transition: all var(--tr);
}
.footer-social a:hover { background: var(--b-accent); border-color: var(--b-accent); color: var(--b-navy); }
.footer-col h5 {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; margin-bottom: 16px; font-weight: 700;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--b-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--mw); margin-left: auto; margin-right: auto;
  font-size: 12px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--tr); }
.footer-bottom-links a:hover { color: var(--b-accent); }

/* ============================================================
   MINI CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity var(--tr);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.mini-cart {
  position: fixed; top: 0; right: -420px; width: 420px; max-width: 100vw;
  height: 100vh; background: var(--b-white);
  display: flex; flex-direction: column;
  z-index: 1001; transition: right 0.35s ease; box-shadow: var(--sh-h);
}
.mini-cart.open { right: 0; }
.mc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--b-border);
}
.mc-header h3 { font-size: 18px; font-weight: 700; color: var(--b-navy); }
.mc-close { font-size: 20px; color: var(--b-muted); transition: color var(--tr); }
.mc-close:hover { color: var(--b-navy); }
.mc-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.mc-empty { text-align: center; padding: 60px 0; color: var(--b-muted); }
.mc-empty i { font-size: 40px; margin-bottom: 12px; display: block; }
.mc-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--b-border);
}
.mc-item-img { width: 80px; height: 80px; border-radius: 2px; overflow: hidden; background: var(--b-gray); }
.mc-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mc-item-name { font-size: 13px; font-weight: 600; color: var(--b-navy); margin-bottom: 4px; }
.mc-item-price { font-size: 15px; font-weight: 700; color: var(--b-navy); }
.mc-item-price:empty { display: none; }
.mc-item-remove { color: var(--b-muted); font-size: 14px; cursor: pointer; transition: color var(--tr); margin-top: 2px; }
.mc-item-remove:hover { color: var(--b-deal); }
.mc-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.mc-qty button { width: 24px; height: 24px; border: 1px solid var(--b-border); border-radius: 2px; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.mc-qty button:hover { background: var(--b-navy); color: #fff; border-color: var(--b-navy); }
.mc-qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.mc-footer { padding: 20px 24px; border-top: 1px solid var(--b-border); }
.mc-subtotal { display: flex; justify-content: space-between; margin-bottom: 16px; }
.mc-subtotal span:first-child { font-size: 14px; color: var(--b-muted); }
.mc-subtotal span:last-child { font-size: 18px; font-weight: 700; color: var(--b-navy); }
.mc-checkout {
  display: block; width: 100%; background: var(--b-navy); color: #fff;
  padding: 14px; text-align: center; font-size: 15px; font-weight: 600;
  border-radius: 2px; transition: background var(--tr); margin-bottom: 10px;
}
.mc-checkout:hover { background: var(--b-navy-d); }
.mc-continue {
  display: block; width: 100%; text-align: center; font-size: 13px;
  color: var(--b-muted); transition: color var(--tr);
}
.mc-continue:hover { color: var(--b-navy); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed; bottom: 100px; right: 24px; z-index: 2000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--b-navy); color: #fff;
  padding: 12px 18px; border-radius: 3px;
  font-size: 13px; box-shadow: var(--sh-h);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.3s ease; max-width: 300px;
}
.toast i { color: var(--b-accent); font-size: 16px; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── Floating Chat Button ── */
.floating-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #f39c12; /* Vibrant Safety Amber - Eye-catching for US/EU */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1900;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.floating-chat:hover {
  background: #e67e22;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.floating-chat i {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.floating-chat .chat-tooltip {
  position: absolute;
  right: 78px;
  background: #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.floating-chat .chat-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #333;
}
.floating-chat:hover .chat-tooltip {
  opacity: 1;
  transform: translateX(-5px);
}
[dir="rtl"] .floating-chat { right: auto; left: 24px; }
[dir="rtl"] .floating-chat .chat-tooltip { right: auto; left: 78px; }
[dir="rtl"] .floating-chat .chat-tooltip::after {
  right: auto; left: -6px;
  border-left: none;
  border-right: 6px solid #333;
}
[dir="rtl"] .floating-chat:hover .chat-tooltip { transform: translateX(5px); }


/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 800; opacity: 0; pointer-events: none; transition: opacity var(--tr);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-drawer {
  position: fixed; top: 0; left: -320px; width: 320px;
  height: 100vh; background: var(--b-white);
  z-index: 801; transition: left 0.35s ease; overflow-y: auto;
  display: flex; flex-direction: column; padding-bottom: 24px;
}
.mobile-drawer.open { left: 0; }
.md-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--b-border);
}
.md-logo { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--b-navy); }
.md-close { font-size: 20px; color: var(--b-muted); }
.md-section {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--b-muted); padding: 16px 20px 8px; font-weight: 700;
}
.md-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; font-size: 14px; font-weight: 500; color: var(--b-text);
  border-bottom: 1px solid var(--b-border); transition: background var(--tr);
}
.md-item:hover { background: var(--b-gray); color: var(--b-navy); }
.md-item i { width: 20px; color: var(--b-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .story-section { grid-template-columns: 1fr; }
  .story-content { padding: 40px; }
  .story-img { height: 280px; }
  .brand-hero { height: 400px; }
  .hero-carousel { height: auto; }
  .hero-slide { grid-template-columns: 1fr; }
  .hero-dots { left: 50%; transform: translateX(-50%); bottom: 16px; }
  .brand-hero-split { grid-template-columns: 1fr; height: auto; }
  .hero-split-left { padding: 48px 40px; }
  .hero-split-right { height: 300px; }
  .hero-title { font-size: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .fullwidth-banner { height: 320px; }
  .fullwidth-banner-content.left { padding-left: 40px; }
  .fullwidth-banner-content.right { padding-right: 40px; }
}
@media (max-width: 640px) {
  .mobile-menu-btn { display: flex; }
  .header-search { display: none; }
  .subnav-links a { padding: 10px 12px; font-size: 12px; }
  .subnav-brand-search { display: none; }
  .tile-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tile.wide { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .brand-hero-content { padding: 0 28px; }
  .hero-title { font-size: 26px; }
  .fullwidth-banner-content.left, .fullwidth-banner-content.right { padding: 0 20px; }
  .banner-text-box { padding: 24px; }
  .press-logos { gap: 20px 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* Language Switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--b-muted); background: var(--b-off); padding: 4px 10px; border-radius: 999px; margin-right: 12px; }
.lang-btn { background: none; border: none; padding: 0; color: inherit; cursor: pointer; transition: color var(--tr); }
.lang-btn.active { color: var(--b-navy); }
.lang-btn:hover { color: var(--b-accent); }
.lang-sep { opacity: 0.3; }

/* ── RTL Support ── */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .ann-close { right: auto; left: 16px; }
[dir="rtl"] .mobile-drawer { left: auto; right: -320px; transition: right 0.35s ease; }
[dir="rtl"] .mobile-drawer.open { right: 0; }
[dir="rtl"] .toast-container { right: auto; left: 24px; }
[dir="rtl"] .mini-cart { right: auto; left: -420px; transition: left 0.35s ease; }
[dir="rtl"] .mini-cart.open { left: 0; }
[dir="rtl"] .prod-badge { right: auto; left: 12px; }
[dir="rtl"] .hero-split-left, [dir="rtl"] .story-content, [dir="rtl"] .fullwidth-banner-content { text-align: right; }
[dir="rtl"] .newsletter-form button { margin-left: 0; margin-right: -2px; border-radius: 3px 0 0 3px; }
[dir="rtl"] .newsletter-form input { border-radius: 0 3px 3px 0; }
[dir="rtl"] .header-search button { margin-left: 0; margin-right: -2px; border-radius: 3px 0 0 3px; }
[dir="rtl"] .header-search input { border-radius: 0 3px 3px 0; }
[dir="rtl"] .lang-switcher { margin-right: 0; margin-left: 12px; }
[dir="rtl"] .fa-arrow-right { transform: rotate(180deg); }
[dir="rtl"] .mc-item { grid-template-columns: auto 1fr 80px; }
[dir="rtl"] .mc-item-img { order: 3; }

