/*
Theme Name: Sundaymuses
Theme URI: https://sundaymuses.com
Description: Sundaymuses — Dreamy essentials with a handwritten soul. WooCommerce-ready, English-only. Cream paper, ink black, single clay accent. (Theme directory still named chateau-toile for compatibility.)
Author: Sundaymuses
Author URI: https://sundaymuses.com
Version: 2.0.0
License: Private
Text Domain: chateau-toile
*/

/* === Brand Colors === */
:root {
  --color-ivory: #FAF7F2;
  --color-cream: #F0EBE3;
  --color-gold: #C9A96E;
  --color-gold-light: #DCC394;
  --color-charcoal: #2D2A26;
  --color-warm-gray: #8A8578;
  --color-sage: #7A8B6F;
  --color-sage-light: #A8B89E;
  --color-coral: #D4A574;
  --color-blush: #D4A594;
  --color-stone: #E5E0D8;
  --color-white: #FFFFFF;
}

/* === Base === */
body {
  font-family: -apple-system, "PingFang SC", "Noto Sans SC", "Segoe UI", sans-serif;
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  -webkit-font-smoothing: antialiased;
}

/* === Buttons === */
button, .button, .btn-primary {
  background-color: var(--color-gold) !important;
  color: var(--color-white) !important;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .button:hover, .btn-primary:hover {
  background-color: #B8985A !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  background-color: transparent !important;
  color: var(--color-charcoal) !important;
  border: 1px solid var(--color-charcoal) !important;
}

.btn-secondary:hover {
  background-color: var(--color-charcoal) !important;
  color: var(--color-ivory) !important;
}

/* === Sale Badge === */
.woocommerce .product .onsale {
  background-color: #C4713B;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 2px;
  min-height: auto;
  line-height: 1;
}

/* === Cart === */
.woocommerce-cart .woocommerce-cart-form {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
}

.woocommerce-cart .cart_totals {
  background: var(--color-white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--color-stone);
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: var(--color-stone);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-warm-gray);
}

/* === Standalone Layout === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: var(--color-charcoal);
  color: var(--color-ivory);
  padding: 8px 12px;
  z-index: 9999;
}

.col-full {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.content-wrap {
  padding: 56px 0 80px;
}

.entry-header .entry-title,
.page-header .page-title {
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.25;
  margin: 0 0 16px;
}
.entry-meta {
  font-size: 13px;
  color: var(--color-warm-gray);
  margin-bottom: 16px;
}
.entry-thumbnail {
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
}
.entry-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-charcoal);
}
.entry-content a {
  color: var(--color-gold);
}

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.archive-item {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(45, 42, 38, 0.06);
}
.archive-item .entry-title {
  font-size: 20px;
  margin: 12px 0 8px;
}
.archive-item .entry-title a {
  color: var(--color-charcoal);
  text-decoration: none;
}
.archive-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* === WooCommerce Product Grid === */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
  list-style: none;
  width: auto;
  float: none;
}
.woocommerce ul.products li.product a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  display: block;
}

/* === WooCommerce Cart / Checkout === */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* === Forms === */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-stone);
  border-radius: 4px;
  background: var(--color-white);
  font-size: 14px;
  font-family: inherit;
  color: var(--color-charcoal);
  box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}
label {
  font-size: 13px;
  color: var(--color-charcoal);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

/* === Hero (full-viewport, video-ready) === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250,247,242,0.10) 0%, rgba(250,247,242,0.55) 100%);
  pointer-events: none;
}

/* Video mode: invert overlay + text for readability over moving footage */
.hero-section.hero-video-mode .hero-overlay {
  background:
    linear-gradient(180deg, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0.25) 40%, rgba(20,18,16,0.65) 100%);
}
.hero-section.hero-video-mode .hero-title,
.hero-section.hero-video-mode .hero-eyebrow {
  color: var(--color-ivory);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-section.hero-video-mode .hero-subtitle {
  color: rgba(250, 247, 242, 0.86);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-section.hero-video-mode .hero-ornament {
  background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
  width: 80px;
}
.hero-section.hero-video-mode .hero-scroll-line {
  background: var(--color-ivory);
  opacity: 0.7;
}
.hero-section.hero-video-mode .btn-secondary {
  color: var(--color-ivory) !important;
  border-color: rgba(250, 247, 242, 0.6) !important;
}
.hero-section.hero-video-mode .btn-secondary:hover {
  background-color: rgba(250, 247, 242, 0.12) !important;
  color: var(--color-ivory) !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin: 0 0 16px;
}

.hero-ornament { margin-bottom: 24px; }

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin: 20px auto 0;
  max-width: 520px;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
  width: 1px;
  height: 56px;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-charcoal);
  opacity: 0.5;
  animation: heroScroll 2.4s cubic-bezier(.4,0,.2,1) infinite;
  transform-origin: top center;
}

