/* ============================================================
   Elisee Moda — Brand Stylesheet
   Archetype: Editorial Mono + warm sand accent
   Fonts: Cormorant Garamond (display) + Manrope (body/UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── Root tokens ─────────────────────────────────────────── */
:root {
  --brand-white:    #FAFAF8;
  --brand-black:    #0F0F0F;
  --brand-sand:     #C9A87C;
  --brand-sand-lt:  #F0EAE0;
  --brand-sand-dk:  #A8875C;
  --brand-muted:    #888580;
  --brand-border:   #E8E4DE;
  --brand-surface:  #F5F2EE;
  

  --cnvs-themecolor:     #C9A87C;
  --cnvs-themecolor-rgb: 201,168,124;
  --cnvs-body-font:      'Manrope', sans-serif;
  --cnvs-primary-font:   'Manrope', sans-serif;
  

  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
  background-color: var(--brand-white);
  color: var(--brand-black);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

a { color: var(--brand-black); transition: color 0.2s ease; }
a:hover { color: var(--brand-sand); }

/* ── Header ──────────────────────────────────────────────── */
#header {
  --cnvs-header-bg:        var(--brand-white);
  --cnvs-header-sticky-bg: var(--brand-white);
  --cnvs-primary-menu-font: 'Manrope', sans-serif;
  --cnvs-primary-menu-color: var(--brand-black);
  --cnvs-primary-menu-hover-color: var(--brand-sand);
  --cnvs-primary-menu-tt: uppercase;
  --cnvs-primary-menu-ls: 0.1em;
  border-bottom: 1px solid var(--brand-border);
}

/* header-wrap has 2 rows (main nav + category nav).
   Canvas sets .header-wrap-clone to calc(--cnvs-header-height + 1px) = 101px,
   but the actual height is ~100px (main) + ~44px (cat nav) + 2px (borders) = ~146px.
   Override so content doesn't hide under the second row on desktop. */
.is-expanded-menu .header-wrap-clone {
  height: calc(var(--cnvs-header-height) + 46px);
}

/* Centered logo layout */
#header .header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*min-height: 72px;*/
}

#logo {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  flex: 0 0 auto !important;
  margin: 0 !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  
}
#logo img{
  height: auto !important;
}

#header .primary-menu {
  flex: 1;
  order: 1;
  border: none !important;
}

#header .primary-menu > ul.menu-container {
  justify-content: flex-start;
  border-right: none !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

#header .header-misc {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  order: 3;
  border: none !important;
}

/* Mobile: logo a la izquierda, iconos+hamburger a la derecha */
@media (max-width: 991.98px) {
  #header .container-fluid > .header-row {
    flex-wrap: nowrap;
  }
  #logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    order: 1;
    flex: 0 0 auto !important;
  }
  #logo a {
    width: auto;
  }
  #header .top-primary-menu {
    flex: 0 0 0 !important;
    width: 0 !important;
    min-width: 0;
    overflow: hidden;
  }
  #header .header-misc {
    min-width: 0;
    gap: .75rem;
  }
}

.em-header-icon {
  font-size: 1.2rem;
  color: var(--brand-black);
  transition: color 0.2s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.em-header-icon:hover { color: var(--brand-sand); }

.em-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--brand-black);
  color: var(--brand-white);
  font-size: 0.65rem;
  font-family: 'Manrope', sans-serif;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Category nav trigger label */
.em-cat-trigger .cnvs-hamburger {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
}

.em-cat-trigger-label {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  line-height: 1;
}

/* Primary nav link size */
#header .menu-link > div {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ── Secondary Category Nav ─────────────────────────────── */
.em-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;  
}

.em-cat-list li a {
  display: block;
  padding: 0.7rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-black);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.em-cat-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 1.5px;
  background: var(--brand-black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.em-cat-list li a:hover { color: var(--brand-sand); }
.em-cat-list li a:hover::after,
.em-cat-list li.active a::after { transform: scaleX(1); background: var(--brand-sand); }
.em-cat-list li.active a { color: var(--brand-sand); }

/* ── Hero Slider ─────────────────────────────────────────── */
.em-hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
}

.em-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.em-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.em-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.em-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.28);
  display: flex;
  align-items: flex-end;
  padding: 5rem 4rem;
}

.em-slide-content {
  max-width: 540px;
  color: var(--brand-white);
}

.em-slide-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-sand);
  margin-bottom: 0.75rem;
}

.em-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--brand-white);
}

