/* ═══════════════════════════════════════════════════════════════════════════
   SEVRA — Global CSS
   Premium light FSE theme for luxury laine women's sets
═══════════════════════════════════════════════════════════════════════════ */

/* ─── Base ────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--ink);
  overflow-x: hidden;
}

::selection {
  background: var(--wp--preset--color--moss);
  color: #fff;
}

::-webkit-scrollbar              { width: 3px; }
::-webkit-scrollbar-track        { background: var(--wp--preset--color--pearl); }
::-webkit-scrollbar-thumb        { background: var(--wp--preset--color--warm); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover  { background: var(--wp--preset--color--ash); }

:focus-visible {
  outline: 1.5px solid var(--wp--preset--color--moss);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ─── Typography helpers ─────────────────────────────────────────────────── */
em { font-style: italic; color: var(--wp--preset--color--moss); }

/* ─── Skip link ─────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--wp--preset--color--moss); color: #fff;
  padding: .5rem 1rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════════════ */
.sevra-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,250,247,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--wp--preset--color--linen);
  transition: box-shadow var(--wp--custom--transition--base);
}
.sevra-header.scrolled {
  box-shadow: 0 2px 32px rgba(42,40,38,0.06);
}

.sevra-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 68px;
}

/* Logo */
.sevra-logo {
  flex-shrink: 0;
  line-height: 1;
}
.sevra-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* Nav links */
.sevra-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.sevra-nav a {
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--slate);
  transition: color var(--wp--custom--transition--fast);
  position: relative;
}
.sevra-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--wp--preset--color--moss);
  transition: width var(--wp--custom--transition--slow);
}
.sevra-nav a:hover        { color: var(--wp--preset--color--ink); }
.sevra-nav a:hover::after { width: 100%; }

/* ── Premium Search Bar ──────────────────────────────────────────────────── */
.sevra-search-wrap {
  flex: 1;
  max-width: 340px;
  position: relative;
}

.sevra-search-wrap input[type="search"],
.sevra-search-wrap input[type="text"] {
  width: 100%;
  background: var(--wp--preset--color--pearl);
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.55rem 2.5rem 0.55rem 1rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--ink);
  transition:
    background var(--wp--custom--transition--base),
    border-color var(--wp--custom--transition--base),
    box-shadow var(--wp--custom--transition--base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.sevra-search-wrap input::placeholder {
  color: var(--wp--preset--color--ash);
  letter-spacing: 0.14em;
}

.sevra-search-wrap input:focus {
  background: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--warm);
  box-shadow: 0 4px 20px rgba(42,40,38,0.07);
}

.sevra-search-wrap input::-webkit-search-decoration,
.sevra-search-wrap input::-webkit-search-cancel-button { display: none; }

.sevra-search-icon {
  position: absolute;
  right: 0.8rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--wp--preset--color--ash);
  display: flex;
  align-items: center;
  transition: color var(--wp--custom--transition--fast);
}

.sevra-search-wrap:focus-within .sevra-search-icon {
  color: var(--wp--preset--color--moss);
}

/* ── Header icons area ───────────────────────────────────────────────────── */
.sevra-header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.sevra-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--wp--preset--color--slate);
  border-radius: 50%;
  transition:
    color var(--wp--custom--transition--fast),
    background var(--wp--custom--transition--fast);
  position: relative;
}
.sevra-icon-btn:hover {
  color: var(--wp--preset--color--ink);
  background: var(--wp--preset--color--pearl);
}
.sevra-icon-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cart badge */
.sevra-cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 14px; height: 14px;
  background: var(--wp--preset--color--moss);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  display: none;
}
.sevra-cart-badge.has-items { display: flex; }

