:root {
  --elvora-cream: #faf8f5;
  --elvora-paper: #f2eee9;
  --elvora-sand: #d7c0a4;
  --elvora-taupe: #b29270;
  --elvora-gold: #a66b19;
  --elvora-ink: #2b1d16;
  --elvora-muted: #6f6258;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cairo', Arial, sans-serif;
}

#loader {
  animation: elvoraLoaderFailsafe .45s ease 10s forwards;
  background: #faf8f5 !important;
}
@keyframes elvoraLoaderFailsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

html { font-size: 16px; direction: ltr; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  direction: ltr;
  background: var(--elvora-cream);
  color: var(--elvora-ink);
  font-family: var(--font-body);
}
.loader-logo-img { display: none !important; }
.loader-elvora-logo {
  font: 700 46px/1 var(--font-display);
  color: var(--elvora-ink);
}
.loader-elvora-subtitle {
  margin-top: 8px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 2px;
  color: #5d4d42;
}
.loader-text-ar,
.loader-progress-pct { color: var(--elvora-ink) !important; }
.loader-dots span { background: var(--elvora-sand) !important; }
.loader-progress-wrap { background: rgba(43,29,22,.12) !important; }
.loader-progress-bar { background: #2a1b13 !important; box-shadow: none !important; }

.header-lang-toggle, .bottom-nav, .stats-strip, .marquee-banner, .why-us, .about-section { display: none !important; }
.site-header { position: sticky; top: 0; z-index: 500; background: var(--elvora-cream); box-shadow: none; }
.elvora-topbar {
  height: 38px;
  background: #d9c2a5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  color: #332419;
  font-size: 13px;
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
}
.elvora-topbar-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(70px, 14vw, 210px);
  padding-inline: 40px;
  animation: elvoraTopbarMarquee 18s linear infinite;
  will-change: transform;
}
.elvora-topbar span { display: inline-flex; align-items: center; justify-content: center; gap: 7px; white-space: nowrap; letter-spacing: .2px; }
.elvora-topbar svg { width: 16px; height: 16px; color: #9a5f12; }
@keyframes elvoraTopbarMarquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}
.elvora-header {
  height: 98px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 34px;
  direction: ltr;
  background: rgba(250,248,245,.96);
  border-bottom: 1px solid rgba(43,29,22,.08);
}
.elvora-header > .elvora-logo { order: 1; }
.elvora-logo { text-decoration: none; color: var(--elvora-ink); display: inline-flex; flex-direction: column; align-items: flex-start; line-height: .9; flex: 0 0 auto; }
.elvora-logo span { font: 700 40px/1 var(--font-display); letter-spacing: 0; }
.elvora-logo small { font-size: 11px; letter-spacing: 1.1px; margin-left: 12px; margin-top: 5px; }
.elvora-nav {
  order: 2;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 42px);
  margin: 0 auto;
  padding: 0;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
