/* EvaLore redesign — Concept A (home) + Concept C (shop)
   Brand: EvaLore womenswear. Agency credit only in theme meta. */

:root {
  --ev-ink: #29251f;
  --ev-ink-soft: #625b52;
  --ev-paper: #f7f4ef;
  --ev-paper-deep: #efe8df;
  --ev-sand: #c4a882;
  --ev-espresso: #2c2621;
  --ev-cream: #f7f4ef;
  --ev-line: rgba(41, 37, 31, 0.14);
  --ev-serif: "Playfair Display", "Times New Roman", serif;
  --ev-display: "Northwell", "Playfair Display", serif;
  --ev-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ev-content-max: 1680px;
  --ev-content-pad: clamp(1.25rem, 3.2vw, 2.75rem);
  --primary-color: #7a5a3a;
  --primary-light-color: #f3eee8;
  --black-color: #29251f;
  --white-color: #faf8f5;
  --border-color: #d8cdb9;
}

body {
  color: var(--ev-ink);
  background: var(--ev-cream);
}

/* Home: warm paper for product/content sections; dark stays inside hero only */
body.home,
body.front-page {
  background: var(--ev-cream);
}

/* ——— Shared header ——— */
.evalore-header {
  position: relative;
  z-index: 40;
  width: 100%;
}

.evalore-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--ev-content-max);
  width: 100%;
  margin: 0 auto;
  padding: 1.1rem var(--ev-content-pad);
}

.evalore-wordmark {
  font-family: var(--ev-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--ev-ink);
  text-decoration: none;
  line-height: 1;
}

.evalore-wordmark--light {
  color: #f5f0ea;
}

.evalore-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: center;
}