@keyframes heroScroll {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { transform: scaleY(1); opacity: 0.6; }
  100% { transform: scaleY(1) translateY(56px); opacity: 0; }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    padding: 96px 20px 64px;
  }
}

/* ----- Curated Collection : seamless horizontal tile row ----- */
.featured-section {
  padding: 80px 0 96px;
  background: var(--color-ivory);
}
.featured-section .featured-heading {
  text-align: center;
  margin: 0 auto 56px;
  padding: 0 24px;
  max-width: 1280px;
}
.featured-section .featured-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: #2D2A26;
}
.featured-section .featured-heading p {
  font-size: 15px;
  color: #8A8578;
  margin-top: 8px;
}

.featured-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.featured-tile {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--color-stone);
  display: block;
}
.featured-tile img,
.featured-tile .featured-tile-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.4,0,.2,1);
  display: block;
}
.featured-tile:hover img { transform: scale(1.04); }

.featured-tile-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.78) 100%);
  color: var(--color-ivory);
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: left;
  z-index: 2;
  pointer-events: none;
}

.featured-tile-price {
  display: block;
  margin-top: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(250, 247, 242, 0.85);
}

.featured-cta {
  text-align: center;
  margin-top: 48px;
  padding: 0 24px;
}
.featured-cta a {
  font-size: 14px;
  color: #2D2A26;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* Responsive : 4 across on tablet, 2 across on mobile */
@media (max-width: 1024px) {
  .featured-row { flex-wrap: wrap; }
  .featured-tile { flex: 0 0 25%; aspect-ratio: 3 / 4; }
}
@media (max-width: 640px) {
  .featured-tile { flex: 0 0 50%; }
  .featured-tile-name { padding: 32px 14px 14px; font-size: 14px; }
}

/* ===================================================================== */
/* === SUNDAYMUSES SYSTEM ===                                             */
/* === Scoped under body.everelle so legacy chateau rules stay dormant.   */
/* ===================================================================== */

:root {
  --ev-paper: #F2EFE9;
  --ev-ink:   #0E0E0E;
  --ev-ink-2: #5A5754;
  --ev-stone: #C7C2BA;
  --ev-mist:  #E8E4DC;
  --ev-clay:  #BD7B5C;
  --ev-white: #FFFFFF;

  --ev-1: 8px;
  --ev-2: 16px;
  --ev-3: 24px;
  --ev-4: 40px;
  --ev-5: 64px;
  --ev-6: 96px;
  --ev-7: 144px;
  --ev-8: 200px;

  --ev-display: clamp(56px, 9vw, 144px);
  --ev-h1:      clamp(36px, 5vw, 64px);
  --ev-h2:      clamp(22px, 2.6vw, 32px);
  --ev-cap:     11px;
  --ev-label:   12px;
  --ev-body:    15px;
  --ev-price:   18px;

  --ev-font-display:  "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ev-font-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ev-font-wordmark: "Great Vibes", "Archivo", cursive;
}

/* === Base reset, Sundaymuses scope === */
body.everelle {
  margin: 0;
  padding: 0;
  background: var(--ev-paper);
  color: var(--ev-ink);
  font-family: var(--ev-font-body);
  font-size: var(--ev-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.everelle a { color: inherit; text-decoration: none; }
body.everelle a:hover { color: var(--ev-clay); }
body.everelle img { display: block; max-width: 100%; height: auto; }
body.everelle h1, body.everelle h2, body.everelle h3, body.everelle h4 {
  font-family: var(--ev-font-display);
  font-weight: 700;
  color: var(--ev-ink);
  margin: 0;
  line-height: 1.05;
}

/* === Layout utilities === */
.ev-container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.ev-section   { padding: var(--ev-6) 0; }
.ev-section--lg { padding: var(--ev-7) 0; }
.ev-rule      { border: 0; border-top: 1px solid var(--ev-stone); margin: 0; }
.ev-grid-12   { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }

/* === Typography utilities === */
.ev-display { font-family: var(--ev-font-display); font-weight: 800; font-size: var(--ev-display); letter-spacing: 0.02em; line-height: 0.95; color: var(--ev-ink); text-transform: uppercase; }
.ev-h1      { font-family: var(--ev-font-display); font-weight: 700; font-size: var(--ev-h1); letter-spacing: 0.02em; line-height: 1.02; text-transform: uppercase; }
.ev-h2      { font-family: var(--ev-font-display); font-weight: 700; font-size: var(--ev-h2); letter-spacing: 0.08em; text-transform: uppercase; }
.ev-kicker  { font-family: var(--ev-font-body); font-weight: 600; font-size: var(--ev-cap); letter-spacing: 0.22em; text-transform: uppercase; color: var(--ev-clay); }
.ev-label   { font-family: var(--ev-font-body); font-weight: 500; font-size: var(--ev-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ev-ink-2); }
.ev-cap     { font-family: var(--ev-font-body); font-weight: 600; font-size: var(--ev-cap); letter-spacing: 0.22em; text-transform: uppercase; color: var(--ev-ink-2); }
.ev-body    { font-family: var(--ev-font-body); font-size: var(--ev-body); line-height: 1.7; color: var(--ev-ink-2); }
.ev-price   { font-family: var(--ev-font-body); font-weight: 600; font-size: var(--ev-price); color: var(--ev-clay); letter-spacing: 0.02em; }

/* === Buttons === */
.ev-btn, body.everelle .ev-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ev-ink) !important;
  color: var(--ev-white) !important;
  font-family: var(--ev-font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0 32px;
  height: 56px; min-height: 56px;
  border: 0; border-radius: 0 !important;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.ev-btn:hover, body.everelle .ev-btn:hover { background: var(--ev-clay) !important; color: var(--ev-white) !important; }
.ev-btn--block { display: flex; width: 100%; }

.ev-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--ev-ink);
  border: 1px solid var(--ev-ink);
  font-family: var(--ev-font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0 32px;
  height: 56px; min-height: 56px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ev-btn-ghost:hover { background: var(--ev-ink); color: var(--ev-white); }

/* === Skip link === */
body.everelle .skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 1000;
  background: var(--ev-ink); color: var(--ev-white); padding: 8px 16px;
}
body.everelle .skip-link:focus { left: 8px; }

/* ===================================================================== */
/* === SUNDAYMUSES MASTHEAD ===                                           */
/* ===================================================================== */
body.everelle .ev-masthead {
  background: var(--ev-white);
  border-bottom: 1px solid var(--ev-stone);
  position: sticky; top: 0; z-index: 50;
}
body.everelle .ev-issue-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px;
  border-bottom: 1px solid var(--ev-stone);
  font-family: var(--ev-font-body);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ev-ink-2);
}
body.everelle .ev-issue-strip span { display: inline-block; }
body.everelle .ev-masthead__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  height: 88px;
}
body.everelle .ev-masthead__left,
body.everelle .ev-masthead__right { display: flex; align-items: center; gap: 24px; }
body.everelle .ev-masthead__right { justify-content: flex-end; }
body.everelle .ev-wordmark {
  font-family: var(--ev-font-wordmark);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: 0;
  color: var(--ev-ink);
  text-transform: none;
  text-decoration: none;
  line-height: 1.1;
}
body.everelle .ev-menu-toggle {
  background: none; border: 0; padding: 8px 0;
  font-family: var(--ev-font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ev-ink); cursor: pointer;
}
body.everelle .ev-icon-btn {
  background: none; border: 0; padding: 8px;
  color: var(--ev-ink); cursor: pointer; line-height: 0;
  position: relative;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
body.everelle .ev-icon-btn svg { width: 22px; height: 22px; display: block; }
body.everelle .ev-cart-count {
  position: absolute; top: 0; right: -4px;
  background: var(--ev-clay); color: var(--ev-white);
  font-family: var(--ev-font-body); font-size: 10px; font-weight: 600;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}

body.everelle .ev-nav {
  border-top: 1px solid var(--ev-stone);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
body.everelle .ev-nav a {
  font-family: var(--ev-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ev-ink); text-decoration: none;
}
body.everelle .ev-nav a:hover { color: var(--ev-clay); }

/* Hide the legacy chateau header chrome when everelle scope is active. */
body.everelle #masthead.site-header { display: none; }

/* ===================================================================== */
/* === SUNDAYMUSES FOOTER ===                                             */
/* ===================================================================== */
body.everelle .ev-footer {
  background: var(--ev-mist);
  color: var(--ev-ink);
  padding: var(--ev-6) 0 var(--ev-4);
  margin-top: var(--ev-7);
}
body.everelle .ev-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}
body.everelle .ev-footer__brand .ev-wordmark { font-size: clamp(40px, 6vw, 72px); display: block; margin-bottom: 16px; }
body.everelle .ev-footer__tagline { font-family: var(--ev-font-body); font-size: 13px; color: var(--ev-ink-2); letter-spacing: 0.02em; }
body.everelle .ev-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
body.everelle .ev-footer__cols h4 { font-family: var(--ev-font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ev-ink); margin: 0 0 16px; }
body.everelle .ev-footer__cols ul { list-style: none; padding: 0; margin: 0; }
body.everelle .ev-footer__cols li + li { margin-top: 10px; }
body.everelle .ev-footer__cols a { font-family: var(--ev-font-body); font-size: 13px; color: var(--ev-ink-2); text-decoration: none; }
body.everelle .ev-footer__cols a:hover { color: var(--ev-clay); }
body.everelle .ev-newsletter h4 { font-family: var(--ev-font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 12px; }
body.everelle .ev-newsletter p { font-family: var(--ev-font-body); font-size: 12px; color: var(--ev-ink-2); margin: 12px 0 0; line-height: 1.6; }
body.everelle .ev-newsletter__form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
body.everelle .ev-newsletter__input {
  border: 0; border-bottom: 1px solid var(--ev-ink); background: transparent;
  font-family: var(--ev-font-body); font-size: 14px; padding: 14px 0;
  color: var(--ev-ink); outline: none; border-radius: 0;
}
body.everelle .ev-newsletter__input::placeholder { color: var(--ev-ink-2); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
body.everelle .ev-footer__bottom {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-top: 32px; margin-top: 64px;
  border-top: 1px solid var(--ev-stone);
  font-family: var(--ev-font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ev-ink-2);
}
body.everelle .ev-footer__bottom .center { text-align: center; }
body.everelle .ev-footer__bottom .right { text-align: right; }
body.everelle .ev-footer__bottom a { color: var(--ev-ink-2); margin: 0 6px; text-decoration: none; }
body.everelle .ev-footer__bottom a:hover { color: var(--ev-clay); }
body.everelle #colophon.site-footer { display: none; } /* hide legacy footer markup */

/* ===================================================================== */
/* === HOMEPAGE BELOW-HERO RESTYLE ===                                    */
/* === Hero block layout/JS/video file remain untouched.                  */
/* ===================================================================== */

/* Standfirst band */
body.everelle .ev-standfirst {
  background: var(--ev-paper);
  padding: var(--ev-7) 24px;
  text-align: center;
}
body.everelle .ev-standfirst__inner { max-width: 720px; margin: 0 auto; }
body.everelle .ev-standfirst .ev-kicker { display: block; margin-bottom: 24px; }
body.everelle .ev-standfirst .ev-display { margin-bottom: 24px; }
body.everelle .ev-standfirst p { font-family: var(--ev-font-body); font-size: 17px; line-height: 1.7; color: var(--ev-ink-2); margin: 0; }

/* Featured / The Edit */
body.everelle #featured.featured-section {
  background: var(--ev-paper);
  padding: var(--ev-6) 24px;
}
body.everelle .featured-section .featured-heading {
  display: grid; grid-template-columns: auto 1fr; align-items: end;
  gap: 24px;
  margin: 0 auto var(--ev-5);
  max-width: 1440px;
  text-align: left;
}
body.everelle .featured-section .featured-heading::before {
  content: "01.";
  font-family: var(--ev-font-display); font-weight: 800;
  font-size: clamp(80px, 11vw, 160px); color: var(--ev-ink); letter-spacing: 0.02em; line-height: 0.9;
}
body.everelle .featured-section .featured-heading .ornament { display: none; }
body.everelle .featured-section .featured-heading h2 {
  font-family: var(--ev-font-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ev-ink); margin: 0;
}
body.everelle .featured-section .featured-heading p {
  font-family: var(--ev-font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ev-ink-2);
  margin: 8px 0 0;
}

/* Tile : caption beneath the image (Minimal Lux convention).
   Capped tile width so 2-product rows don't stretch into elongated portraits;
   square 1:1 aspect for a balanced "large image" feel. */
body.everelle .featured-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
body.everelle .featured-tile {
  position: relative;
  display: block;
  flex: 0 1 480px;
  max-width: 480px;
  min-width: 0;
  aspect-ratio: auto;
  background: transparent;
  text-decoration: none;
  color: var(--ev-ink);
}
body.everelle .featured-tile .featured-tile-img {
  width: 100%; height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--ev-mist);
  border-radius: 0;
  transition: transform 0.4s ease;
}
body.everelle .featured-tile:hover .featured-tile-img { transform: scale(1.02); }
body.everelle .featured-tile .featured-tile-name {
  position: static;
  display: block;
  padding: 16px 0 0;
  background: none;
  color: var(--ev-ink);
  font-family: var(--ev-font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: left;
  pointer-events: auto;
  text-transform: none;
}
body.everelle .featured-tile .featured-tile-price {
  display: block;
  margin-top: 6px;
  font-family: var(--ev-font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ev-clay);
}
body.everelle .featured-tile-placeholder {
  display: block; width: 100%; aspect-ratio: 1 / 1; background: var(--ev-mist);
}
body.everelle .featured-cta {
  text-align: center; max-width: 1280px; margin: 48px auto 0; padding: 0;
}
body.everelle .featured-cta a {
  font-family: var(--ev-font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ev-ink);
  border-bottom: 1px solid var(--ev-ink); padding-bottom: 4px;
}
body.everelle .featured-cta a:hover { color: var(--ev-clay); border-color: var(--ev-clay); }

@media (max-width: 1024px) {
  body.everelle .featured-row { gap: 24px; }
  body.everelle .featured-tile { flex: 0 1 calc(50% - 12px); max-width: calc(50% - 12px); }
}
@media (max-width: 720px) {
  body.everelle .featured-row { gap: 16px; }
  body.everelle .featured-tile { flex: 0 1 100%; max-width: 100%; }
  body.everelle .featured-section .featured-heading { grid-template-columns: 1fr; }
  body.everelle .featured-section .featured-heading::before { font-size: 64px; }
}

/* Workflow — typographic 4-step stack */
body.everelle #workflow {
  background: var(--ev-paper) !important;
  padding: var(--ev-6) 24px !important;
}
body.everelle #workflow > div { max-width: 1440px; margin: 0 auto; }
body.everelle #workflow > div > div:first-child .ornament { display: none; }
body.everelle #workflow h2 {
  font-family: var(--ev-font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(28px, 3.4vw, 44px) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ev-ink) !important;
}
body.everelle #workflow > div > div:first-child p {
  font-family: var(--ev-font-body) !important;
  font-size: 13px !important; font-weight: 500 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  color: var(--ev-ink-2) !important;
}
body.everelle #workflow > div > div:last-child {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
body.everelle #workflow > div > div:last-child > div {
  display: grid !important;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid var(--ev-stone) !important;
  border-radius: 0 !important;
  text-align: left !important;
}
body.everelle #workflow > div > div:last-child > div:last-child { border-bottom: 1px solid var(--ev-stone) !important; }
body.everelle #workflow > div > div:last-child > div > span {
  position: static !important;
  font-family: var(--ev-font-display) !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 7vw, 96px) !important;
  color: var(--ev-clay) !important;
  line-height: 0.9 !important;
}
body.everelle #workflow > div > div:last-child > div > h3 {
  font-family: var(--ev-font-display) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  color: var(--ev-ink) !important;
  margin: 0 0 8px !important;
}
body.everelle #workflow > div > div:last-child > div > p {
  font-family: var(--ev-font-body) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--ev-ink-2) !important;
  grid-column: 2;
}