.elvora-nav a {
  color: #1f1712;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.elvora-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.elvora-dropdown-toggle,
.mobile-catalog-toggle {
  border: 0;
  background: transparent;
  color: #1f1712;
  font: 800 12px/1 var(--font-body);
  cursor: pointer;
  padding: 0;
}
.elvora-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px;
}
.elvora-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  padding: 10px;
  background: #fffaf5;
  border: 1px solid #e2d2c0;
  box-shadow: 0 18px 40px rgba(43,29,22,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 700;
}
.elvora-dropdown:hover .elvora-dropdown-menu,
.elvora-dropdown:focus-within .elvora-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.elvora-dropdown-menu button,
.mobile-catalog-list button {
  width: 100%;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: #3a2a21;
  text-align: left;
  padding: 0 12px;
  font: 700 12px/1.2 var(--font-body);
  cursor: pointer;
}
.elvora-dropdown-menu button:hover,
.mobile-catalog-list button:hover {
  background: #f2eee9;
}
.elvora-menu-empty {
  display: block;
  padding: 10px 12px;
  color: #8a7a6d;
  font: 700 12px/1.4 var(--font-body);
  text-align: center;
}
.elvora-actions { order: 3; display: flex; justify-content: flex-end; align-items: center; gap: 18px; margin-left: 0; flex: 0 0 auto; min-width: 138px; direction: ltr; }
.elvora-actions button, .elvora-icon-btn, .search-btn, .cart-btn {
  width: 22px; height: 22px; padding: 0; border: 0; background: transparent; color: #1f1712; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; position: relative; border-radius: 0;
}
.elvora-actions svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -11px; right: -10px; min-width: 18px; height: 18px; border-radius: 50%;
  background: #3a2a21; color: #fff; font-size: 10px; display: grid; place-items: center; border: 0;
}
.menu-toggle { display: none !important; }
.search-bar { display: none; background: #fff; border-bottom: 1px solid #eadfd3; padding: 14px 72px; }
.search-bar.open, .search-bar.active { display: flex; align-items: center; gap: 12px; }
.search-input { border: 1px solid #e1d3c4; border-radius: 0; background: #fff; color: var(--elvora-ink); }

.elvora-hero {
  position: relative;
  min-height: 558px;
  background-image: url("hero section.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 70px 0 80px 90px;
}
.elvora-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244,237,228,.98) 0%, rgba(244,237,228,.94) 31%, rgba(244,237,228,.56) 49%, rgba(244,237,228,.03) 67%);
  pointer-events: none;
}
.elvora-hero-copy { max-width: 470px; }
.elvora-hero-copy { position: relative; z-index: 1; }
.elvora-hero h1 {
  font: 600 53px/1.12 var(--font-display);
  color: #332017;
  margin: 0 0 28px;
  letter-spacing: 0;
}
.elvora-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: #2d211a;
  margin: 0 0 34px;
}
.elvora-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 174px; height: 48px; padding: 0 26px;
  background: #2a1b13; color: #fff; text-decoration: none; border: 0; border-radius: 2px;
  font-size: 14px; font-weight: 800; letter-spacing: .3px; cursor: pointer;
}

.catalog-section { padding: 40px 70px 24px; background: var(--elvora-cream); overflow: visible !important; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}
.catalog-card {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  min-height: 184px !important;
  padding: 0 !important;
  text-align: center !important;
  cursor: pointer;
  overflow: visible !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  transform: none !important;
  isolation: isolate;
}
.elvora-categories .catalog-card {
  display: none !important;
}
.elvora-categories .catalog-card.elvora-home-catalog {
  display: flex !important;
}
.catalog-card::before {
  content: none !important;
  display: none !important;
}
.catalog-card::after {
  display: none !important;
  content: none !important;
}
.catalog-card-img {
  display: block !important;
  width: 164px;
  aspect-ratio: 1;
  height: 164px !important;
  border-radius: 50% !important;
  margin: 0 auto 18px;
  object-fit: cover;
  object-position: center;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.catalog-card-icon, .catalog-card p { display: none !important; }
.catalog-card h3 {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #18120f !important;
  text-transform: uppercase;
  margin: 0 !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  background: transparent !important;
  padding: 0 !important;
  text-shadow: none !important;
  width: auto !important;
  min-height: auto !important;
  line-height: 1.25 !important;
  z-index: 2 !important;
}
.elvora-categories .catalog-card *,
.elvora-categories .catalog-card-img,
.elvora-categories .catalog-card h3 {
  position: relative !important;
}
.elvora-categories .catalog-card > :not(.catalog-card-img):not(h3) {
  display: none !important;
}

.elvora-promos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 14px 70px 30px; max-width: 1240px; margin: 0 auto;
}
.elvora-promo {
  min-height: 222px; display: flex; align-items: center; padding: 38px 34px;
  background-image: linear-gradient(90deg, rgba(237,226,215,.98) 0%, rgba(237,226,215,.8) 38%, rgba(237,226,215,.15) 70%), url("assets/elvora-reference.jpeg");
  background-size: cover; background-position: var(--pos); border-radius: 2px;
}
.elvora-promo h3 { font: 600 27px/1 var(--font-display); margin: 0 0 13px; }
.elvora-promo p { margin: 0 0 18px; font-size: 14px; }
.elvora-promo .elvora-btn { min-width: 128px; height: 37px; font-size: 12px; }