.evalore-header__nav a {
  font-family: var(--ev-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  opacity: 0.78;
}

.evalore-header__nav a:hover,
.evalore-header__nav a.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.evalore-header__tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ev-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evalore-lang a,
.evalore-lang .is-active {
  color: inherit;
  text-decoration: none;
}

.evalore-lang .is-active {
  font-weight: 600;
  opacity: 1;
}

.evalore-lang .sep {
  margin: 0 0.25rem;
  opacity: 0.45;
}

.evalore-header__cart {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

/* ——— A: Editorial home ——— */
body.home .header-wrapper.multiple-headers,
body.front-page .header-wrapper.multiple-headers,
body.home .header-wrapper.single-header.show-desktop:not(.evalore-home-chrome),
body.front-page .show-desktop.header-wrapper:not(.evalore-home-chrome) {
  display: none !important;
}

body.home .show-mobile.mobile-menu,
body.front-page .show-mobile.mobile-menu {
  display: none !important;
}

.evalore-home-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

/* WP admin bar overlaps fixed header when logged in */
body.admin-bar .evalore-home-chrome {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .evalore-home-chrome {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  /* Admin bar becomes relative below 600px — header returns to top */
  body.admin-bar .evalore-home-chrome {
    top: 0;
  }
}

.evalore-home-chrome .evalore-header {
  pointer-events: auto;
}

.evalore-header--editorial {
  color: var(--ev-ink);
  background: rgba(250, 248, 245, 0.94);
  border-bottom: 1px solid var(--ev-line);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 8px 24px rgba(20, 16, 12, 0.06);
  transform: translate3d(0, 0, 0);
  transition:
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.evalore-header--editorial .evalore-header__inner {
  transition: padding 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.evalore-header--editorial .evalore-wordmark {
  color: var(--ev-ink);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.12em;
  transition:
    font-size 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.evalore-header--editorial .evalore-header__nav a,
.evalore-header--editorial .evalore-header__tools,
.evalore-header--editorial .evalore-header__cart,
.evalore-header--editorial .evalore-lang a,
.evalore-header--editorial .evalore-lang .is-active,
.evalore-header--editorial .evalore-menu-toggle {
  color: var(--ev-ink);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

/* Sticky / scrolled state — elegant solid bar */
.evalore-header--editorial.is-stuck {
  color: var(--ev-ink);
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom-color: rgba(42, 36, 28, 0.08);
  box-shadow: 0 10px 30px rgba(42, 36, 28, 0.06);
}

.evalore-header--editorial.is-stuck .evalore-header__inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.evalore-header--editorial.is-stuck .evalore-wordmark {
  color: var(--ev-ink);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  letter-spacing: 0.1em;
}

.evalore-header--editorial.is-stuck .evalore-header__nav a,
.evalore-header--editorial.is-stuck .evalore-header__cart,
.evalore-header--editorial.is-stuck .evalore-lang a,
.evalore-header--editorial.is-stuck .evalore-lang .is-active {
  color: var(--ev-ink);
}

@media (prefers-reduced-motion: reduce) {
  .evalore-header--editorial,
  .evalore-header--editorial .evalore-header__inner,
  .evalore-header--editorial .evalore-wordmark {
    transition: none;
  }
}

.evalore-hero {
  margin: 0 !important;
  padding: 0 !important;
}

.evalore-hero__stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1612;
}

.evalore-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.evalore-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 14, 10, 0.72) 0%, rgba(18, 14, 10, 0.28) 48%, rgba(18, 14, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 14, 10, 0.55) 0%, transparent 42%);
  pointer-events: none;
}

.evalore-hero__content {
  position: relative;
  z-index: 2;
  width: min(36rem, 92vw);
  max-width: 100%;
  padding: 0 6vw 12vh;
  color: #f7f3ee;
  box-sizing: border-box;
}

.evalore-hero__brand {
  font-family: var(--ev-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  line-height: 1;
  color: #f7f3ee !important;
  opacity: 0;
  transform: translateY(18px);
  animation: evRise 0.9s ease forwards 0.15s;
}

.evalore-hero__headline {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 18ch;
  color: #f7f3ee !important;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  opacity: 0;
  transform: translateY(18px);
  animation: evRise 0.9s ease forwards 0.35s;
}

.evalore-hero__support {
  font-family: var(--ev-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 34ch;
  opacity: 0;
  color: rgba(247, 243, 238, 0.9) !important;
  margin: 0 0 1.75rem;
  transform: translateY(18px);
  animation: evRise 0.9s ease forwards 0.5s;
}

.evalore-hero__cta {
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: evRise 0.8s ease forwards 0.7s;
}

.evalore-hero__cta a {
  font-family: var(--ev-sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7f3ee;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 243, 238, 0.55);
  padding-bottom: 0.2rem;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.evalore-hero__cta a:hover {
  border-color: #f7f3ee;
  opacity: 0.9;
}

@keyframes evRise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evalore-hero__brand,
  .evalore-hero__headline,
  .evalore-hero__support,
  .evalore-hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Calm sections below hero on home — cover ACF blocks without .wp-block-group */
body.home #home > .wp-block-group,
body.front-page #home > .wp-block-group,
body.home #home > .styled-section-header,
body.front-page #home > .styled-section-header,
body.home #home > .popular-products,
body.front-page #home > .popular-products,
body.home #home > .info-banner,
body.front-page #home > .info-banner,
body.home #home > section,
body.front-page #home > section {
  background: var(--ev-cream);
  color: var(--ev-ink);
}

body.home #home > .wp-block-group,
body.front-page #home > .wp-block-group {
  padding: 4.5rem 0 2rem;
}

body.home .popular-products,
body.front-page .popular-products,
body.home .styled-section-header,
body.front-page .styled-section-header {
  color: var(--ev-ink);
}

body.home .popular-products .woocommerce-loop-product__title,
body.front-page .popular-products .woocommerce-loop-product__title,
body.home .popular-products .price,
body.front-page .popular-products .price,
body.home .styled-section-header .styled-header,
body.front-page .styled-section-header .styled-header,
body.home .styled-section-header .color-black,
body.front-page .styled-section-header .color-black {
  color: var(--ev-ink) !important;
}

body.home .footer-wrapper,
body.front-page .footer-wrapper,
body.home footer,
body.front-page footer {
  background: var(--ev-cream);
  color: var(--ev-ink);
}

/* Menu toggle — desktop hidden */
.evalore-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.35rem 0.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--ev-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 44px;
  min-width: 44px;
}

.evalore-menu-toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.evalore-menu-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}

.evalore-menu-toggle__bars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
}

.evalore-menu-toggle--light {
  color: #f3eee8;
}

/* Mobile nav drawer */
/* Shared page templates no longer use the legacy fixed-header spacer. */
body.page, body.woocommerce, body.tax-product_cat { padding-top: 0; }

/* Keep legacy .rte typography/image rules out of the editorial hero. */
body.home .rte .evalore-hero__image { width:100%; height:100% !important; max-height:none; object-fit:cover; }
body.home .rte .evalore-hero__headline { font-size:clamp(30px,4vw,52px); line-height:1.15; text-transform:none; overflow-wrap:anywhere; }
body.home .rte .evalore-hero__support { font-size:16px; line-height:1.6; text-transform:none; }
body.home .rte a.evalore-hero__cta { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:12px 18px; color:#f7f3ee; border:1px solid #f7f3ee; font-size:12px; line-height:1.5; letter-spacing:.07em; text-decoration:none; }
body.home .rte a.evalore-hero__cta--primary { background:#f7f3ee; color:#29251f; }
@media(max-width:700px) {
  body.home .rte .styled-section-header, body.home .rte .styled-section-header span { font-size:clamp(22px,7vw,30px); line-height:1.2; max-width:100%; overflow-wrap:anywhere; white-space:normal; }
  body.home .rte .evalore-hero__content { padding:32px 20px; }
  body.home .rte .evalore-hero__headline { font-size:32px; }
}

.ev-page-title {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: #29251f;
}

.evalore-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.evalore-mobile-nav.is-open {
  display: block;
}

.evalore-mobile-nav__backdrop {
  z-index: 0;
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(18, 14, 10, 0.48);
  cursor: pointer;
}

.evalore-mobile-nav__panel {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(22rem, 88vw);
  background: var(--ev-cream);
  color: var(--ev-ink);
  padding: 1.25rem 1.35rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 8px 0 32px rgba(18, 14, 10, 0.18);
}

.evalore-mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.evalore-mobile-nav__title {
  font-family: var(--ev-serif);
  font-size: 1.35rem;
}

.evalore-mobile-nav__close {
  border: 0;
  background: transparent;
  color: var(--ev-ink);
  font-size: 1.75rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.evalore-mobile-nav__search {
  margin-bottom: 1.25rem;
}

.evalore-mobile-nav__section {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid var(--ev-line);
}

.evalore-mobile-nav__link {
  display: block;
  padding: 0.7rem 0;
  font-family: var(--ev-sans);
  font-size: 0.95rem;
  color: var(--ev-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.evalore-mobile-nav__link--strong {
  font-weight: 600;
}

.evalore-mobile-nav__lang {
  display: flex;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ev-line);
  font-family: var(--ev-sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evalore-mobile-nav__lang a {
  color: var(--ev-ink-soft);
  text-decoration: none;
}

.evalore-mobile-nav__lang .is-active {
  color: var(--ev-ink);
  font-weight: 600;
}

body.evalore-nav-open {
  overflow: hidden;
}

body.home .scroll-down-arrow-wrapper,
body.front-page .scroll-down-arrow-wrapper,
body.home .main-hero-box .scroll-down-arrow-wrapper {
  display: none !important;
}

body.home .info-banner,
body.front-page .info-banner {
  margin-top: 0;
}

body.home .info-banner .styled-header,
body.front-page .styled-section-header {
  font-family: var(--ev-serif);
}

/* ——— C: Shop catalog ——— */
body.woocommerce-shop .header-wrapper.single-header.show-desktop,
body.tax-product_cat .header-wrapper.single-header.show-desktop,
body.post-type-archive-product .header-wrapper.single-header.show-desktop,
body.single-product .header-wrapper.single-header.show-desktop,
body.woocommerce-cart .header-wrapper.single-header.show-desktop,
body.woocommerce-checkout .header-wrapper.single-header.show-desktop,
body.woocommerce-account .header-wrapper.single-header.show-desktop {
  display: none !important;
}

body.woocommerce-shop .show-mobile.mobile-menu,
body.tax-product_cat .show-mobile.mobile-menu,
body.post-type-archive-product .show-mobile.mobile-menu,
body.single-product .show-mobile.mobile-menu,
body.woocommerce-cart .show-mobile.mobile-menu,
body.woocommerce-checkout .show-mobile.mobile-menu,
body.woocommerce-account .show-mobile.mobile-menu {
  display: none !important;
}

body.woocommerce-shop,
body.tax-product_cat,
body.post-type-archive-product,
body.single-product,
body.woocommerce-cart,
body.woocommerce-checkout {
  background: var(--ev-paper);
}

.evalore-shop-chrome {
  position: relative;
  z-index: 30;
}

.evalore-header--shop {
  background: var(--ev-espresso);
  color: #f3eee8;
}

.evalore-header--shop .evalore-header__nav a {
  color: #f3eee8;
}

.evalore-shop {
  max-width: var(--ev-content-max);
  width: 100%;
  margin: 0 auto;
  padding: 2rem var(--ev-content-pad) 4rem;
  box-sizing: border-box;
}

.evalore-shop__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.75rem;
  align-items: start;
}

.evalore-shop__sidebar-label {
  font-family: var(--ev-sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ev-sand);
  margin: 0 0 1rem;
}

.evalore-shop__sidebar .widget-title {
  display: none;
}

.evalore-shop__sidebar .product-categories,
.evalore-shop__sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ev-line);
}

.evalore-shop__sidebar li {
  border-bottom: 1px solid var(--ev-line);
  margin: 0;
}

.evalore-shop__sidebar a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--ev-sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ev-ink);
  text-decoration: none;
}

.evalore-shop__sidebar a:hover,
.evalore-shop__sidebar .current-cat > a {
  color: var(--primary-color);
}

.evalore-shop__header .page-title {
  font-family: var(--ev-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--ev-ink);
}

.evalore-shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--ev-line);
  font-family: var(--ev-sans);
  font-size: 0.8rem;
  color: var(--ev-ink-soft);
}