@media (max-width: 720px) {
  body.everelle #workflow > div > div:last-child > div { grid-template-columns: 64px 1fr; gap: 16px; }
}

/* Brand Story */
body.everelle #about {
  background: var(--ev-paper) !important;
  padding: var(--ev-7) 24px !important;
}
body.everelle #about > div {
  max-width: 1440px; margin: 0 auto;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
}
body.everelle #about .ornament { display: none; }
body.everelle #about h2 {
  font-family: var(--ev-font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(32px, 4.2vw, 56px) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--ev-ink) !important;
  line-height: 1.05 !important;
}
body.everelle #about > div > div:last-child > p {
  font-family: var(--ev-font-body) !important;
  font-size: 16px !important; line-height: 1.7 !important;
  color: var(--ev-ink-2) !important;
}
body.everelle #about > div > div:last-child > div {
  border-top: 1px solid var(--ev-stone) !important;
}
body.everelle #about > div > div:last-child > div > div > div:first-child {
  font-family: var(--ev-font-display) !important;
  font-weight: 700 !important;
  font-size: 36px !important;
  color: var(--ev-ink) !important;
  letter-spacing: 0.02em !important;
}
body.everelle #about > div > div:last-child > div > div > div:last-child {
  font-family: var(--ev-font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--ev-ink-2) !important;
}
@media (max-width: 1024px) {
  body.everelle #about > div { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* Hide legacy hero ornament that survives inside the locked hero block */
body.everelle .hero-section .hero-ornament,
body.everelle .hero-section .ornament { display: none; }

/* Restyle hero text inside the locked block (TEXT-NODE swap only on PHP side; CSS handles type) */
body.everelle .hero-section .hero-eyebrow {
  font-family: var(--ev-font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ev-white);
  opacity: 0.95;
}
body.everelle .hero-section .hero-title {
  font-family: var(--ev-font-display) !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 8vw, 112px) !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
  color: var(--ev-white) !important;
  line-height: 0.96 !important;
}
body.everelle .hero-section .hero-subtitle {
  font-family: var(--ev-font-body) !important;
  font-size: 15px !important; font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  color: var(--ev-white) !important;
  opacity: 0.92;
}
body.everelle .hero-section .hero-actions .button {
  border-radius: 0 !important;
  font-family: var(--ev-font-body) !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 0.24em !important; text-transform: uppercase !important;
  padding: 0 32px !important; height: 56px !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
}
body.everelle .hero-section .btn-primary {
  background: var(--ev-white) !important; color: var(--ev-ink) !important; border: 0 !important;
}
body.everelle .hero-section .btn-primary:hover { background: var(--ev-clay) !important; color: var(--ev-white) !important; }
body.everelle .hero-section .btn-secondary {
  background: transparent !important; color: var(--ev-white) !important; border: 1px solid var(--ev-white) !important;
}
body.everelle .hero-section .btn-secondary:hover { background: var(--ev-white) !important; color: var(--ev-ink) !important; }