.products-section { padding: 10px 70px 36px; background: var(--elvora-cream); }
.elvora-section-line {
  max-width: 1130px; margin: 0 auto 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.elvora-section-line span { height: 1px; background: #e6ddd3; }
.elvora-section-line h2 {
  font: 600 23px/1 var(--font-display); letter-spacing: 4px; text-align: center; margin: 0; color: #302119;
}
.elvora-section-line a {
  justify-self: end; color: #211812; font-size: 12px; text-decoration: underline; font-weight: 800;
}
.filter-tabs, .products-filter-bar { max-width: 1130px; margin-left: auto; margin-right: auto; }
.filter-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.filter-tab {
  border: 1px solid #ded2c7; background: transparent; color: #3b2d25; border-radius: 0; padding: 7px 12px;
  font-size: 11px; font-weight: 800; cursor: pointer;
}
.filter-tab.active { background: #2a1b13; color: #fff; border-color: #2a1b13; }
.products-filter-bar {
  background: transparent; border: 0; box-shadow: none; padding: 0 0 18px;
  display: flex; justify-content: space-between; gap: 15px; color: var(--elvora-muted);
}
.elvora-products .filter-tabs,
.elvora-products .products-filter-bar { display: none !important; }
.price-input, .sort-select {
  border: 1px solid #ddd0c2; border-radius: 0; background: #fff; min-height: 34px; color: var(--elvora-ink);
}
.price-filter-btn, .price-clear-btn, .btn-load-more {
  border: 0; border-radius: 2px; background: #2a1b13; color: #fff; min-height: 34px; padding: 0 14px; font-weight: 800;
}
.price-clear-btn { background: #cbb49a; color: #2a1b13; }
.products-grid {
  max-width: 1130px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 38px 28px;
}
.product-card {
  background: transparent !important; border: 0 !important; box-shadow: none !important; border-radius: 0 !important; overflow: visible !important;
  min-width: 0;
}
.product-card:hover { transform: none !important; box-shadow: none !important; }
.product-img-wrap {
  aspect-ratio: 1 / 1.04; border-radius: 0 !important; overflow: hidden; background: #eadfd4 !important;
  position: relative;
}
.product-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.elvora-products .product-card .product-img-wrap::before {
  content: "♡";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #6d5a4d;
  display: grid;
  place-items: center;
  font-size: 19px;
  line-height: 1;
}
.elvora-products .product-card:nth-child(n+6) { display: none !important; }
.elvora-products .product-img { opacity: 1 !important; }
.product-img-wrap::after { content: ""; position: absolute; inset: 0; background: rgba(255,248,241,.08); pointer-events: none; }
.product-badge, .product-cat, .product-stars, .product-overlay, .product-card-actions { display: none !important; }
.product-info { padding: 12px 0 0 !important; text-align: left !important; background: transparent !important; }
.product-name {
  font: 500 14px/1.35 var(--font-body) !important; color: #231812 !important; margin: 0 0 8px !important;
  min-height: 38px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-row { margin: 0 !important; }
.product-price-row > div { gap: 16px !important; }
.product-price, .product-price-old { font-size: 14px !important; color: #231812 !important; font-weight: 500 !important; white-space: nowrap; }
.product-price-old { color: #907d6d !important; text-decoration: line-through; }
.product-img-wrap .product-badge + img, .product-card:nth-child(n) .product-img {
  filter: sepia(.12) saturate(.82) brightness(1.03);
}
.skeleton-card { min-height: 260px; background: #eee6dd !important; }
.elvora-dots { display: flex; justify-content: center; gap: 15px; padding: 22px 0 0; }
.elvora-dots span { width: 8px; height: 8px; border-radius: 50%; background: #e5ddd5; }
.elvora-dots span:first-child { background: #1f1712; }

.elvora-testimonials {
  max-width: 1130px; margin: 0 auto; border-top: 1px solid #e5ddd5; border-bottom: 1px solid #e5ddd5;
  padding: 28px 0 36px; display: grid; grid-template-columns: 36px repeat(3,1fr) 36px; gap: 28px; align-items: center;
}
.elvora-testimonials .elvora-section-line { grid-column: 1 / -1; width: 100%; margin-bottom: 0; }
.elvora-review { min-height: 82px; background: rgba(245,241,237,.9); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 12px; }
.elvora-review strong { color: #af7422; letter-spacing: 3px; font-size: 14px; margin-bottom: 8px; }
.elvora-review p { margin: 0 0 8px; font-size: 13px; }
.elvora-review span { font-size: 13px; color: #3c2d24; }
.elvora-arrow { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #d7ccc1; background: transparent; font-size: 24px; color: #7a6b5f; }

.elvora-benefits {
  max-width: 1130px; margin: 0 auto; padding: 28px 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
}
.elvora-benefits div { display: grid; grid-template-columns: 45px 1fr; column-gap: 13px; align-items: center; }
.elvora-benefits i { grid-row: span 2; width: 42px; height: 42px; color: #a98763; display: grid; place-items: center; }
.elvora-benefits svg { width: 42px; height: 42px; }
.elvora-benefits strong { font-size: 12px; color: #251a14; }
.elvora-benefits small { font-size: 12px; color: #62564e; }
.elvora-contact { padding: 42px 70px; background: #f2eee9; }
.elvora-contact .contact-grid { max-width: 900px; margin: 0 auto; }
.site-footer { background: #faf8f5 !important; color: var(--elvora-ink) !important; padding: 0 !important; }
.elvora-footer {
  border-top: 1px solid #e5ddd5;
  max-width: 1130px;
  margin: 0 auto;
  padding: 38px 0 30px;
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1fr;
  gap: 46px;
  align-items: start;
}
.elvora-footer .elvora-logo { color: var(--elvora-ink); }
.elvora-footer .elvora-logo span { font-size: 34px; }
.elvora-footer .elvora-logo small { font-size: 9px; }
.elvora-footer p { margin: 12px 0 0; font-size: 13px; line-height: 1.7; color: #6f6258; }
.elvora-footer h3 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #2a1b13;
}
.elvora-footer a {
  display: block;
  color: #6f6258;
  text-decoration: none;
  font-size: 13px;
  margin: 10px 0;
}
.elvora-footer-bottom {
  border-top: 1px solid #e5ddd5;
  max-width: 1130px;
  margin: 0 auto;
  padding: 16px 0 22px;
  color: #7a6b5f;
  font-size: 12px;
  text-align: center;
}

.cart-sidebar { background: #fbf8f4; box-shadow: 8px 0 60px rgba(43,29,22,.18); }
.cart-sidebar::before, .loader-progress-bar { background: #d7c0a4; }
.btn-checkout, .btn-primary, .btn-add-cart, .btn-quick-add { background: #2a1b13 !important; color: #fff !important; border-radius: 2px !important; }
body {
  --pink-deep: #2a1b13;
  --pink-main: #2a1b13;
  --pink-light: #d7c0a4;
  --pink-pale: #f2eee9;
  --pink-blush: #f8f3ed;
  --border: #e5d8ca;
  --text-dark: #2b1d16;
  --text-mid: #6f6258;
  --text-light: #8a7a6d;
  --gold: #a66b19;
  --gold-light: #d7c0a4;
}
a,
.section-title em,
.product-detail-price,
.cart-total strong,
.summary-total,
.checkout-total,
.product-price {
  color: #2a1b13 !important;
}
.lang-btn.active,
.payment-method-btn.active,
.pm-sub-btn.active,
.step-indicator.active,
.step-indicator.done,
.product-badge,
.product-badge.new,
.product-badge.sale {
  background: #2a1b13 !important;
  color: #fff !important;
  border-color: #2a1b13 !important;
}
.form-input:focus,
.newsletter-input:focus,
.zone-select:focus,
.price-input:focus,
.sort-select:focus {
  border-color: #a98763 !important;
  box-shadow: 0 0 0 3px rgba(169,135,99,.14) !important;
}
.checkout-page-header,
.product-detail-header,
.cart-header {
  background: #faf8f5 !important;
  border-color: #e5d8ca !important;
}
[style*="#d63384"],
[style*="#e91e8c"],
[style*="#ff6ec7"],
[style*="#fff8fc"],
[style*="#fdf0f7"],
[style*="#f9e4f0"] {
  border-color: #d7c0a4 !important;
  color: #2a1b13 !important;
}
button[style*="#d63384"],
button[style*="#e91e8c"],
[style*="linear-gradient"][style*="#d63384"],
[style*="linear-gradient"][style*="#e91e8c"] {
  background: #2a1b13 !important;
  color: #fff !important;
  border-color: #2a1b13 !important;
}
[style*="#fff8fc"],
[style*="#fdf0f7"],
[style*="#f9e4f0"],
[style*="#fce4ec"] {
  background: #faf8f5 !important;
}
.checkout-page [style*="var(--pink"],
.product-detail-page [style*="var(--pink"],
.cart-sidebar [style*="var(--pink"] {
  color: #2a1b13 !important;
  border-color: #d7c0a4 !important;
}
.detail-header-logo-img,
.checkout-logo-img,
.footer-logo-img,
.nav-logo-img,
.mobile-nav-logo-img { display: none !important; }
.product-detail-header::before,
.checkout-page-header::before {
  content: "ELVORA";
  font: 700 28px/1 var(--font-display);
  color: var(--elvora-ink);
}
.product-detail-page,
.checkout-page,
.product-modal,
.mobile-nav,
.catalog-drawer {
  background: #faf8f5 !important;
  color: var(--elvora-ink) !important;
}
.product-detail-add-btn,
.checkout-submit,
.catalog-drawer-back,
.drawer-filter-toggle,
.btn-product-link {
  background: #2a1b13 !important;
  color: #fff !important;
  border-color: #2a1b13 !important;
  border-radius: 2px !important;
}
.catalog-detail-page,
.catalog-drawer {
  background: #faf8f5 !important;
}
.catalog-drawer-header {
  background: #faf8f5 !important;
  border-bottom: 1px solid #e5d8ca !important;
}
.catalog-drawer-header h2,
.catalog-drawer-title {
  font: 700 18px/1 var(--font-body) !important;
  color: var(--elvora-ink) !important;
}
.drawer-tab {
  background: #fffaf5 !important;
  border: 1px solid #e2d2c0 !important;
  border-radius: 18px !important;
  min-width: 86px !important;
  height: 72px !important;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}
.drawer-tab.active {
  background: #2a1b13 !important;
  border-color: #2a1b13 !important;
}
.drawer-tab-icon { display: none !important; }
.drawer-tab-name {
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #6f6258 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}
.drawer-tab.active .drawer-tab-name { color: #fff !important; }
.catalog-drawer-hero {
  background: #faf8f5 !important;
  border-bottom: 1px solid #eee2d6 !important;
  padding: 18px 26px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}
.drawer-hero-icon { display: none !important; }
.drawer-hero-img {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex: 0 0 auto;
}
.drawer-hero-info h2 {
  font: 600 28px/1 var(--font-display) !important;
  color: var(--elvora-ink) !important;
  margin: 0 0 8px !important;
}
.drawer-hero-count {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #fffaf5 !important;
  border: 1px solid #d7c0a4 !important;
  color: #5a493d !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.drawer-filter-toggle {
  margin-left: auto !important;
  width: 46px !important;
  height: 46px !important;
}
.catalog-drawer-filters {
  background: #fffaf5 !important;
  border-bottom: 1px solid #e5d8ca !important;
}
.catalog-drawer {
  width: min(100vw, 760px) !important;
  max-width: 100vw !important;
  border-radius: 0 !important;
  box-shadow: 0 20px 70px rgba(42,27,19,.18) !important;
}
.catalog-drawer-topbar {
  min-height: 74px !important;
  padding: 14px 26px !important;
  background: #fffaf5 !important;
  border-bottom: 1px solid #eadfd5 !important;
}
.catalog-drawer-back,
.catalog-drawer-cart-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 2px !important;
  display: inline-grid !important;
  place-items: center !important;
}
.catalog-drawer-topbar-title {
  font: 800 18px/1 var(--font-body) !important;
  color: #2a1b13 !important;
}
.catalog-drawer-tabs {
  display: flex !important;
  gap: 10px !important;
  padding: 12px 22px !important;
  background: #faf8f5 !important;
  border-bottom: 1px solid #eadfd5 !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}
.catalog-drawer-tabs::-webkit-scrollbar {
  display: none !important;
}
.catalog-drawer-tabs .drawer-tab {
  min-width: auto !important;
  height: 42px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  flex: 0 0 auto !important;
}
.catalog-drawer-hero {
  padding: 13px 24px !important;
  min-height: 78px !important;
  background: #fffaf5 !important;
}
.drawer-hero-img {
  width: 48px !important;
  height: 48px !important;
}
.drawer-hero-info {
  min-width: 0 !important;
}
.drawer-hero-info h2 {
  font-size: 24px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 0 5px !important;
}
.drawer-filter-toggle {
  flex: 0 0 auto !important;
  width: 42px !important;
  height: 42px !important;
}
.catalog-drawer-body {
  padding: 20px 24px 28px !important;
  background: #faf8f5 !important;
}
.catalog-drawer-body #catalogDetailGrid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px 18px !important;
  padding: 0 !important;
}
.catalog-drawer-body #catalogDetailGrid .product-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.catalog-drawer-body #catalogDetailGrid .product-img-wrap {
  aspect-ratio: 1 / 1.13 !important;
  border-radius: 0 !important;
  background: #eadfd4 !important;
  overflow: hidden !important;
}
.catalog-drawer-body #catalogDetailGrid .product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: none !important;
}
.catalog-drawer-body #catalogDetailGrid .product-img-wrap::before,
.catalog-drawer-body #catalogDetailGrid .product-img-wrap::after,
.catalog-drawer-body #catalogDetailGrid .product-overlay,
.catalog-drawer-body #catalogDetailGrid .product-card-actions,
.catalog-drawer-body #catalogDetailGrid .product-cat,
.catalog-drawer-body #catalogDetailGrid .product-stars,
.catalog-drawer-body #catalogDetailGrid .product-badge {
  display: none !important;
  content: none !important;
}
.catalog-drawer-body #catalogDetailGrid .product-info {
  padding: 12px 0 0 !important;
  background: transparent !important;
  text-align: left !important;
}
.catalog-drawer-body #catalogDetailGrid .product-name {
  min-height: 42px !important;
  margin: 0 0 8px !important;
  font: 500 15px/1.4 var(--font-body) !important;
  color: #2a1b13 !important;
}
.catalog-drawer-body #catalogDetailGrid .product-price-row {
  margin: 0 !important;
}
.catalog-drawer-body #catalogDetailGrid .product-price,
.catalog-drawer-body #catalogDetailGrid .product-price-old {
  font: 500 15px/1.2 var(--font-body) !important;
}
.catalog-show-more-btn,
#catalogShowMoreBtn {
  background: #2a1b13 !important;
  color: #fff !important;
  border-radius: 2px !important;
  border: 0 !important;
}
.toast {
  background: #2a1b13 !important;
  color: #fff !important;
  border-radius: 2px !important;
}
.elvora-promo .elvora-btn,
.elvora-hero .elvora-btn,
.elvora-contact .elvora-btn {
  width: auto !important;
  min-width: 128px !important;
  max-width: max-content !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 20px !important;
  border-radius: 2px !important;
  background: #2a1b13 !important;
  color: #fff !important;
  border: 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 38px !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.elvora-hero .elvora-btn {
  min-width: 174px !important;
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px !important;
  font-size: 14px !important;
}
.elvora-promos,
.elvora-promo,
.elvora-promo > div {
  overflow: visible !important;
}
.mobile-nav {
  position: fixed !important;
  top: 0 !important;
  right: -390px !important;
  left: auto !important;
  width: min(86vw, 360px) !important;
  height: 100vh !important;
  background: #faf8f5 !important;
  border-left: 1px solid #e5ddd5;
  box-shadow: -18px 0 50px rgba(43,29,22,.18) !important;
  transform: none !important;
  transition: right .32s ease !important;
  z-index: 900 !important;
  overflow-y: auto !important;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open {
  right: 0 !important;
  transform: none !important;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(43,29,22,.38) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 880 !important;
}
.mobile-nav-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.mobile-nav-header {
  min-height: 96px !important;
  padding: 22px 24px !important;
  border-bottom: 1px solid #eadfd5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
}
.mobile-nav-header .elvora-logo span { font-size: 34px; }
.mobile-nav-header .elvora-logo small { font-size: 9px; margin-left: 8px; }
.mobile-nav-close {
  width: 34px !important;
  height: 34px !important;
  border: 1px solid #d9caba !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: var(--elvora-ink) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto;
}
.mobile-nav ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 18px 0 !important;
}
.mobile-nav li { margin: 0 !important; padding: 0 !important; }
.mobile-nav a {
  display: flex !important;
  align-items: center !important;
  min-height: 58px !important;
  padding: 0 30px !important;
  border-bottom: 1px solid #eee6df !important;
  color: var(--elvora-ink) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}
.mobile-catalog-menu {
  border-bottom: 1px solid #eee6df !important;
}
.mobile-catalog-toggle {
  width: 100%;
  min-height: 58px;
  padding: 0 30px;
  text-align: left;
  font-size: 16px;
  position: relative;
}
.mobile-catalog-toggle::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
}
.mobile-catalog-menu.open .mobile-catalog-toggle::after {
  transform: translateY(-30%) rotate(225deg);
}
.mobile-catalog-list {
  padding: 0 18px 16px;
  display: none !important;
  grid-template-columns: 1fr;
  gap: 4px;
}
.mobile-catalog-menu.open .mobile-catalog-list {
  display: grid !important;
}
.mobile-catalog-list button {
  min-height: 42px;
  border: 1px solid #eadfd5;
  background: #fffaf5;
  text-align: center;
}

@media (max-width: 900px) {
  .elvora-topbar {
    height: 34px;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    font-size: 12px;
    font-weight: 900;
  }
  .elvora-topbar-track {
    gap: 56px;
    padding-inline: 24px;
    animation-duration: 14s;
  }
  .elvora-header { height: 78px; padding: 0 18px; display: flex; gap: 14px; }
  .elvora-logo span { font-size: 32px; }
  .elvora-logo small { font-size: 9px; }
  .elvora-nav { display: none; }
  .menu-toggle { display: inline-flex !important; width: 26px; height: 22px; flex-direction: column; gap: 4px; }
  .menu-toggle span { width: 22px; height: 2px; background: #241810; display: block; }
  .elvora-actions { order: 2; gap: 13px; margin-left: auto; min-width: auto; }
  .elvora-actions .elvora-icon-btn { display: none; }
  .elvora-hero { min-height: 430px; padding: 48px 24px; background-size: cover; background-position: 62% 12%; }
  .elvora-hero::before { background: linear-gradient(90deg, rgba(244,237,228,.98) 0%, rgba(244,237,228,.82) 58%, rgba(244,237,228,.12) 100%); }
  .elvora-hero h1 { font-size: 38px; }
  .elvora-hero p { font-size: 15px; }
  .catalog-section { padding: 30px 18px 18px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; max-width: 390px; }
  .catalog-card { min-height: 152px !important; }
  .catalog-card-img { width: min(36vw, 136px) !important; height: min(36vw, 136px) !important; margin-bottom: 13px !important; }
  .catalog-card h3 { font-size: 13px !important; }
  .products-section, .elvora-promos, .elvora-contact { padding-left: 18px; padding-right: 18px; }
  .elvora-promos { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .products-filter-bar { display: none; }
  .elvora-section-line { grid-template-columns: 1fr; gap: 10px; }
  .elvora-section-line span { display: none; }
  .elvora-section-line a { justify-self: center; }
  .elvora-testimonials { grid-template-columns: 1fr; padding-left: 18px; padding-right: 18px; }
  .elvora-arrow { display: none; }
  .elvora-benefits { grid-template-columns: 1fr 1fr; padding: 24px 18px; gap: 20px; }
  .elvora-footer { margin: 0 18px; grid-template-columns: 1fr; gap: 24px; text-align: center; padding: 34px 0 26px; }
  .elvora-footer .elvora-logo { align-items: center; }
  .elvora-footer p { max-width: 310px; margin-left: auto; margin-right: auto; }
  .elvora-footer a { margin: 8px 0; }
  .elvora-footer-bottom { margin: 0 18px; }
  .elvora-promo .elvora-btn {
    min-width: 116px !important;
    height: 34px !important;
    min-height: 34px !important;
    line-height: 34px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }
  .catalog-drawer {
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
  }
  .catalog-drawer-topbar {
    min-height: 66px !important;
    padding: 10px 18px !important;
  }
  .catalog-drawer-back,
  .catalog-drawer-cart-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .catalog-drawer-tabs {
    padding: 10px 16px !important;
    gap: 8px !important;
  }
  .catalog-drawer-tabs .drawer-tab {
    height: 38px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
  }
  .catalog-drawer-hero {
    padding: 10px 18px !important;
    gap: 10px !important;
    min-height: 72px !important;
  }
  .drawer-hero-img {
    width: 48px !important;
    height: 48px !important;
  }
  .drawer-hero-info h2 {
    font-size: 22px !important;
    margin-bottom: 4px !important;
  }
  .drawer-hero-count {
    min-height: 24px !important;
    padding: 0 11px !important;
    font-size: 11px !important;
  }
  .drawer-filter-toggle {
    width: 40px !important;
    height: 40px !important;
  }
  .catalog-drawer-body {
    padding: 16px 18px 26px !important;
  }
  .catalog-drawer-body #catalogDetailGrid {
    gap: 22px 14px !important;
  }
  .catalog-drawer-body #catalogDetailGrid .product-img-wrap {
    aspect-ratio: 1 / 1.18 !important;
  }
  .catalog-drawer-body #catalogDetailGrid .product-name {
    font-size: 14px !important;
    min-height: 40px !important;
  }
}

@media (min-width: 901px) {
  .mobile-nav,
  .mobile-nav.open,
  .mobile-nav-overlay,
  .mobile-nav-overlay.open {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