/* Product grid — shop-first */
body.woocommerce ul.products,
.evalore-shop ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.35rem;
  margin: 0 !important;
  width: 100% !important;
}

@media (max-width: 1200px) {
  body.woocommerce ul.products,
  .evalore-shop ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
.evalore-shop ul.products li.product .woocommerce-loop-product__title,
body.home ul.products li.product .woocommerce-loop-product__title,
body.front-page ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ev-serif) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--ev-ink) !important;
  padding: 0 !important;
  margin: 0 0 0.35rem !important;
  line-height: 1.35 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}

.evalore-shop {
  max-width: var(--ev-content-max);
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem var(--ev-content-pad) 4rem;
  box-sizing: border-box;
}

.evalore-shop__toolbar {
  margin: 0.75rem 0 1.25rem;
}

body.woocommerce ul.products::before,
body.woocommerce ul.products::after,
.evalore-shop ul.products::before,
.evalore-shop ul.products::after {
  display: none !important;
  content: none !important;
}

body.woocommerce ul.products li.product,
.evalore-shop ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

body.woocommerce ul.products li.product a img,
.evalore-shop ul.products li.product a img {
  margin-bottom: 0.85rem;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--ev-paper-deep);
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
.evalore-shop ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ev-serif) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--ev-ink) !important;
  padding: 0 !important;
  margin: 0 0 0.35rem !important;
  line-height: 1.3;
}

body.woocommerce ul.products li.product .price,
.evalore-shop ul.products li.product .price {
  font-family: var(--ev-sans) !important;
  font-size: 0.9rem !important;
  color: var(--primary-color) !important;
  letter-spacing: 0.02em;
}

body.woocommerce ul.products li.product .hover-image {
  display: none;
}

/* Hide empty short category */
.evalore-shop__sidebar a[href*="/sortai/"] {
  display: none;
}

/* Mobile home chrome */
.evalore-mobile-bar {
  display: none;
}

.evalore-shop__filters-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--ev-line);
  background: var(--ev-cream);
  color: var(--ev-ink);
  font-family: var(--ev-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.evalore-shop__filters-toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.evalore-shop__sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.evalore-shop__filters-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ev-ink);
  font-family: var(--ev-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
  cursor: pointer;
}