/* ===================================================================== */
/* === SUNDAYMUSES PRODUCT DETAIL PAGE (PDP) ===                          */
/* ===================================================================== */
body.everelle.single-product .site-main,
body.everelle.single-product main#primary { background: var(--ev-paper); }

body.everelle .ev-pdp { background: var(--ev-paper); }
body.everelle .ev-pdp-rule { border: 0; border-top: 1px solid var(--ev-stone); margin: 0; }

body.everelle .ev-pdp-kicker {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 24px;
  max-width: 1440px; margin: 0 auto;
  font-family: var(--ev-font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ev-ink-2);
}

body.everelle .ev-pdp-cover {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 48px 24px var(--ev-6);
  max-width: 1440px; margin: 0 auto;
  align-items: flex-start;
}
body.everelle .ev-pdp-cover__gallery { grid-column: 1 / span 7; display: flex; flex-direction: column; gap: 16px; }
body.everelle .ev-pdp-cover__gallery figure { margin: 0; }
body.everelle .ev-pdp-cover__gallery img { width: 100%; height: auto; background: var(--ev-mist); }
body.everelle .ev-pdp-cover__gallery figcaption {
  font-family: var(--ev-font-body); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ev-ink-2); margin-top: 8px;
}
body.everelle .ev-pdp-cover__summary {
  grid-column: 9 / span 4;
  position: sticky; top: 200px;
  align-self: flex-start;
  display: flex; flex-direction: column; gap: 24px;
}
body.everelle .ev-pdp-cover__summary .ev-kicker { display: block; }
body.everelle .ev-pdp-title {
  font-family: var(--ev-font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 88px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ev-ink);
  margin: 0;
}
body.everelle .ev-pdp-standfirst {
  font-family: var(--ev-font-body); font-size: 16px; line-height: 1.7;
  color: var(--ev-ink-2); margin: 0;
}
body.everelle .ev-pdp-price-wrap { margin: 0; }
body.everelle .ev-pdp-price-wrap .price,
body.everelle .ev-pdp-price-wrap .woocommerce-Price-amount {
  font-family: var(--ev-font-body) !important;
  font-weight: 600 !important;
  font-size: 22px !important;
  color: var(--ev-clay) !important;
  letter-spacing: 0.02em !important;
}
body.everelle .ev-pdp-price-wrap del { color: var(--ev-ink-2); opacity: 0.6; margin-right: 8px; }
body.everelle .ev-pdp-meta {
  font-family: var(--ev-font-body); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ev-ink-2); line-height: 1.8;
  border-top: 1px solid var(--ev-stone);
  padding-top: 20px;
}
body.everelle .ev-pdp-meta span + span::before { content: " · "; margin: 0 4px; }