/* ─── Mobile hamburger ───────────────────────────────────────────────────── */
.sevra-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.sevra-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--wp--preset--color--slate);
  transition: all .3s;
}
@media (max-width: 768px) {
  .sevra-hamburger { display: flex; }
  .sevra-nav       { display: none; }
  .sevra-search-wrap { display: none; }
  .sevra-header-inner { padding: 0 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH MODAL
═══════════════════════════════════════════════════════════════════════════ */
.sevra-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(250,250,247,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sevra-modal-overlay.open {
  display: flex;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.sevra-modal {
  background: var(--wp--preset--color--white);
  width: 100%;
  max-width: 420px;
  padding: 3rem 2.75rem 2.75rem;
  border: 1px solid var(--wp--preset--color--linen);
  box-shadow: 0 24px 80px rgba(42,40,38,0.12);
  position: relative;
  animation: slideUp .3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes slideUp { from { transform: translateY(16px); opacity:0 } to { transform: none; opacity:1 } }

.sevra-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--wp--preset--color--ash);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.sevra-modal-close:hover { color: var(--wp--preset--color--ink); }
.sevra-modal-close svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

/* Modal tabs */
.sevra-modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--wp--preset--color--linen);
}
.sevra-modal-tab {
  flex: 1;
  background: none; border: none;
  padding: 0 0 .875rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ash);
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.sevra-modal-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1.5px;
  background: var(--wp--preset--color--ink);
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(0.16,1,0.3,1);
}
.sevra-modal-tab.active { color: var(--wp--preset--color--ink); }
.sevra-modal-tab.active::after { transform: scaleX(1); }

/* Modal panes */
.sevra-modal-pane { display: none; }
.sevra-modal-pane.active { display: block; }

/* Modal heading */
.sevra-modal h2 {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
  color: var(--wp--preset--color--ink);
}

/* Form fields */
.sevra-field {
  margin-bottom: 1.125rem;
}
.sevra-field label {
  display: block;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ash);
  margin-bottom: .4rem;
}
.sevra-field input {
  width: 100%;
  background: var(--wp--preset--color--ivory);
  border: 1px solid var(--wp--preset--color--linen);
  border-radius: 1px;
  padding: 0.75rem 0.9rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.sevra-field input:focus {
  border-color: var(--wp--preset--color--ash);
  box-shadow: 0 2px 14px rgba(42,40,38,0.05);
  background: var(--wp--preset--color--white);
}

/* Submit btn */
.sevra-modal-submit {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--wp--preset--color--ink);
  color: var(--wp--preset--color--ivory);
  border: 1px solid var(--wp--preset--color--ink);
  padding: 0.9rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background .25s, color .25s, transform .15s;
}
.sevra-modal-submit:hover {
  background: var(--wp--preset--color--moss);
  border-color: var(--wp--preset--color--moss);
  transform: translateY(-1px);
}
.sevra-modal-submit:disabled {
  opacity: .55; cursor: not-allowed; transform: none;
}

/* Lost password link */
.sevra-modal-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--ash);
  cursor: pointer;
  background: none; border: none;
  font-family: var(--wp--preset--font-family--josefin);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.sevra-modal-link:hover { color: var(--wp--preset--color--ink); }

/* Error / success messages */
.sevra-modal-msg {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: .6rem .9rem;
  margin-bottom: 1rem;
  border-radius: 1px;
  display: none;
}
.sevra-modal-msg.error {
  display: block;
  background: #fdf2f0;
  border: 1px solid #e8c8c2;
  color: var(--wp--preset--color--error);
}
.sevra-modal-msg.success {
  display: block;
  background: #f1f5ed;
  border: 1px solid #c8d9bc;
  color: #4a6e36;
}

/* Logged-in dropdown */
.sevra-user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: -0.5rem;
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--linen);
  box-shadow: 0 12px 48px rgba(42,40,38,0.1);
  min-width: 180px;
  padding: .5rem 0;
  z-index: 300;
  display: none;
  animation: dropDown .2s ease;
}
@keyframes dropDown { from { opacity:0; transform:translateY(-6px) } to { opacity:1; transform:none } }
.sevra-user-menu.open { display: block; }
.sevra-user-menu a,
.sevra-user-menu button {
  display: block; width: 100%;
  padding: .625rem 1.25rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--slate);
  background: none; border: none;
  text-align: left; cursor: pointer;
  transition: background .15s, color .15s;
}
.sevra-user-menu a:hover,
.sevra-user-menu button:hover {
  background: var(--wp--preset--color--pearl);
  color: var(--wp--preset--color--ink);
}
.sevra-user-menu .menu-divider {
  height: 1px;
  background: var(--wp--preset--color--linen);
  margin: .375rem 0;
}
.sevra-account-wrap { position: relative; }

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT — body offset for fixed header
═══════════════════════════════════════════════════════════════════════════ */
.wp-site-blocks,
body > .wp-site-blocks {
  padding-top: 68px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.sevra-hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: flex-end;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════════════════════ */
.sevra-marquee-track {
  overflow: hidden;
  background: var(--wp--preset--color--linen);
  padding: .8rem 0;
  white-space: nowrap;
  border-top: 1px solid var(--wp--preset--color--warm);
  border-bottom: 1px solid var(--wp--preset--color--warm);
}
.sevra-marquee-inner {
  display: inline-block;
  animation: marquee-run 32s linear infinite;
}
.sevra-marquee-inner span {
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--slate);
  margin: 0 2.5rem;
}
.sevra-marquee-inner span.dot {
  color: var(--wp--preset--color--moss);
  margin: 0 .5rem;
}
@keyframes marquee-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════════════════════════════ */
.sevra-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .7s cubic-bezier(0.16,1,0.3,1),
    transform .7s cubic-bezier(0.16,1,0.3,1);
}
.sevra-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOCKS
═══════════════════════════════════════════════════════════════════════════ */
figure.wp-block-image { overflow: hidden; }
figure.wp-block-image img {
  transition: transform var(--wp--custom--transition--slow);
}
figure.wp-block-image:hover img { transform: scale(1.025); }