.evalore-shop__reset {
  margin: 1rem 0 0;
  font-family: var(--ev-sans);
  font-size: 0.8rem;
}

.evalore-shop__reset a {
  color: var(--primary-color);
}

.evalore-lang--light a,
.evalore-lang--light .is-active,
.evalore-lang--light .sep {
  color: #f3eee8;
}

.evalore-lang--light a {
  opacity: 0.75;
}

.evalore-lang--light a:hover,
.evalore-lang--light .is-active {
  opacity: 1;
}

@media (max-width: 900px) {
  .evalore-menu-toggle {
    display: inline-flex;
  }

  .evalore-header__nav,
  .evalore-header__nav--shop {
    display: none;
  }

  .evalore-header--checkout .evalore-header__nav--checkout {
    display: flex;
  }

  .evalore-header--editorial .evalore-header__tools .evalore-lang,
  .evalore-header--shop .evalore-header__tools .evalore-lang,
  .evalore-search--desktop {
    display: none;
  }

  .evalore-home-chrome {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }

  .evalore-header__inner {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .evalore-wordmark {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
  }

  .evalore-hero__content {
    width: min(100%, 92vw);
    max-width: 100%;
    padding: 0 1rem 7vh;
    box-sizing: border-box;
  }

  .evalore-hero__brand {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
    max-width: 100%;
  }

  .evalore-hero__headline {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .evalore-hero__support {
    font-size: 0.95rem;
    max-width: 100%;
    color: rgba(247, 243, 238, 0.9);
  }

  .evalore-shop__layout {
    grid-template-columns: 1fr;
  }

  .evalore-shop__filters-toggle {
    display: inline-flex;
  }

  .evalore-shop__sidebar {
    position: fixed;
    z-index: 70;
    inset: 0 auto 0 0;
    width: min(22rem, 88vw);
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 1.25rem 1.25rem 2rem;
    background: var(--ev-cream);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 8px 0 28px rgba(18, 14, 10, 0.16);
    order: 0;
  }

  .evalore-shop__sidebar.is-open {
    transform: translateX(0);
  }

  .evalore-shop__filters-close {
    display: inline-flex;
    align-items: center;
  }

  body.evalore-filters-open {
    overflow: hidden;
  }

  body.evalore-filters-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 65;
    background: rgba(18, 14, 10, 0.42);
  }

  body.woocommerce ul.products,
  .evalore-shop ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
  }

  .evalore-shop__toolbar {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  body.woocommerce ul.products,
  .evalore-shop ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.woocommerce ul.products li.product .woocommerce-loop-product__title,
  .evalore-shop ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.95rem !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
  }
}

/* Prevent accidental horizontal scroll from long hero/UI strings */
body.home,
body.front-page,
body.woocommerce-shop,
body.tax-product_cat,
body.single-product {
  overflow-x: clip;
}

.evalore-hero,
.evalore-hero__stage {
  max-width: 100%;
}

/* Keep shop header + catalog on the same content rail */
.evalore-header--shop .evalore-header__inner {
  max-width: var(--ev-content-max);
}

/* Soft reveal for shop cards */
.evalore-shop ul.products li.product {
  opacity: 0;
  transform: translateY(16px);
  animation: evRise 0.7s ease forwards;
}