/* WooCommerce variation form scoped restyle */
body.everelle .ev-pdp .variations_form { margin: 0; }
body.everelle .ev-pdp .variations {
  width: 100%; border-collapse: collapse;
}
body.everelle .ev-pdp .variations tr {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  padding: 16px 0; border-bottom: 1px solid var(--ev-stone);
}
body.everelle .ev-pdp .variations tr:first-child { border-top: 1px solid var(--ev-stone); }
body.everelle .ev-pdp .variations label {
  font-family: var(--ev-font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ev-ink-2);
}
body.everelle .ev-pdp .variations th, body.everelle .ev-pdp .variations td {
  display: block; padding: 0; background: transparent; border: 0;
}
body.everelle .ev-pdp .variations select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ev-ink);
  border-radius: 0;
  padding: 12px 24px 12px 0;
  font-family: var(--ev-font-body);
  font-size: 15px; color: var(--ev-ink);
  background-image: linear-gradient(45deg, transparent 50%, var(--ev-ink) 50%), linear-gradient(135deg, var(--ev-ink) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 6px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
body.everelle .ev-pdp .reset_variations {
  display: inline-block !important;
  font-family: var(--ev-font-body); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ev-ink-2);
  margin-top: 8px; text-decoration: underline;
}
body.everelle .ev-pdp .single_variation_wrap { margin-top: 8px; }
body.everelle .ev-pdp .woocommerce-variation { margin-bottom: 16px; }
body.everelle .ev-pdp .woocommerce-variation-price .price,
body.everelle .ev-pdp .woocommerce-variation-price .woocommerce-Price-amount {
  font-family: var(--ev-font-body) !important;
  font-weight: 600 !important;
  font-size: 22px !important;
  color: var(--ev-clay) !important;
}
body.everelle .ev-pdp .woocommerce-variation-availability { font-family: var(--ev-font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ev-ink-2); }
body.everelle .ev-pdp .woocommerce-variation-description { font-family: var(--ev-font-body); font-size: 14px; color: var(--ev-ink-2); line-height: 1.7; }
body.everelle .ev-pdp .quantity {
  display: inline-flex; align-items: center; height: 56px;
  border: 1px solid var(--ev-ink); margin-right: 12px;
}
body.everelle .ev-pdp .quantity input {
  width: 56px; height: 54px; border: 0; background: transparent; text-align: center;
  font-family: var(--ev-font-body); font-size: 15px; color: var(--ev-ink); -moz-appearance: textfield;
}
body.everelle .ev-pdp .quantity input::-webkit-outer-spin-button,
body.everelle .ev-pdp .quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
body.everelle .ev-pdp button.single_add_to_cart_button,
body.everelle .ev-pdp .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  background: var(--ev-ink) !important; color: var(--ev-white) !important;
  font-family: var(--ev-font-body) !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 0.24em !important; text-transform: uppercase !important;
  height: 56px !important; padding: 0 40px !important;
  border: 0 !important; border-radius: 0 !important;
  cursor: pointer;
  flex: 1;
}
body.everelle .ev-pdp button.single_add_to_cart_button:hover { background: var(--ev-clay) !important; color: var(--ev-white) !important; }
body.everelle .ev-pdp form.cart { display: flex; gap: 12px; align-items: center; margin-top: 16px; }