.wp-block-button__link {
  border-radius: 0 !important;
  transition:
    background var(--wp--custom--transition--base),
    color var(--wp--custom--transition--base),
    border-color var(--wp--custom--transition--base),
    transform .15s;
}
.wp-block-button__link:hover { transform: translateY(-1px); }

/* Outline variant */
.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--ink);
  border: 1px solid var(--wp--preset--color--ink);
}
.is-style-outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--ink);
  color: var(--wp--preset--color--ivory);
}

/* Ghost (light outline on dark) */
.is-style-ghost .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--ivory);
  border: 1px solid rgba(255,255,255,0.5);
}
.is-style-ghost .wp-block-button__link:hover {
  background: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--ink);
  border-color: var(--wp--preset--color--ivory);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.sevra-footer {
  background: var(--wp--preset--color--pearl);
  border-top: 1px solid var(--wp--preset--color--linen);
}
.sevra-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem 2.5rem;
}
.sevra-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--wp--preset--color--linen);
}
.sevra-footer-tagline {
  font-family: var(--wp--preset--font-family--cormorant);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--wp--preset--color--slate);
  margin-top: 1.25rem;
  max-width: 220px;
}
.sevra-footer-col-title {
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ash);
  margin-bottom: 1.25rem;
}
.sevra-footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.sevra-footer-links a {
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--slate);
  transition: color .2s;
}
.sevra-footer-links a:hover { color: var(--wp--preset--color--ink); }

/* Newsletter in footer */
.sevra-footer-newsletter p {
  font-size: 0.78rem;
  color: var(--wp--preset--color--ash);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.sevra-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.sevra-newsletter-form input[type="email"] {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--linen);
  border-radius: 1px;
  padding: .7rem .9rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--ink);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.sevra-newsletter-form input:focus {
  border-color: var(--wp--preset--color--ash);
}
.sevra-newsletter-form button {
  background: var(--wp--preset--color--ink);
  color: var(--wp--preset--color--ivory);
  border: 1px solid var(--wp--preset--color--ink);
  padding: .7rem;
  font-family: var(--wp--preset--font-family--josefin);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background .25s, border-color .25s;
  width: 100%;
}
.sevra-newsletter-form button:hover {
  background: var(--wp--preset--color--moss);
  border-color: var(--wp--preset--color--moss);
}

/* Footer bottom bar */
.sevra-footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.sevra-footer-bottom p,
.sevra-footer-bottom a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--wp--preset--color--warm);
  font-family: var(--wp--preset--font-family--josefin);
}
.sevra-footer-bottom a:hover { color: var(--wp--preset--color--ash); }
.sevra-footer-legal {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .sevra-footer-grid  { grid-template-columns: 1fr 1fr; }
  .sevra-footer-inner { padding: 3.5rem 1.5rem 2rem; }
}
@media (max-width: 560px) {
  .sevra-footer-grid  { grid-template-columns: 1fr; gap: 2.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WOOCOMMERCE — COMPLETE OVERRIDES
═══════════════════════════════════════════════════════════════════════════ */

/* Product cards */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

@media (max-width: 900px)  { .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 560px)  { .woocommerce ul.products { grid-template-columns: 1fr !important; } }

.woocommerce ul.products li.product {
  margin: 0 !important;
  overflow: hidden;
}
.woocommerce ul.products li.product a img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--wp--custom--transition--slow);
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.03); }
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  overflow: hidden; display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--wp--preset--font-family--cormorant) !important;
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  color: var(--wp--preset--color--ink);
  margin: .875rem 0 .25rem !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product .price {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.72rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--ash) !important;
}
.woocommerce ul.products li.product .button {
  margin-top: .875rem !important;
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.6rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent !important;
  color: var(--wp--preset--color--ink) !important;
  border: 1px solid var(--wp--preset--color--linen) !important;
  border-radius: 0 !important;
  padding: .625rem 1.25rem !important;
  transition: background .25s, border-color .25s, color .25s !important;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--wp--preset--color--ink) !important;
  border-color: var(--wp--preset--color--ink) !important;
  color: var(--wp--preset--color--ivory) !important;
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: var(--wp--preset--font-family--cormorant) !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  color: var(--wp--preset--color--ink) !important;
  margin-bottom: .5rem !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.875rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--ash) !important;
}