.evalore-shop ul.products li.product:nth-child(1) { animation-delay: 0.05s; }
.evalore-shop ul.products li.product:nth-child(2) { animation-delay: 0.1s; }
.evalore-shop ul.products li.product:nth-child(3) { animation-delay: 0.15s; }
.evalore-shop ul.products li.product:nth-child(4) { animation-delay: 0.2s; }
.evalore-shop ul.products li.product:nth-child(5) { animation-delay: 0.25s; }
.evalore-shop ul.products li.product:nth-child(6) { animation-delay: 0.3s; }
.evalore-shop ul.products li.product:nth-child(n+7) { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .evalore-shop ul.products li.product {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ——— WooCommerce floating toasts ——— */
.evalore-toast-host {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 10050;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  width: min(24rem, calc(100vw - 2rem));
  pointer-events: none;
}

.evalore-toast {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: 4px 1fr auto;
  align-items: start;
  gap: 0.85rem;
  padding: 1rem 0.85rem 1rem 0;
  background: rgba(250, 248, 245, 0.94);
  color: var(--ev-ink, #2a241c);
  border: 1px solid rgba(42, 36, 28, 0.08);
  box-shadow:
    0 18px 40px rgba(42, 36, 28, 0.12),
    0 2px 8px rgba(42, 36, 28, 0.06);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  opacity: 0;
  transform: translate3d(18px, 12px, 0) scale(0.98);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.evalore-toast.is-in {
  opacity: 1;
  transform: none;
}

.evalore-toast.is-leaving {
  opacity: 0;
  transform: translate3d(14px, 8px, 0);
  transition-duration: 0.35s;
}

.evalore-toast__bar {
  align-self: stretch;
  width: 4px;
  background: var(--primary-color, #8f7354);
}

.evalore-toast.is-error .evalore-toast__bar {
  background: #9b3b2f;
}

.evalore-toast.is-info .evalore-toast__bar {
  background: #6b655c;
}

.evalore-toast__body {
  font-family: var(--ev-sans, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 0.9rem;
  line-height: 1.45;
  padding-top: 0.1rem;
}

.evalore-toast__body a.button,
.evalore-toast__body a.wc-forward {
  display: inline-block;
  margin: 0.55rem 0.65rem 0 0;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(42, 36, 28, 0.22);
  background: transparent;
  color: var(--ev-ink, #2a241c) !important;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  float: none !important;
}

.evalore-toast__body a.button:hover,
.evalore-toast__body a.wc-forward:hover {
  border-color: var(--ev-ink, #2a241c);
  background: rgba(42, 36, 28, 0.04);
}

.evalore-toast__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(42, 36, 28, 0.45);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.35rem;
}

.evalore-toast__close:hover {
  color: var(--ev-ink, #2a241c);
}

/* Keep page layout calm — hide emptied wrappers if any remain visible empty */
.woocommerce-notices-wrapper:empty {
  display: none !important;
}

@media (max-width: 600px) {
  .evalore-toast-host {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .evalore-toast,
  .evalore-toast.is-in,
  .evalore-toast.is-leaving {
    transition: none;
    transform: none;
  }
}

/* ——— Shared commerce buttons ——— */
.evalore-btn,
body.woocommerce-cart .button,
body.woocommerce-cart a.button,
body.woocommerce-checkout .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem !important;
  border-radius: 0 !important;
  font-family: var(--ev-sans) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.evalore-btn--solid,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart a.checkout-button {
  background: var(--ev-espresso) !important;
  border: 1px solid var(--ev-espresso) !important;
  color: #f5f0ea !important;
}

.evalore-btn--solid:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #1f1a16 !important;
  border-color: #1f1a16 !important;
  color: #fff !important;
}

.evalore-btn--ghost,
body.woocommerce-cart button[name="update_cart"],
body.woocommerce-cart button[name="apply_coupon"],
body.woocommerce-cart .coupon .button {
  background: transparent !important;
  border: 1px solid rgba(42, 36, 28, 0.28) !important;
  color: var(--ev-ink) !important;
}

.evalore-btn--ghost:hover,
body.woocommerce-cart button[name="update_cart"]:hover,
body.woocommerce-cart button[name="apply_coupon"]:hover {
  border-color: var(--ev-ink) !important;
  background: rgba(42, 36, 28, 0.04) !important;
}

body.woocommerce-cart button[name="update_cart"]:disabled {
  opacity: 0.4;
}

/* ——— Cart page ——— */
.evalore-cart {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4.5rem;
}

.evalore-cart__title h1 {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 2rem;
  color: var(--ev-ink);
  letter-spacing: 0.02em;
}

body.woocommerce-cart .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* Turn classic table into boutique rows */
body.woocommerce-cart table.cart,
.evalore-cart__table {
  border: 0 !important;
  background: transparent !important;
  width: 100%;
}

body.woocommerce-cart table.cart thead {
  display: none;
}

body.woocommerce-cart table.cart tbody tr.cart_item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  grid-template-areas:
    "thumb name remove"
    "thumb meta remove"
    "thumb qty price";
  gap: 0.35rem 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
  border-top: 1px solid var(--ev-line) !important;
  border-bottom: 0 !important;
  background: transparent !important;
}

body.woocommerce-cart table.cart tbody tr.cart_item:last-of-type {
  border-bottom: 1px solid var(--ev-line) !important;
}

body.woocommerce-cart table.cart td {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  display: block;
}

body.woocommerce-cart table.cart td.product-thumbnail {
  grid-area: thumb;
}

body.woocommerce-cart table.cart td.product-thumbnail img {
  width: 96px;
  height: 128px;
  object-fit: cover;
  display: block;
  background: var(--ev-paper-deep);
}

body.woocommerce-cart table.cart td.product-name {
  grid-area: name;
  font-family: var(--ev-serif);
  font-size: 1.15rem;
  line-height: 1.3;
}

body.woocommerce-cart table.cart td.product-name a {
  color: var(--ev-ink) !important;
  text-decoration: none !important;
}

body.woocommerce-cart table.cart td.product-name a:hover {
  opacity: 0.7;
}

body.woocommerce-cart table.cart td.product-price {
  grid-area: meta;
  font-family: var(--ev-sans);
  font-size: 0.9rem;
  color: var(--ev-ink-soft);
}

body.woocommerce-cart table.cart td.product-quantity {
  grid-area: qty;
  margin-top: 0.35rem;
}

body.woocommerce-cart table.cart td.product-subtotal {
  grid-area: price;
  justify-self: end;
  align-self: end;
  font-family: var(--ev-serif);
  font-size: 1.15rem;
  color: var(--ev-ink);
}

body.woocommerce-cart table.cart td.product-remove {
  grid-area: remove;
  justify-self: end;
}

body.woocommerce-cart table.cart a.remove,
body.woocommerce-cart .evalore-cart__remove {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ev-ink-soft) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

body.woocommerce-cart table.cart a.remove:hover,
body.woocommerce-cart .evalore-cart__remove:hover {
  color: var(--ev-ink) !important;
  background: transparent !important;
}

/* Hide raw × if theme still outputs it somehow */
body.woocommerce-cart table.cart a.remove {
  font-size: 0.68rem !important;
}

body.woocommerce-cart .evalore-cart__actions-row td,
body.woocommerce-cart table.cart tr:not(.cart_item) td.actions {
  display: block;
  width: 100%;
  padding: 1.5rem 0 0 !important;
  border: 0 !important;
}

.evalore-cart__actions,
body.woocommerce-cart td.actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
}

.evalore-cart__coupon,
body.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  float: none !important;
  padding: 0 !important;
}

body.woocommerce-cart .coupon .input-text,
body.woocommerce-cart #coupon_code {
  min-width: 12rem;
  height: 2.75rem;
  border: 1px solid rgba(42, 36, 28, 0.22) !important;
  background: #fff !important;
  padding: 0 0.85rem !important;
  font-size: 0.9rem !important;
  color: var(--ev-ink);
}

/* Totals panel */
body.woocommerce-cart .cart-collaterals,
.evalore-cart__collaterals {
  margin-top: 2.5rem;
  display: block;
}

body.woocommerce-cart .cart_totals {
  float: none !important;
  width: 100% !important;
  max-width: 360px;
  margin: 0 0 0 auto !important;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid var(--ev-line);
}

body.woocommerce-cart .cart_totals h2 {
  font-family: var(--ev-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  border: 0 !important;
  text-transform: none !important;
  letter-spacing: 0.02em;
  color: var(--ev-ink);
}

body.woocommerce-cart .cart_totals table {
  border: 0 !important;
  margin: 0 0 1.25rem !important;
}

body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
  border: 0 !important;
  border-bottom: 1px solid var(--ev-line) !important;
  padding: 0.75rem 0 !important;
  background: transparent !important;
  font-family: var(--ev-sans);
  font-size: 0.9rem;
  color: var(--ev-ink);
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  font-family: var(--ev-serif);
  font-size: 1.15rem;
  border-bottom: 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  text-align: center;
}

/* Empty cart */
.evalore-cart--empty {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
}

.evalore-cart__empty-brand {
  font-family: var(--ev-serif);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin: 0 0 1.25rem;
  color: var(--ev-ink);
}

.evalore-cart__empty-text,
body.woocommerce-cart .evalore-cart--empty .cart-empty {
  font-family: var(--ev-serif) !important;
  font-size: 1.5rem !important;
  color: var(--ev-ink) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 0.75rem !important;
  list-style: none !important;
}

.evalore-cart__empty-text::before,
body.woocommerce-cart .evalore-cart--empty .woocommerce-info::before {
  display: none !important;
}

.evalore-cart__empty-support {
  max-width: 28rem;
  margin: 0 0 1.75rem;
  font-family: var(--ev-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ev-ink-soft);
}

body.woocommerce-cart .return-to-shop {
  margin: 0;
}

/* Hide duplicate default empty notice if WC still prints one above */
body.woocommerce-cart .woocommerce > .woocommerce-info:first-child:not(.evalore-cart__empty-text) {
  display: none;
}

body.woocommerce-cart .woocommerce-notices-wrapper:empty + .evalore-cart--empty,
body.woocommerce-cart .woocommerce .cart-empty + .return-to-shop {
  /* handled by our template */
}

@media (max-width: 820px) {
  body.woocommerce-cart .cart_totals {
    max-width: none;
    margin-left: 0 !important;
  }

  body.woocommerce-cart table.cart tbody tr.cart_item {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "thumb name"
      "thumb price"
      "thumb qty"
      "remove remove";
  }

  body.woocommerce-cart table.cart td.product-thumbnail img {
    width: 72px;
    height: 96px;
  }

  body.woocommerce-cart table.cart td.product-remove {
    justify-self: start;
    margin-top: 0.35rem;
  }

  .evalore-cart__actions,
  body.woocommerce-cart td.actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ——— Stage 2–4 additions ——— */
.evalore-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin: 0;
}

.evalore-hero__cta--secondary a {
  border-bottom-color: rgba(247, 243, 238, 0.35);
  opacity: 0.88;
  font-size: 0.75rem;
}

.evalore-hero__image {
  object-position: center 20%;
}

@media (max-width: 900px) {
  .evalore-hero__stage {
    min-height: 78vh;
    min-height: 78svh;
  }

  .evalore-hero__image {
    object-position: center top;
  }

  .evalore-hero__headline {
    max-width: 22ch;
  }

  .evalore-hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Home brand proof strip */
.evalore-proof {
  background: var(--ev-paper);
  color: var(--ev-ink);
  padding: 2.75rem 1.5rem;
  border-top: 1px solid var(--ev-line);
  border-bottom: 1px solid var(--ev-line);
}

.evalore-proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.evalore-proof__item h3 {
  font-family: var(--ev-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 0.45rem;
}

.evalore-proof__item p {
  font-family: var(--ev-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ev-ink-soft);
  margin: 0;
}

@media (max-width: 760px) {
  .evalore-proof__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Owner-content placeholder removed from home. */

/* Made-to-order page */
body.page-template-template-made-to-order-php,
body.page-template-page-templates-template-made-to-order-php,
body.page-id-3074,
body.page-id-3076 {
  background: var(--ev-paper);
}

body.page-template-template-made-to-order-php .header-wrapper.single-header.show-desktop,
body.page-template-page-templates-template-made-to-order-php .header-wrapper.single-header.show-desktop,
body.page-id-3074 .header-wrapper.single-header.show-desktop,
body.page-id-3076 .header-wrapper.single-header.show-desktop,
body.page-id-3074 .show-mobile.mobile-menu,
body.page-id-3076 .show-mobile.mobile-menu {
  display: none !important;
}

.evalore-mto {
  width: 100%;
  max-width: var(--ev-content-max);
  margin: 0 auto;
  padding: 2.5rem var(--ev-content-pad) 4.5rem;
  box-sizing: border-box;
}

.evalore-mto__inner {
  max-width: 920px;
  margin: 0 auto;
}

.evalore-mto__eyebrow {
  font-family: var(--ev-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ev-sand);
  margin: 0 0 0.85rem;
}

.evalore-mto__title {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ev-ink);
}

.evalore-mto__lead {
  font-family: var(--ev-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ev-ink-soft);
  margin: 0 0 2rem;
  max-width: 42rem;
}

.evalore-mto__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}

.evalore-mto__card {
  padding: 1.35rem 1.4rem 1.5rem;
  background: #fff;
  border: 1px solid var(--ev-line);
}

.evalore-mto__card h2 {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
  color: var(--ev-ink);
}

.evalore-mto__card ul,
.evalore-mto__card ol {
  margin: 0;
  padding-left: 1.15rem;
}

.evalore-mto__card li {
  font-family: var(--ev-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ev-ink-soft);
  margin: 0 0 0.45rem;
}

.evalore-mto__note {
  font-family: var(--ev-sans);
  font-size: 0.88rem !important;
  line-height: 1.5;
  color: var(--ev-ink-soft);
  margin: 0 0 2rem;
}

.evalore-mto__request {
  padding: 1.6rem 1.5rem 1.75rem;
  background: var(--ev-paper-deep);
  border: 1px solid var(--ev-line);
}

.evalore-mto__request h2 {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}

.evalore-mto__request > p {
  font-family: var(--ev-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ev-ink-soft);
  margin: 0 0 1.25rem;
}

.evalore-mto__form {
  margin-top: 0.25rem;
  display: grid;
  gap: 0.85rem;
}

.evalore-mto__form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--ev-sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ev-ink);
}

.evalore-mto__form input,
.evalore-mto__form textarea {
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--ev-line);
  background: #fff;
  color: var(--ev-ink);
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
}

.evalore-mto__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.35rem;
}

.evalore-mto__form button {
  min-height: 46px;
  padding: 0.8rem 1.35rem;
  border: 0;
  background: var(--ev-espresso);
  color: #f7f3ee;
  font-family: var(--ev-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.evalore-mto__form button:hover {
  opacity: 0.9;
}

.evalore-mto__mail {
  font-family: var(--ev-sans);
  font-size: 0.9rem;
  color: var(--ev-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.evalore-mto__back {
  margin: 1.75rem 0 0;
}

.evalore-mto__back a {
  font-family: var(--ev-sans);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ev-ink-soft);
  text-decoration: none;
}

.evalore-mto__back a:hover {
  color: var(--ev-ink);
  text-decoration: underline;
}

@media (max-width: 760px) {
  .evalore-mto__grid {
    grid-template-columns: 1fr;
  }

  .evalore-mto__request {
    padding: 1.25rem 1.1rem 1.4rem;
  }
}

/* ——— Stage 3: single product ——— */
body.single-product .product .summary {
  font-size: 1rem;
}

body.single-product .product .summary .price {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

body.single-product .product .summary .woocommerce-product-details__short-description {
  order: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ev-ink-soft);
}

.evalore-available-size {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--ev-sans);
  font-size: 0.92rem;
}

.evalore-size-help {
  margin: 0.5rem 0 1rem;
  font-family: var(--ev-sans);
  font-size: 0.85rem;
}

.evalore-size-help a {
  color: var(--primary-color);
}

.evalore-pdp-help {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ev-line);
  font-family: var(--ev-sans);
  font-size: 0.85rem;
  color: var(--ev-ink-soft);
}

.evalore-pdp-help a {
  color: var(--ev-ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Demote competing Buy now */
body.single-product .buy-now,
body.single-product .wd-buy-now-btn,
body.single-product a.buy_now_button,
body.single-product .single_add_to_cart_button + .button.buy-now,
body.single-product .basel-buy-now-btn,
body.single-product .tinvwl_add_to_cart_button + .button[name="buy-now"],
body.single-product button.buy-now,
body.single-product .wcsatt-add-cart-button,
body.single-product .pwb-buy-now {
  display: none !important;
}

body.single-product .single_add_to_cart_button {
  min-height: 48px;
  padding: 0.85rem 1.5rem !important;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  body.single-product div.product div.images {
    width: 100% !important;
    float: none !important;
    margin: 0 0 1.25rem !important;
  }

  body.single-product div.product div.summary {
    width: 100% !important;
    float: none !important;
  }

  body.single-product .flex-control-thumbs {
    display: flex !important;
    gap: 0.5rem;
    overflow-x: auto;
    margin-top: 0.75rem !important;
  }

  body.single-product .flex-control-thumbs li {
    width: 64px !important;
    flex: 0 0 64px;
  }

  body.single-product .woocommerce-tabs ul.tabs {
    display: none !important;
  }

  body.single-product .woocommerce-Tabs-panel {
    display: block !important;
    margin: 0 0 0.75rem !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body.single-product .woocommerce-Tabs-panel > h2 {
    font-family: var(--ev-sans);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--ev-line);
    cursor: pointer;
  }

  body.single-product .woocommerce-Tabs-panel:not(.is-open) > *:not(h2) {
    display: none;
  }
}

/* Cart line attrs clarity */
.woocommerce-cart-form .variation {
  font-size: 0.85rem;
  color: var(--ev-ink-soft);
}

.evalore-cart-shipping-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--ev-ink-soft);
}

/* Checkout mobile clarity */
@media (max-width: 900px) {
  body.woocommerce-checkout .woocommerce-checkout {
    font-size: 1rem;
  }

  body.woocommerce-checkout .woocommerce-invalid input,
  body.woocommerce-checkout .woocommerce-invalid select {
    border-color: #a33 !important;
  }

  body.woocommerce-checkout #order_review {
    margin-top: 1.5rem;
  }
}

/* Search empty state */
.woocommerce-info .evalore-search-empty a,
.woocommerce .evalore-search-empty a {
  color: var(--primary-color);
}

/* Focus visibility */
.evalore-menu-toggle:focus-visible,
.evalore-shop__filters-toggle:focus-visible,
.evalore-header__nav a:focus-visible,
.evalore-hero__cta a:focus-visible,
body.single-product .single_add_to_cart_button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

/* Loop images lazy-friendly: keep aspect box */
body.woocommerce ul.products li.product a img[loading="lazy"] {
  background: var(--ev-paper-deep);
}

/* ——— Checkout order review: no Excel grid ——— */
body.woocommerce-checkout #order_review_heading {
  font-family: var(--ev-serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ev-ink);
  margin: 0 0 1rem;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout table.shop_table {
  border: 0 !important;
  border-collapse: collapse !important;
  width: 100%;
  background: transparent;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td,
body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
  border: 0 !important;
  border-bottom: 1px solid var(--ev-line) !important;
  padding: 1rem 0 !important;
  background: transparent !important;
  vertical-align: top;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  color: var(--ev-ink);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  font-family: var(--ev-sans);
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ev-ink-soft);
  padding-top: 0 !important;
  padding-bottom: 0.65rem !important;
  border-bottom: 1px solid var(--ev-line) !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  border-bottom: 0 !important;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  border-top: 1px solid var(--ev-ink) !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding-top: 1.1rem !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table * {
  border-color: var(--ev-line) !important;
}

/* Product line: thumbnail + name side by side */
body.woocommerce-checkout .ts-product-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
}