/* Story section */
body.everelle .ev-pdp-story { padding: var(--ev-7) 24px; }
body.everelle .ev-pdp-story__inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: flex-start; }
body.everelle .ev-pdp-story__head .ev-section-num {
  font-family: var(--ev-font-display); font-weight: 800; color: var(--ev-ink);
  font-size: clamp(64px, 9vw, 144px); line-height: 0.9; letter-spacing: 0.02em;
}
body.everelle .ev-pdp-story__head h2 { margin-top: 16px; font-family: var(--ev-font-display); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ev-ink); }
body.everelle .ev-pdp-story__body { font-family: var(--ev-font-body); font-size: 16px; line-height: 1.8; color: var(--ev-ink); }
body.everelle .ev-pdp-story__body p { margin: 0 0 20px; color: var(--ev-ink-2); }
body.everelle .ev-pdp-story__body p:first-child { font-size: 18px; color: var(--ev-ink); }
body.everelle .ev-pdp-story__body h4 {
  font-family: var(--ev-font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ev-ink);
  margin: 40px 0 16px; padding-top: 24px; border-top: 1px solid var(--ev-stone);
}
body.everelle .ev-pdp-story__body ul {
  list-style: none; padding: 0; margin: 0;
}
body.everelle .ev-pdp-story__body ul li {
  display: grid; grid-template-columns: 1fr 2fr; gap: 24px;
  padding: 12px 0; border-bottom: 1px solid var(--ev-stone);
  font-family: var(--ev-font-body); font-size: 14px; color: var(--ev-ink-2);
}
body.everelle .ev-pdp-story__body ul li strong {
  font-family: var(--ev-font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ev-ink);
}
@media (max-width: 1024px) {
  body.everelle .ev-pdp-cover { grid-template-columns: repeat(8, 1fr); }
  body.everelle .ev-pdp-cover__gallery { grid-column: 1 / -1; }
  body.everelle .ev-pdp-cover__summary { grid-column: 1 / -1; position: static; top: auto; }
  body.everelle .ev-pdp-story__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Related (More from the edit) */
body.everelle .ev-pdp-related { padding: var(--ev-6) 24px var(--ev-7); background: var(--ev-mist); }
body.everelle .ev-pdp-related__inner { max-width: 1440px; margin: 0 auto; }
body.everelle .ev-pdp-related__head {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: end; margin-bottom: var(--ev-5);
}
body.everelle .ev-pdp-related__head .ev-section-num { font-family: var(--ev-font-display); font-weight: 800; color: var(--ev-ink); font-size: clamp(80px, 11vw, 160px); line-height: 0.9; letter-spacing: 0.02em; }
body.everelle .ev-pdp-related__head h2 { font-family: var(--ev-font-display); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ev-ink); }