/* Variation selector — pants or shorts */
.woocommerce div.product form.cart table.variations td.label label {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.62rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ash) !important;
}
.woocommerce div.product form.cart .variations select {
  appearance: none;
  background: var(--wp--preset--color--ivory) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 1rem center !important;
  border: 1px solid var(--wp--preset--color--linen) !important;
  border-radius: 0 !important;
  padding: .65rem 2.5rem .65rem .875rem !important;
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.78rem !important;
  font-weight: 300 !important;
  color: var(--wp--preset--color--ink) !important;
  outline: none;
  transition: border-color .2s;
  cursor: pointer;
}
.woocommerce div.product form.cart .variations select:focus {
  border-color: var(--wp--preset--color--ash) !important;
}

/* Add to cart btn */
.woocommerce div.product form.cart .single_add_to_cart_button {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.62rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  background: var(--wp--preset--color--ink) !important;
  color: var(--wp--preset--color--ivory) !important;
  border: 1px solid var(--wp--preset--color--ink) !important;
  border-radius: 0 !important;
  padding: 1rem 2.5rem !important;
  transition: background .25s, border-color .25s, transform .15s !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--wp--preset--color--moss) !important;
  border-color: var(--wp--preset--color--moss) !important;
  transform: translateY(-1px);
}

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--wp--preset--color--ivory) !important;
  border: 1px solid var(--wp--preset--color--linen) !important;
  border-radius: 0 !important;
  padding: .75rem .9rem !important;
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.82rem !important;
  font-weight: 300 !important;
  color: var(--wp--preset--color--ink) !important;
  transition: border-color .2s !important;
  box-shadow: none !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--wp--preset--color--ash) !important;
  box-shadow: 0 2px 14px rgba(42,40,38,0.05) !important;
  outline: none !important;
}

/* General WC buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.62rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--wp--preset--color--ink) !important;
  color: var(--wp--preset--color--ivory) !important;
  border: 1px solid var(--wp--preset--color--ink) !important;
  border-radius: 0 !important;
  padding: .875rem 2rem !important;
  transition: background .25s, border-color .25s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--wp--preset--color--moss) !important;
  border-color: var(--wp--preset--color--moss) !important;
  color: #fff !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--wp--preset--color--moss) !important;
  border-color: var(--wp--preset--color--moss) !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.65rem !important;
  letter-spacing: 0.12em;
  color: var(--wp--preset--color--ash) !important;
  font-family: var(--wp--preset--font-family--josefin) !important;
}

/* Cart table */
.woocommerce table.shop_table {
  border: 1px solid var(--wp--preset--color--linen) !important;
  border-radius: 0 !important;
}
.woocommerce table.shop_table thead th {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.62rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--ash) !important;
  border-bottom: 1px solid var(--wp--preset--color--linen) !important;
  padding: 1rem !important;
}
.woocommerce table.shop_table td {
  border-top: 1px solid var(--wp--preset--color--linen) !important;
  padding: 1rem !important;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--wp--preset--color--moss) !important;
  background: var(--wp--preset--color--pearl) !important;
  color: var(--wp--preset--color--ink) !important;
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.8rem !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCOUNT / MY ACCOUNT PAGE (WooCommerce native)
═══════════════════════════════════════════════════════════════════════════ */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 220px !important;
  float: left;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none; margin: 0; padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  font-family: var(--wp--preset--font-family--josefin) !important;
  font-size: 0.68rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--slate) !important;
  display: block;
  padding: .6rem 0;
  border-bottom: 1px solid var(--wp--preset--color--linen);
  transition: color .2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--wp--preset--color--moss) !important;
}

/* ─── Utility ────────────────────────────────────────────────────────────── */
.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