.em-slide-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Buttons */
.em-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.em-btn-primary {
  background: var(--brand-white);
  color: var(--brand-black);
  border-color: var(--brand-white);
}
.em-btn-primary:hover {
  background: var(--brand-sand);
  border-color: var(--brand-sand);
  color: var(--brand-white);
}

.em-btn-outline {
  background: transparent;
  color: var(--brand-white);
  border-color: rgba(250,250,248,0.6);
}
.em-btn-outline:hover {
  background: var(--brand-white);
  color: var(--brand-black);
  border-color: var(--brand-white);
}

.em-btn-dark {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}
.em-btn-dark:hover {
  background: var(--brand-sand);
  border-color: var(--brand-sand);
  color: var(--brand-white);
}

.em-btn-outline-dark {
  background: transparent;
  color: var(--brand-black);
  border-color: var(--brand-black);
}
.em-btn-outline-dark:hover {
  background: var(--brand-black);
  color: var(--brand-white);
}

/* Hero controls */
.em-hero-arrows {
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.em-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(250,250,248,0.5);
  background: transparent;
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.em-arrow:hover { background: rgba(250,250,248,0.15); border-color: var(--brand-white); }

.em-hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.em-dot {
  width: 24px;
  height: 2px;
  background: rgba(250,250,248,0.4);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  border: none;
  padding: 0;
}
.em-dot.active { background: var(--brand-white); width: 40px; }

/* ── Section headings ────────────────────────────────────── */
.em-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.em-section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-sand);
  margin-bottom: 0.6rem;
}

.em-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0;
}

/* ── Product Cards ──────────────────────────────────────── */
.em-product-card {
  position: relative;
  cursor: pointer;
}

.em-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--brand-surface);
  margin-bottom: 1rem;
}

.em-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  aspect-ratio: 3/4;
}

.em-card-img-wrap .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.em-product-card:hover .img-primary { opacity: 0; }
.em-product-card:hover .img-hover { opacity: 1; }
.em-product-card:hover .em-card-img-wrap img { transform: scale(1.24); }

.em-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--brand-black);
  color: var(--brand-white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  z-index: 1;
}

.em-card-badge.sale { background: var(--brand-sand); }
.em-card-badge.new { background: var(--brand-black); }
.em-card-badge.best { background: #2C2C2C; }

.em-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-black);
  color: var(--brand-white);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.em-product-card:hover .em-quick-add { transform: translateY(0); }
.em-quick-add:hover { background: var(--brand-sand); color: var(--brand-white); }

.em-card-info { padding: 0 0.25rem; }

.em-card-brand {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: 0.25rem;
}

.em-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.em-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-sand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.em-card-price .original {
  font-weight: 400;
  color: var(--brand-muted);
  text-decoration: line-through;
  font-size: 0.8rem;
}

.em-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--brand-white);
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--brand-black);
  opacity: 0;
  transition: opacity 0.25s ease, color 0.2s ease;
  z-index: 2;
}
.em-product-card:hover .em-wishlist { opacity: 1; }
.em-wishlist:hover { color: var(--brand-sand); }

/* ── Promo Banner ────────────────────────────────────────── */
.em-promo-banner {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  height: 480px;
  display: flex;
  align-items: center;
}

.em-promo-banner.em-promo-light {
  background: var(--brand-sand-lt);
}

.em-promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.em-promo-img-half {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.em-promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.42);
}

.em-promo-content {
  position: relative;
  z-index: 2;
  color: var(--brand-white);
  max-width: 520px;
}

.em-promo-content.dark-text { color: var(--brand-black); }

.em-promo-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-sand);
  margin-bottom: 0.8rem;
}

.em-promo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.em-promo-text {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 380px;
  line-height: 1.8;
}

/* ── Stats strip ─────────────────────────────────────────── */
.em-stats-strip {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 3.5rem 0;
}

.em-stat-item { text-align: center; }

.em-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--brand-sand);
  display: block;
  margin-bottom: 0.4rem;
}

.em-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.6);
}

/* ── Tab Nav (Featured/New Arrivals) ─────────────────────── */
.em-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 2.5rem;
}

.em-tab-btn {
  padding: 0.75rem 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.em-tab-btn.active { color: var(--brand-black); border-bottom-color: var(--brand-black); }
.em-tab-btn:hover { color: var(--brand-black); }

.em-tab-pane { display: none; }
.em-tab-pane.active { display: block; }

/* ── Instagram Section ───────────────────────────────────── */
.em-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.35rem;
}

.em-insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--brand-surface);
}

.em-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  aspect-ratio: 1;
}