/* Hide stock WooCommerce notice positioning for everelle PDP */
body.everelle.single-product .woocommerce-notices-wrapper:empty { display: none; }

/* ===================================================================== */
/* === LIGHT ARCHIVE / SHOP PASS ===                                       */
/* ===================================================================== */
body.everelle.woocommerce ul.products,
body.everelle.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  list-style: none; padding: 0; margin: 0;
}
body.everelle.woocommerce ul.products li.product,
body.everelle.woocommerce-page ul.products li.product {
  width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important;
  background: transparent;
}
body.everelle ul.products li.product a.woocommerce-LoopProduct-link img {
  width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; background: var(--ev-mist); border-radius: 0;
}
body.everelle ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ev-font-display) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--ev-ink) !important;
  margin: 16px 0 6px !important;
  padding: 0 !important;
  letter-spacing: 0.02em !important;
}
body.everelle ul.products li.product .price,
body.everelle ul.products li.product .price .woocommerce-Price-amount {
  font-family: var(--ev-font-body) !important;
  font-size: 14px !important; font-weight: 600 !important;
  color: var(--ev-clay) !important;
  letter-spacing: 0.02em !important;
}
body.everelle ul.products li.product a.button.add_to_cart_button,
body.everelle ul.products li.product a.added_to_cart { display: none !important; }

