/* =========================================================
   EXXE SELECTION theme — monochrome luxury, mobile-first
   ========================================================= */

:root {
  --exxe-ink: #111111;
  --exxe-white: #ffffff;
  --exxe-stone: #f3f3f3;
  --exxe-stone-2: #e8e8e8;
  --exxe-muted: #6b6b6b;
  --exxe-line: #e5e5e5;
  --exxe-gold: #c4a265;
  --exxe-serif: "Cormorant Garamond", "Times New Roman", serif;
  --exxe-sans: "DM Sans", "Montserrat", system-ui, sans-serif;
  --exxe-safe-b: env(safe-area-inset-bottom, 0px);
  --exxe-header-h: 64px;
  --exxe-bottom-nav: 64px;
}

html { -webkit-text-size-adjust: 100%; }

body.bloom-body,
body.home-body,
body {
  font-family: var(--exxe-sans) !important;
  color: var(--exxe-ink);
  background: var(--exxe-white) !important;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== SOLID HEADER (override bloom transparent) ========== */
.home-body header.desktop,
.home-body header.desktop.fixed,
.home-body header.desktop.fixed-desktop,
.home-body header.desktop.is-scrolled,
header.desktop,
header.desktop.fixed,
header.desktop.fixed-desktop {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 50 !important;
  background: #ffffff !important;
  border-bottom: 1px solid var(--exxe-line) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  margin: 0 !important;
}

.home-body header.desktop .mega-menu .nav-link,
.home-body header.desktop .header-bar .bar-link,
.home-body header.desktop .header-bar .bar-link a,
.home-body header.desktop.is-scrolled .mega-menu .nav-link,
.home-body header.desktop.is-scrolled .header-bar .bar-link,
header.desktop .mega-menu .nav-link,
header.desktop .header-bar .bar-link {
  color: #111111 !important;
  text-shadow: none !important;
}

.home-body header.desktop .header-bar .bar-link .icon,
.home-body header.desktop .header-bar .bar-link i,
.home-body header.desktop .header-area.last svg,
.home-body header.desktop.is-scrolled .header-bar .bar-link .icon,
.home-body header.desktop.is-scrolled .header-bar .bar-link i,
header.desktop .header-bar .bar-link .icon,
header.desktop .header-bar .bar-link i {
  color: #111111 !important;
  filter: none !important;
}

.home-body header.desktop .logo a img,
.home-body header.desktop.is-scrolled .logo a img,
header.desktop .logo a img {
  filter: none !important;
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
}

header.desktop .h-center {
  background: #fff !important;
  border-bottom: 0 !important;
}

header.desktop .h-center .header-wrapper,
header.desktop .header-wrapper {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

header.desktop .header-wrapper-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 72px !important;
  gap: 20px !important;
  width: 100% !important;
}

header.desktop .header-left {
  flex: 1 1 0 !important;
  order: 2 !important;
  display: flex !important;
  justify-content: center !important;
}

header.desktop .header-center {
  flex: 0 0 auto !important;
  order: 1 !important;
  text-align: left !important;
}

header.desktop .header-right {
  flex: 0 0 auto !important;
  order: 3 !important;
  display: flex !important;
  justify-content: flex-end !important;
}

header.desktop .header-area,
header.desktop .header-area.last {
  width: auto !important;
  float: none !important;
  display: block !important;
}

header.desktop .mega-menu .navbar-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 4px 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

header.desktop .mega-menu .nav-link {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 8px 0 !important;
}

header.desktop .bloom-header-actions,
header.desktop .header-bar {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
}

header.desktop .bloom-header-actions .bar-link,
header.desktop .header-bar .bar-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  white-space: nowrap !important;
}