body.woocommerce-checkout .ts-product-image {
  flex: 0 0 56px;
  width: 56px;
  height: 72px;
  overflow: hidden;
  background: var(--ev-paper-deep);
}

body.woocommerce-checkout .ts-product-image img {
  display: block !important;
  width: 56px !important;
  height: 72px !important;
  max-width: none !important;
  object-fit: cover;
  margin: 0 !important;
  float: none !important;
}

body.woocommerce-checkout .ts-product-line__name {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--ev-sans);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ev-ink);
  text-transform: none;
  letter-spacing: 0.01em;
}

body.woocommerce-checkout .ts-product-line__name a {
  color: inherit;
  text-decoration: none;
}

body.woocommerce-checkout #order_review {
  background: var(--ev-paper);
  padding: 1.5rem 1.35rem 1.75rem;
  border: 1px solid var(--ev-line);
}

body.woocommerce-checkout .woocommerce-shipping-methods,
body.woocommerce-checkout ul#shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .shipping td {
  min-width: 0;
}

@media (max-width: 900px) {
  body.woocommerce-checkout #order_review {
    margin-top: 1.5rem;
    padding: 1.15rem 1rem 1.35rem;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 0.85rem 0 !important;
  }
}

/* Footer credits: legal row + copyright / powered / logos */
.credits-footer {
  align-items: center !important;
}