body.everelle .woocommerce-products-header__title.page-title {
  font-family: var(--ev-font-display) !important;
  font-weight: 700 !important; font-size: clamp(32px, 4vw, 56px) !important;
  letter-spacing: 0.04em !important; text-transform: uppercase !important;
  color: var(--ev-ink) !important;
  padding: 0 24px; max-width: 1440px; margin: 48px auto 32px;
}

@media (max-width: 1024px) {
  body.everelle.woocommerce ul.products,
  body.everelle.woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 720px) {
  body.everelle.woocommerce ul.products,
  body.everelle.woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ===================================================================== */
/* === RESPONSIVE MASTHEAD / FOOTER ===                                   */
/* ===================================================================== */
@media (max-width: 720px) {
  body.everelle .ev-issue-strip { display: none; }
  body.everelle .ev-masthead__main { height: 64px; padding: 0 16px; }
  body.everelle .ev-nav { gap: 16px; padding: 10px 16px; overflow-x: auto; justify-content: flex-start; }
  body.everelle .ev-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  body.everelle .ev-footer__bottom { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  body.everelle .ev-footer__bottom .center, body.everelle .ev-footer__bottom .right { text-align: center; }
}

/* === Account dropdown === */
body.everelle .ev-account-wrap { position: relative; }
body.everelle .ev-account-toggle { display: flex; align-items: center; justify-content: center; }
body.everelle .ev-account-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px; background: var(--ev-white);
  border: 1px solid var(--ev-stone); padding: 12px 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all 0.2s ease; z-index: 100;
}
body.everelle .ev-account-wrap:hover .ev-account-dropdown,
body.everelle .ev-account-toggle:focus + .ev-account-dropdown,
body.everelle .ev-account-dropdown:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
body.everelle .ev-account-dropdown a,
body.everelle .ev-account-dropdown .ev-account-name {
  display: block; padding: 8px 20px;
  font-family: var(--ev-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ev-ink); text-decoration: none; white-space: nowrap;
}
body.everelle .ev-account-dropdown a:hover { color: var(--ev-clay); }
body.everelle .ev-account-name { color: var(--ev-ink-2); border-bottom: 1px solid var(--ev-stone); margin-bottom: 4px; padding-bottom: 10px; }