header.desktop .bloom-bar-label {
  display: none !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

@media (min-width: 1200px) {
  header.desktop .bloom-bar-label { display: inline !important; }
}

header.desktop .bar-cart .count {
  background: #111 !important;
  color: #fff !important;
}

header.desktop .mega-menu .nav-link .under-category::after {
  background: #111 !important;
}

/* Header visibility: never show both at once */
@media (min-width: 992px) {
  .home-body header.mobile,
  header.mobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .home-body header.desktop,
  header.desktop {
    display: none !important;
  }

  .home-body header.mobile,
  header.mobile {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #fff !important;
    border-bottom: 1px solid var(--exxe-line) !important;
    min-height: var(--exxe-header-h) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 12px !important;
    backdrop-filter: none !important;
  }

  .home-body header.mobile .icon-group,
  .home-body header.mobile .icon-group i,
  header.mobile .icon-group,
  header.mobile .icon-group i {
    color: #111 !important;
    filter: none !important;
  }

  .home-body header.mobile .logo img,
  header.mobile .logo img {
    filter: none !important;
    max-height: 36px !important;
  }

  header.mobile .left,
  header.mobile .right {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }
}

/* ========== HERO ========== */
.exxe-hero {
  position: relative;
  width: 100%;
  background: #111;
}

.exxe-hero-swiper,
.exxe-hero-fallback,
.exxe-hero-slide {
  width: 100%;
  min-height: min(62vh, 520px);
  height: clamp(300px, 62vh, 620px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.exxe-hero-fallback {
  display: flex;
  align-items: flex-end;
  background-color: #161616;
  background-image:
    linear-gradient(120deg, rgba(0,0,0,.6), rgba(0,0,0,.25)),
    radial-gradient(ellipse at 70% 40%, rgba(196,162,101,.22), transparent 55%);
}

.exxe-hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.exxe-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 20px 36px;
  color: #fff;
  max-width: 560px;
}

.exxe-hero-kicker {
  font-family: var(--exxe-serif);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 600;
  margin: 0 0 8px;
}

.exxe-hero-copy h1 {
  font-size: clamp(16px, 4vw, 26px);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exxe-hero-lead {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 18px;
}

.exxe-hero-nav {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255,255,255,.35) !important;
  color: #fff !important;
  border-radius: 2px;
}
.exxe-hero-nav::after { font-size: 14px !important; }
.exxe-hero-dots .swiper-pagination-bullet { background: #fff; opacity: .45; }
.exxe-hero-dots .swiper-pagination-bullet-active { opacity: 1; background: var(--exxe-gold); }

@media (min-width: 900px) {
  .exxe-hero-slide,
  .exxe-hero-fallback { height: clamp(460px, 72vh, 680px); }
  .exxe-hero-copy {
    left: auto;
    right: 8%;
    bottom: 18%;
    padding: 0;
  }
}

/* ========== BUTTONS ========== */
.exxe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: .2s ease;
}
.exxe-btn-light { background: #fff; color: #111; }
.exxe-btn-light:hover { background: var(--exxe-gold); color: #111; }
.exxe-btn-dark { background: #111; color: #fff; }
.exxe-btn-dark:hover { background: var(--exxe-gold); color: #111; }

.bloom-btn-primary,
.bloom-btn-dark {
  background: #111 !important;
  color: #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ========== BENEFITS ========== */
.exxe-benefits {
  background: var(--exxe-stone) !important;
  border-bottom: 1px solid var(--exxe-line);
  width: 100%;
}

.exxe-benefits-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 14px 8px;
  scrollbar-width: none;
}
.exxe-benefits-track::-webkit-scrollbar { display: none; }

.exxe-benefit {
  flex: 0 0 auto !important;
  display: block !important;
  scroll-snap-align: start;
  min-width: 150px;
  padding: 6px 14px;
  text-align: center;
  border-right: 1px solid var(--exxe-stone-2);
}
.exxe-benefit:last-child { border-right: 0; }
.exxe-benefit strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
}
.exxe-benefit span {
  display: block;
  font-size: 11px;
  color: var(--exxe-muted);
}

@media (min-width: 992px) {
  .exxe-benefits-track {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    overflow: visible;
    padding: 18px 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .exxe-benefit { min-width: 0; }
}

/* ========== BRANDS ========== */
.exxe-brands { padding: 28px 0 18px; background: #fff; }

.exxe-brands-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 16px 14px;
  max-width: 1400px;
  margin: 0 auto;
}
.exxe-brands-head h2 {
  font-family: var(--exxe-serif);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 600;
  margin: 0;
}
.exxe-brands-head a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--exxe-muted);
  border-bottom: 1px solid var(--exxe-line);
}

.exxe-brands-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
}

.exxe-brands-prev,
.exxe-brands-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #111;
  cursor: pointer;
}
.exxe-brands-prev { left: 4px; }
.exxe-brands-next { right: 4px; }

.exxe-brand-pill {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid var(--exxe-line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transition: .2s ease;
}
.exxe-brand-pill span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #111;
}
.exxe-brand-pill:hover {
  border-color: var(--exxe-gold);
  box-shadow: 0 8px 24px rgba(17,17,17,.08);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .exxe-brand-pill { width: 104px; height: 104px; }
  .exxe-brand-pill span { font-size: 11px; }
}

/* ========== PRODUCT TABS ========== */
.exxe-product-tabs { padding: 10px 0 40px; background: #fff; }

.exxe-tabs-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 12px 18px;
  scrollbar-width: none;
  border-bottom: 1px solid var(--exxe-line);
  margin-bottom: 18px;
}
.exxe-tabs-nav::-webkit-scrollbar { display: none; }

.exxe-tab {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--exxe-muted);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.exxe-tab.active { color: #111; }
.exxe-tab.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: #111;
}

@media (min-width: 768px) {
  .exxe-tabs-nav { justify-content: center; overflow: visible; gap: 28px; }
  .exxe-tab { font-size: 12px; }
}

.exxe-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 12px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .exxe-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 0 24px;
  }
}
@media (min-width: 1100px) {
  .exxe-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

.exxe-empty {
  text-align: center;
  color: var(--exxe-muted);
  padding: 48px 16px;
}

.exxe-tabs-more {
  text-align: center;
  margin-top: 28px;
  padding: 0 16px;
}

/* ========== BOTTOM NAV ========== */
body { padding-bottom: calc(var(--exxe-bottom-nav) + var(--exxe-safe-b)); }
@media (min-width: 992px) { body { padding-bottom: 0; } }

.bloom-bottom-nav {
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  height: calc(var(--exxe-bottom-nav) + var(--exxe-safe-b));
  padding-bottom: var(--exxe-safe-b);
  background: rgba(255,255,255,.97) !important;
  border-top: 1px solid var(--exxe-line);
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
}
.bloom-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--exxe-muted) !important;
  position: relative;
}
.bloom-bottom-nav a:hover { color: #111 !important; }
.bloom-bottom-nav i { font-size: 18px; }
.bloom-bottom-nav .nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  background: #111;
  color: #fff;
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .bloom-bottom-nav { display: none !important; }
}

footer, .footer, .f-main {
  background: #111 !important;
  color: #d0d0d0 !important;
}
footer a { color: #fff !important; }

footer .footer-brand.logo-area {
  margin: 8px 0 24px !important;
  text-align: left !important;
}
footer .footer-brand .logo img {
  max-height: 44px !important;
  max-width: 220px !important;
  width: auto !important;
  height: auto !important;
  filter: none !important;
}

.bloom-trust,
.bloom-features {
  background: var(--exxe-stone) !important;
}