.credits-footer > .evalore-footer-legal {
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 0.35rem;
}

.credits-footer .powered-by {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.credits-footer .payment-methods-wrapper.evalore-payment-logos,
.credits-footer .evalore-payment-logos {
  width: auto !important;
  min-width: 0;
  flex: 0 0 auto;
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2.5rem;
  margin-left: 1.25rem;
}

/* One clean row: Visa · Mastercard · Paysera */
.evalore-payment-logos .payment-methods,
.credits-footer .payment-methods-wrapper .payment-methods {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-end;
  gap: 0.9rem !important;
  margin: 0 !important;
}

.evalore-payment-logos .payment-method,
.credits-footer .payment-methods-wrapper .payment-methods .payment-method {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  flex: 0 0 auto;
}

.evalore-payment-logos .payment-method img,
.credits-footer .payment-methods-wrapper .payment-methods img {
  width: auto !important;
  height: 26px !important;
  max-height: 26px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  display: block !important;
}

/* Paysera official wordmark — same height as card marks */
.evalore-payment-logos .payment-method img[alt="Paysera"],
.credits-footer .payment-methods-wrapper .payment-methods img[alt="Paysera"] {
  height: 26px !important;
  max-height: 26px !important;
  width: auto !important;
}

@media (max-width: 991px) {
  .credits-footer .payment-methods-wrapper.evalore-payment-logos {
    width: auto !important;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .credits-footer .payment-methods-wrapper.evalore-payment-logos {
    width: 100% !important;
    justify-content: flex-start;
    margin-top: 1rem;
    margin-left: 0;
  }

  .evalore-payment-logos .payment-methods,
  .credits-footer .payment-methods-wrapper .payment-methods {
    justify-content: flex-start;
    flex-wrap: nowrap !important;
  }
}

/* Checkout terms agreement */
.woocommerce-terms-and-conditions-wrapper,
.woocommerce-privacy-policy-text,
.evalore-checkout-terms {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ev-ink-soft);
  margin: 1rem 0;
}

.evalore-checkout-terms label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
  color: var(--ev-ink);
}

.evalore-checkout-terms input[type="checkbox"] {
  margin-top: 0.2rem;
  min-width: 18px;
  min-height: 18px;
}

.evalore-checkout-terms a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.evalore-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 0.85rem;
  font-family: var(--ev-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.evalore-footer-legal a {
  color: var(--ev-ink-soft);
  text-decoration: none;
}

.evalore-footer-legal a:hover {
  color: var(--ev-ink);
  text-decoration: underline;
}

.evalore-footer-legal .sep {
  opacity: 0.4;
}