.em-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.em-insta-overlay i {
  font-size: 1.5rem;
  color: var(--brand-white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.em-insta-item:hover img { transform: scale(1.06); opacity: 0.85; }
.em-insta-item:hover .em-insta-overlay { background: rgba(15,15,15,0.35); }
.em-insta-item:hover .em-insta-overlay i { opacity: 1; transform: scale(1); }

/* ── Cart Drawer ─────────────────────────────────────────── */
.em-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.45);
  z-index: 390;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.em-cart-backdrop.open { opacity: 1; pointer-events: auto; }

.em-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--brand-white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -8px 0 40px rgba(15,15,15,0.12);
}

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

.em-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--brand-border);
}

.em-cart-head h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  margin: 0;
}

.em-cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--brand-black);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.em-cart-close:hover { color: var(--brand-sand); }

.em-cart-promo-bar {
  background: var(--brand-black);
  color: var(--brand-white);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

.em-cart-promo-bar span { color: var(--brand-sand); }

.em-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

.em-cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--brand-border);
}

.em-cart-item:last-child { border-bottom: none; margin-bottom: 0; }

.em-cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--brand-surface);
  aspect-ratio: 4/5;
}

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

.em-cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.em-cart-item-meta {
  font-size: 0.72rem;
  color: var(--brand-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.em-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--brand-border);
  width: fit-content;
}

.em-qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-black);
  transition: background 0.2s;
}
.em-qty-btn:hover { background: var(--brand-surface); }

.em-qty-val {
  width: 36px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  outline: none;
  background: none;
  font-family: 'Manrope', sans-serif;
}

.em-cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

.em-cart-remove {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-muted);
  text-align: right;
  margin-top: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.em-cart-remove:hover { color: var(--brand-black); }

.em-cart-foot {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--brand-border);
}

.em-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.em-cart-subtotal .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

.em-cart-subtotal .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.em-cart-shipping-note {
  font-size: 0.7rem;
  color: var(--brand-muted);
  margin-bottom: 1.25rem;
}

.em-cart-checkout {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--brand-black);
  color: var(--brand-white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  text-decoration: none;
}
.em-cart-checkout:hover { background: var(--brand-sand); color: var(--brand-white); }

.em-cart-continue {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-top: 0.85rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  transition: color 0.2s;
}
.em-cart-continue:hover { color: var(--brand-black); }

/* ── WhatsApp Button ─────────────────────────────────────── */
.em-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: var(--brand-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: var(--z-toast);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.em-whatsapp:hover {
  transform: scale(1.1);
  color: var(--brand-white);
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
}

/* ── Announcement Bar ────────────────────────────────────── */
.em-announce-bar {
  background: var(--brand-black);
  color: var(--brand-white);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

.em-announce-bar a { color: var(--brand-sand); text-decoration: none; }

/* ── Footer ─────────────────────────────────────────────── */
#footer {
  --cnvs-footer-bg:           #111110;
  --cnvs-footer-top-border:   1px solid rgba(201,168,124,0.15);
  --cnvs-copyrights-link-color: rgba(250,250,248,0.45);
}

.em-footer-brand { margin-bottom: 1.5rem; }

.em-footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.65);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.em-footer-desc {
  font-size: 0.8rem;
  color: rgba(250,250,248,0.45);
  line-height: 1.8;
  max-width: 280px;
}

.em-footer-head {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-sand);
  margin-bottom: 1.25rem;
  display: block;
}

.em-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.em-footer-links li { margin-bottom: 0.6rem; }

.em-footer-links a {
  font-size: 0.82rem;
  color: rgba(250,250,248,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}
.em-footer-links a:hover { color: var(--brand-sand); }

.em-footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.em-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,124,0.3);
  color: rgba(250,250,248,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.em-social-link:hover {
  border-color: var(--brand-sand);
  color: var(--brand-sand);
  background: rgba(201,168,124,0.08);
}

.em-newsletter-form {
  display: flex;
  margin-top: 0.75rem;
}

.em-newsletter-input {
  flex: 1;
  background: rgba(250,250,248,0.06);
  border: 1px solid rgba(201,168,124,0.25);
  border-right: none;
  color: var(--brand-white);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-family: 'Manrope', sans-serif;
  outline: none;
}
.em-newsletter-input::placeholder { color: rgba(250,250,248,0.3); }
.em-newsletter-input:focus { border-color: var(--brand-sand); }

.em-newsletter-submit {
  background: var(--brand-sand);
  border: 1px solid var(--brand-sand);
  color: var(--brand-white);
  padding: 0.7rem 1.1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
}
.em-newsletter-submit:hover { background: var(--brand-sand-dk); border-color: var(--brand-sand-dk); }

/* ── Catalog Page ────────────────────────────────────────── */
.em-catalog-hero {
  background: var(--brand-surface);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--brand-border);
}

.em-catalog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.em-breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brand-muted);
}

.em-breadcrumb a { color: var(--brand-muted); }
.em-breadcrumb a:hover { color: var(--brand-sand); }

.em-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.em-result-count {
  font-size: 0.78rem;
  color: var(--brand-muted);
  letter-spacing: 0.04em;
}

.em-sort-select {
  border: 1px solid var(--brand-border);
  background: var(--brand-white);
  color: var(--brand-black);
  padding: 0.5rem 2rem 0.5rem 0.85rem;
  font-size: 0.75rem;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230F0F0F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
}

.em-filter-sidebar {
  position: sticky;
  top: 120px;
}

.em-filter-group { margin-bottom: 2rem; }

.em-filter-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-black);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
}

.em-filter-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.em-filter-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--brand-black);
  cursor: pointer;
}

.em-filter-check label {
  font-size: 0.8rem;
  color: var(--brand-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0.5rem;
}

.em-filter-check label span {
  font-size: 0.72rem;
  color: var(--brand-muted);
}

.em-price-range {
  padding: 0.5rem 0;
}

.em-price-range input[type="range"] {
  width: 100%;
  accent-color: var(--brand-black);
}

.em-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--brand-muted);
  margin-top: 0.5rem;
}

.em-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.em-size-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--brand-border);
  background: none;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.em-size-btn:hover,
.em-size-btn.active { background: var(--brand-black); border-color: var(--brand-black); color: var(--brand-white); }

.em-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 3rem;
}

.em-page-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--brand-border);
  background: none;
  font-size: 0.8rem;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--brand-black);
  text-decoration: none;
}
.em-page-btn:hover,
.em-page-btn.active { background: var(--brand-black); border-color: var(--brand-black); color: var(--brand-white); }

/* ── Cart Page ───────────────────────────────────────────── */
.em-cart-page-head {
  text-align: center;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--brand-border);
}

.em-cart-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.em-cart-table { width: 100%; }

.em-cart-table th {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--brand-border);
  font-family: 'Manrope', sans-serif;
}

.em-cart-table td {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--brand-border);
  vertical-align: middle;
}

.em-cart-row-img {
  width: 90px;
  height: 112px;
  object-fit: cover;
  flex-shrink: 0;
  aspect-ratio: 4/5;
}

.em-cart-row-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.em-cart-row-meta {
  font-size: 0.72rem;
  color: var(--brand-muted);
  letter-spacing: 0.04em;
}

.em-order-summary-box {
  background: var(--brand-surface);
  padding: 2rem;
  position: sticky;
  top: 120px;
}

.em-order-summary-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Manrope', sans-serif;
}

.em-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--brand-border);
  font-size: 0.83rem;
}

.em-summary-line:last-of-type { border-bottom: none; }

.em-summary-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* ── Utility ─────────────────────────────────────────────── */
.em-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-black);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-black);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.em-view-all:hover { color: var(--brand-sand); border-color: var(--brand-sand); }

.em-divider {
  border: none;
  border-top: 1px solid var(--brand-border);
  margin: 0;
}

.em-section-bg { background: var(--brand-surface); }
.em-section-dark { background: var(--brand-black); color: var(--brand-white); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.em-animate { animation: fadeUp 0.7s ease both; }
.em-animate-d1 { animation-delay: 0.1s; }
.em-animate-d2 { animation-delay: 0.2s; }
.em-animate-d3 { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .em-hero { height: 80vh; min-height: 500px; }
  .em-slide-overlay { padding: 3rem 2rem; }
  .em-hero-arrows { right: 2rem; bottom: 4rem; }

  .em-promo-img-half { display: none; }
  .em-promo-banner { height: auto; padding: 4rem 0; }
  .em-promo-img { opacity: 0.35; }

  .em-insta-grid { grid-template-columns: repeat(3, 1fr); }

  .em-cart-drawer { width: 100vw; }

  .em-filter-sidebar { position: static; }

  .em-cat-list { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 1rem; }
}

@media (max-width: 767px) {
  .em-slide-title { font-size: 2.4rem; }
  .em-promo-title { font-size: 2.2rem; }
  .em-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .em-promo-content { padding: 0 1.5rem; }

  .em-cart-table .hide-mobile { display: none; }
}
