/*
Theme Name: VERDÉA Cosmetics Store
Author: Top Experts Studio
Description: Премиальная WooCommerce-тема для бренда натуральной косметики: каталог, карточки товаров, избранное, корзина, личный кабинет, блог и мастер импорта демоданных.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verdea
Domain Path: /languages
*/

:root {
  --green: #536d4b;
  --green-dark: #33452f;
  --green-deep: #263524;
  --cream: #f8f4ed;
  --paper: #fffdf9;
  --line: #e7dfd4;
  --muted: #777268;
  --accent: #c86f49;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ece7df;
  color: #282f27;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a, .product-card, .benefits article { transition: .22s ease; }

.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.verdea-canvas {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 40px rgba(48,42,34,.08);
  overflow: hidden;
}

.topline {
  min-height: 30px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #fff;
  background: linear-gradient(90deg, #637b57, #435b3e);
  font-size: 11px;
}
.topline span:nth-child(2) { justify-self: center; }
.topline span:last-child { justify-self: end; }

.site-header {
  min-height: 88px;
  padding: 12px 26px;
  display: grid;
  grid-template-columns: 180px 1fr 235px auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,249,.98);
}
.brand { display: inline-flex; flex-direction: column; width: max-content; color: var(--green-dark); }
.brand strong { font: 500 31px/1 var(--serif); letter-spacing: .04em; }
.brand small { margin-top: 7px; font-size: 8px; letter-spacing: .22em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 25px; }
.main-nav a { position: relative; font-size: 12px; text-transform: uppercase; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--green); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.header-search { height: 42px; display: flex; align-items: center; border: 1px solid #d7cfc4; border-radius: 8px; overflow: hidden; background: #fff; }
.header-search input { width: 100%; min-width: 0; height: 100%; padding: 0 14px; border: 0; outline: 0; background: transparent; font-size: 12px; }
.header-search button { width: 44px; height: 100%; border: 0; background: transparent; color: var(--green-dark); font-size: 22px; cursor: pointer; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions button, .header-actions > a { position: relative; min-width: 54px; padding: 4px 2px; display: grid; grid-template-columns: 24px auto; align-items: center; gap: 7px; border: 0; border-radius: 8px; background: transparent; color: var(--green-dark); cursor: pointer; transition: transform .2s ease, color .2s ease, background-color .2s ease; }
.header-actions .action-icon { width: 24px; height: 24px; display: grid; place-items: center; color: currentColor; }
.header-actions .action-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.header-actions button small, .header-actions > a small { color: #2f332d; font-size: 11px; transition: color .2s ease; }
.header-actions button b, .header-actions > a b { position: absolute; top: -5px; left: 17px; min-width: 17px; height: 17px; padding: 0 4px; display: grid; place-items: center; border: 2px solid #fffdf9; border-radius: 999px; background: var(--accent); color: #fff; font-size: 9px; line-height: 1; }
.header-actions button:hover, .header-actions button:focus-visible, .header-actions > a:hover, .header-actions > a:focus-visible { color: var(--green); background: #f3f6f1; transform: translateY(-2px); }
.header-actions button:hover small, .header-actions button:focus-visible small, .header-actions > a:hover small, .header-actions > a:focus-visible small { color: var(--green-dark); }

.hero {
  position: relative;
  aspect-ratio: 1086 / 292;
  overflow: hidden;
  background: #f4efe7;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s ease; }
.hero:hover .hero-image { transform: scale(1.012); }
.hero-content { position: absolute; z-index: 2; left: 5.2%; top: 50%; width: 33%; transform: translateY(-50%); }
.hero h1 { margin: 0; font: 500 clamp(28px, 3.25vw, 54px)/1.02 var(--serif); letter-spacing: -.02em; color: #302f2a; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-content > p { width: 82%; margin: 16px 0 0; font-size: clamp(11px, .9vw, 15px); line-height: 1.45; color: #454840; }
.hero-actions { margin-top: 20px; display: flex; gap: 13px; }
.button { min-width: 126px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--green); font-size: 11px; text-transform: uppercase; cursor: pointer; }
.button-primary { background: var(--green); color: #fff; }
.button-secondary { background: rgba(255,255,255,.7); color: var(--green-dark); border-color: #bdb4a8; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(56,47,36,.15); }
.hero-pagination { margin-top: 22px; display: flex; align-items: center; gap: 11px; }
.slide-count { margin-right: 7px; font-size: 12px; font-weight: 600; }
.hero-arrow { width: 32px; height: 32px; border: 1px solid #bfb7aa; border-radius: 50%; background: rgba(255,255,255,.75); cursor: pointer; }
.hero-arrow:hover { background: #fff; transform: translateY(-2px); }
.dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: #c9c0b4; cursor: pointer; }
.dot.is-active { background: var(--green); }
.hero-seal { position: absolute; z-index: 2; right: 8%; top: 48%; width: 112px; height: 112px; display: grid; place-items: center; border: 2px solid rgba(78,85,67,.55); border-radius: 50%; color: rgba(55,65,50,.72); text-align: center; font: 12px/1.45 var(--serif); transform: rotate(-14deg); letter-spacing: .08em; }

.benefits {
  margin: 0 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #eee7de;
  background: #fff;
  box-shadow: 0 8px 24px rgba(61,51,40,.06);
}
.benefits article { min-height: 96px; padding: 18px 20px; display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: center; position: relative; }
.benefits article:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 18px; bottom: 18px; width: 1px; background: var(--line); }
.benefits .benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #91a28a;
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.benefits .benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefits .benefit-icon-recycle {
  font-size: 25px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}
.benefits article:hover .benefit-icon {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.04);
}
.benefits h2 { margin: 0 0 5px; font-size: 11px; line-height: 1.2; text-transform: uppercase; }
.benefits p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.4; }
.benefits article:hover { background: #f7f9f5; transform: translateY(-3px); }

.section-wrap { padding-left: 40px; padding-right: 40px; }
.section-heading { margin: 23px 0 11px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.section-heading h2 { margin: 0; font: 500 23px/1 var(--serif); text-transform: uppercase; letter-spacing: .02em; }
.section-heading a { color: var(--green); font-size: 10px; }
.section-heading a:hover { transform: translateX(4px); }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.category-card { position: relative; aspect-ratio: 1.78; overflow: hidden; border-radius: 3px; background: #ddd; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.category-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(38,29,20,.52), rgba(38,29,20,.08)); }
.category-card > div { position: absolute; z-index: 2; inset: 18px; color: #fff; }
.category-card h3 { margin: 0 0 9px; font: 500 19px/1.1 var(--serif); text-transform: uppercase; }
.category-card p { max-width: 170px; margin: 0; font-size: 10px; line-height: 1.45; }
.category-link { position: absolute; left: 0; bottom: 0; padding: 7px 13px; border: 1px solid rgba(255,255,255,.85); font-size: 9px; text-transform: uppercase; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(55,44,34,.17); }
.category-card:hover img { transform: scale(1.04); }

.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; border: 1px solid #eee8df; background: #fff; }
.favorite-button { position: absolute; z-index: 2; top: 8px; right: 8px; width: 29px; height: 29px; padding: 0; border: 0; background: transparent; color: #7d8b78; font-size: 23px; cursor: pointer; }
.favorite-button.is-active { color: var(--accent); }
.product-image-link { aspect-ratio: 1.08; padding: 8px; background: #fff; overflow: hidden; }
.product-image-link img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-image-link img { transform: scale(1.05); }
.product-info { flex: 1; padding: 10px 10px 7px; border-top: 1px solid #f0ebe4; }
.product-info h3 { min-height: 34px; margin: 0 0 6px; font-size: 12px; line-height: 1.25; }
.product-info p { min-height: 25px; margin: 0; color: var(--muted); font-size: 9px; line-height: 1.35; }
.product-info small { display: block; margin-top: 3px; color: #8b857b; font-size: 9px; }
.product-info strong { display: block; margin-top: 8px; color: var(--green-dark); font-size: 16px; }
.product-purchase { padding: 7px 9px 10px; display: grid; grid-template-columns: 62px 1fr; gap: 5px; }
.quantity-control { height: 30px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #d8d0c5; }
.quantity-control button, .quantity-control output { display: grid; place-items: center; border: 0; background: #fff; font-size: 11px; }
.quantity-control button { cursor: pointer; }
.add-to-cart { border: 0; background: var(--green); color: #fff; font-size: 9px; text-transform: uppercase; cursor: pointer; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 13px 25px rgba(54,45,35,.11); }

.ingredients-section .section-heading { margin-top: 17px; }
.ingredient-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.ingredient-grid article { min-height: 70px; display: grid; grid-template-columns: 42% 1fr; border: 1px solid var(--line); background: #fff; overflow: hidden; }
.ingredient-grid img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-grid div { padding: 11px 12px; }
.ingredient-grid h3 { margin: 0 0 5px; font: 500 12px var(--serif); text-transform: uppercase; }
.ingredient-grid p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.45; }
.ingredient-grid article:hover { transform: translateY(-3px); box-shadow: 0 9px 19px rgba(55,45,34,.08); }

.about-section { margin-top: 16px; display: grid; grid-template-columns: 31% 28% 1fr; min-height: 150px; }
.about-section figure { margin: 0; overflow: hidden; }
.about-section figure img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { padding: 10px 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-copy > span { color: var(--green); font-size: 10px; text-transform: uppercase; }
.about-copy h2 { margin: 7px 0 8px; font: 500 20px/1.07 var(--serif); }
.about-copy p { margin: 0 0 10px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.about-copy a { color: var(--green); font-size: 9px; text-transform: uppercase; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.about-values article { padding: 20px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; }
.about-values article:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20px; bottom: 20px; width: 1px; background: var(--line); }
.about-values .about-value-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #9aaa93;
  border-radius: 50%;
  color: #66785f;
  background: #fff;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.about-values .about-value-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-values article:hover .about-value-icon {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}
.about-values h3 { margin: 10px 0 6px; font: 600 11px/1.25 var(--serif); text-transform: uppercase; }
.about-values p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.4; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews-grid article { padding: 14px 18px; border: 1px solid var(--line); background: #fff; }
.review-head { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; }
.review-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-head strong, .review-head small { display: block; }
.review-head strong { font: 500 11px var(--serif); }
.review-head small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.review-head span { color: var(--green); font-size: 10px; letter-spacing: 2px; }
.reviews-grid p { margin: 10px 0 0 54px; color: #4f514c; font-size: 9px; line-height: 1.45; }
.reviews-grid article:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(55,44,34,.09); }

.newsletter { min-height: 95px; margin: 18px 40px 0; padding: 18px 270px 18px 28px; display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 30px; position: relative; overflow: hidden; border-radius: 3px; background: #4d5b3f; color: #fff; }
.newsletter h2 { margin: 0 0 6px; font: 500 22px/1.08 var(--serif); }
.newsletter p { margin: 0; font-size: 9px; line-height: 1.45; color: rgba(255,255,255,.84); }
.newsletter > div, .newsletter-form { position: relative; z-index: 2; }
.newsletter-form { display: grid; grid-template-columns: 1fr 120px; gap: 6px; }
.newsletter-form input[type="email"] { height: 34px; padding: 0 12px; border: 0; border-radius: 3px; }
.newsletter-form button { border: 0; border-radius: 3px; background: var(--accent); color: #fff; font-size: 10px; text-transform: uppercase; cursor: pointer; }
.newsletter-form label { grid-column: 1/-1; display: flex; gap: 6px; align-items: center; font-size: 7px; color: rgba(255,255,255,.75); }
.newsletter > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 1; z-index: 0; pointer-events: none; }

.site-footer { margin: 0 40px; padding: 24px 10px 20px; display: grid; grid-template-columns: 1.35fr repeat(3, 1fr) 1.15fr; gap: 34px; position: relative; }
.footer-brand .brand strong { font-size: 24px; }
.footer-brand .brand small { font-size: 7px; }
.footer-brand p { max-width: 180px; margin: 16px 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.site-footer h2 { margin: 0 0 10px; font-size: 10px; text-transform: uppercase; }
.site-footer nav, .site-footer address { display: flex; flex-direction: column; gap: 6px; font-style: normal; }
.site-footer nav a, .site-footer address a, .site-footer address span { color: #68675f; font-size: 8px; line-height: 1.35; }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--green); transform: translateX(3px); }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #aab5a6; border-radius: 50%; color: var(--green); font-size: 8px; }
.footer-art { position: absolute; right: -5px; bottom: 0; width: 135px; opacity: .55; pointer-events: none; }
.footer-bottom { min-height: 34px; padding: 0 40px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 35px; background: #506947; color: rgba(255,255,255,.78); font-size: 8px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 1250px) {
  .site-header { grid-template-columns: 155px 1fr 200px auto; gap: 15px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 10px; }
  .header-actions { gap: 10px; }
  .header-actions button small, .header-actions > a small { display: none; }
}

@media (max-width: 760px) {
  .verdea-canvas { width: calc(100% - 16px); }
  .topline { grid-template-columns: 1fr auto; }
  .topline span:nth-child(2) { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav { display: none; }
  .header-search { justify-self: end; width: 220px; }
  .hero { min-height: 470px; aspect-ratio: auto; }
  .hero-image { object-position: 58% center; }
  .hero-content { width: 48%; }
  .hero-seal { display: none; }
  .benefits { overflow-x: auto; grid-template-columns: repeat(5, 210px); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr 1fr; }
  .about-values { grid-column: 1/-1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .newsletter { padding-right: 180px; grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  body { background: var(--paper); }
  .verdea-canvas { width: 100%; box-shadow: none; }
  .topline { min-height: 28px; padding: 0 12px; grid-template-columns: 1fr; font-size: 8px; text-align: center; }
  .topline span:last-child { display: none; }
  .site-header { min-height: 66px; padding: 9px 14px; grid-template-columns: 1fr 126px auto; gap: 8px; }
  .brand strong { font-size: 19px; }
  .brand small { display: none; }
  .header-search { width: 126px; height: 38px; }
  .header-search input { font-size: 10px; }
  .header-actions { gap: 2px; }
  .header-actions button, .header-actions > a { min-width: 34px; grid-template-columns: 1fr; }
  .header-actions > :first-child { display: none; }
  .header-actions button span, .header-actions > a span { font-size: 21px; }
  .hero { min-height: 540px; }
  .hero-image { object-position: 60% center; }
  .hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(21,29,20,.67) 100%); }
  .hero-content { left: 16px; right: 16px; top: auto; bottom: 22px; width: auto; transform: none; color: #fff; }
  .hero h1, .hero h1 em, .hero-content > p { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
  .hero h1 { font-size: 36px; }
  .hero-content > p { width: 100%; font-size: 12px; }
  .hero-actions { margin-top: 16px; }
  .button { min-width: 116px; height: 40px; }
  .button-secondary { background: #fff; }
  .hero-pagination { margin-top: 14px; }
  .hero-seal { display: none; }
  .benefits { margin: 14px 10px 0; grid-template-columns: repeat(5, 150px); }
  .benefits article { min-height: 92px; padding: 13px 10px; grid-template-columns: 38px 1fr; }
  .benefits article > span { width: 36px; height: 36px; font-size: 19px; }
  .section-wrap { padding-left: 14px; padding-right: 14px; }
  .section-heading h2 { font-size: 20px; }
  .section-heading a { font-size: 8px; }
  .categories-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-info h3 { font-size: 11px; }
  .product-purchase { grid-template-columns: 58px 1fr; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-section figure { min-height: 220px; }
  .about-values { grid-template-columns: 1fr; }
  .about-values article:not(:last-child)::after { left: 18px; right: 18px; top: auto; bottom: 0; width: auto; height: 1px; }
  .newsletter { margin: 16px 14px 0; padding: 22px 18px 90px; display: block; }
  .newsletter h2 { font-size: 24px; }
  .newsletter-form { margin-top: 17px; grid-template-columns: 1fr; }
  .newsletter-form button { min-height: 38px; }
  .newsletter > img { inset: 0; width: 100%; height: 100%; object-position: left center; opacity: 1; }
  .site-footer { margin: 0 14px; grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .footer-bottom { min-height: 48px; padding: 8px 14px; grid-template-columns: 1fr; gap: 4px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* Canonical 1086×1448 density contract. */
@media (min-width: 761px) and (max-width: 1200px) {
  .section-heading { margin: 13px 0 7px; }
  .section-heading h2 { font-size: 18px; }
  .section-heading a { font-size: 8px; }

  .categories-section { padding-top: 0; }
  .category-card { aspect-ratio: 1.95; }
  .category-card > div { inset: 12px; }
  .category-card h3 { margin-bottom: 5px; font-size: 15px; }
  .category-card p { max-width: 145px; font-size: 8px; }
  .category-link { padding: 5px 10px; font-size: 7px; }

  .product-card { display: grid; grid-template-rows: 94px 62px 31px; }
  .product-image-link { aspect-ratio: auto; height: 94px; padding: 5px; }
  .product-info { padding: 6px 7px 4px; overflow: hidden; }
  .product-info h3 { min-height: 25px; margin-bottom: 3px; font-size: 9px; line-height: 1.2; }
  .product-info p { min-height: 0; margin: 0; font-size: 6px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .product-info small { margin-top: 2px; font-size: 6px; }
  .product-info strong { margin-top: 4px; font-size: 12px; }
  .product-purchase { padding: 3px 6px 5px; grid-template-columns: 48px 1fr; gap: 4px; }
  .quantity-control { height: 23px; }
  .quantity-control button, .quantity-control output { font-size: 8px; }
  .add-to-cart { font-size: 7px; }
  .favorite-button { top: 4px; right: 4px; width: 22px; height: 22px; font-size: 17px; }

  .ingredients-section .section-heading { margin-top: 10px; }
  .ingredient-grid article { min-height: 54px; }
  .ingredient-grid div { padding: 7px 8px; }
  .ingredient-grid h3 { margin-bottom: 3px; font-size: 9px; }
  .ingredient-grid p { font-size: 6px; line-height: 1.25; }

  .about-section { margin-top: 10px; min-height: 112px; max-height: 112px; }
  .about-copy { padding: 7px 14px; overflow: hidden; }
  .about-copy > span { font-size: 7px; }
  .about-copy h2 { margin: 4px 0 5px; font-size: 15px; }
  .about-copy p { margin-bottom: 5px; font-size: 6px; line-height: 1.3; }
  .about-copy a { font-size: 6px; }
  .about-values article { padding: 9px 7px; }
  .about-values span { font-size: 18px; }
  .about-values h3 { margin: 5px 0 3px; font-size: 8px; }
  .about-values p { font-size: 6px; line-height: 1.2; }

  .reviews-section .section-heading { margin-top: 11px; }
  .reviews-grid { gap: 12px; }
  .reviews-grid article { height: 66px; padding: 8px 10px; overflow: hidden; }
  .review-head { grid-template-columns: 32px 1fr auto; gap: 7px; }
  .review-head img { width: 32px; height: 32px; }
  .review-head strong { font-size: 8px; }
  .review-head small { font-size: 6px; }
  .review-head span { font-size: 7px; }
  .reviews-grid p { margin: 5px 0 0 39px; font-size: 6px; line-height: 1.25; }

  .newsletter { min-height: 72px; height: 72px; margin-top: 10px; padding: 10px 210px 10px 20px; gap: 18px; }
  .newsletter h2 { margin-bottom: 3px; font-size: 16px; }
  .newsletter p { font-size: 6px; }
  .newsletter-form { grid-template-columns: 1fr 90px; gap: 4px; }
  .newsletter-form input[type="email"] { height: 27px; font-size: 8px; }
  .newsletter-form button { font-size: 7px; }
  .newsletter-form label { font-size: 5px; }
  .newsletter > img { width: 100%; height: 100%; }

  .site-footer { height: 103px; margin: 0 40px; padding: 12px 8px 8px; gap: 22px; overflow: hidden; }
  .footer-brand .brand strong { font-size: 18px; }
  .footer-brand .brand small { font-size: 5px; margin-top: 4px; }
  .footer-brand p { margin: 8px 0; font-size: 6px; }
  .site-footer h2 { margin-bottom: 5px; font-size: 7px; }
  .site-footer nav, .site-footer address { gap: 3px; }
  .site-footer nav a, .site-footer address a, .site-footer address span { font-size: 5px; line-height: 1.2; }
  .social-links { gap: 5px; }
  .social-links a { width: 20px; height: 20px; font-size: 6px; }
  .footer-art { width: 92px; }
  .footer-bottom { min-height: 25px; height: 25px; font-size: 6px; }
}


/* Hero image replacement: uploaded VERDÉA banner, 2172×724. */
.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 760px) {
  .hero-image { object-position: 69% 50%; }
}

 .benefits .benefit-icon-natural {
  border: 0;
  background: transparent;
  transform: none;
}
.benefits .benefit-icon-natural img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  transition: transform .2s ease, filter .2s ease;
}
.benefits article:hover .benefit-icon-natural {
  background: transparent;
  border-color: transparent;
  transform: none;
}
.benefits article:hover .benefit-icon-natural img {
  transform: scale(1.04);
  filter: brightness(.96) saturate(1.08);
}


/* Images from verdea_generated_10.zip */
.product-image-link { padding: 0; background: #f8f4ee; }
.product-image-link img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ingredient-grid img { object-fit: cover; object-position: center; }
@media (min-width: 761px) and (max-width: 1200px) {
  .product-image-link { padding: 0; }
}

/* Uniform product image positioning: source files are centered and container-matched. */
.product-card {
  --product-hover-scale: 1.04;
}
.product-image-link img {
  transform: none;
  transform-origin: center;
}
.product-card:hover .product-image-link img {
  transform: scale(var(--product-hover-scale));
}


/* WooCommerce integration. */
.quantity-control { position: relative; }
.quantity-control .quantity-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.product-info .woocommerce-Price-amount { color: inherit; }
.store-main { min-height: 520px; padding-top: 34px; padding-bottom: 58px; background: var(--paper); }
.store-main.woocommerce { width: 100%; }
.store-main.woocommerce-breadcrumb { margin: 0 0 24px; color: var(--muted); font-size: 11px; }
.store-main.woocommerce-products-header__title,
.store-main .product_title,
.store-page-title { margin: 0 0 24px; color: var(--green-dark); font: 500 clamp(28px, 3vw, 44px)/1.05 var(--serif); }
.store-main.woocommerce-result-count,
.store-main.woocommerce-ordering { margin-bottom: 22px; font-size: 11px; }
.store-main.woocommerce-ordering select { min-height: 38px; padding: 0 32px 0 12px; border: 1px solid var(--line); background: #fff; }
.store-main.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 0; }
.store-main.woocommerce ul.products::before,
.store-main.woocommerce ul.products::after { display: none; }
.store-main.woocommerce ul.products li.product { width: auto; margin: 0; padding: 0 0 18px; border: 1px solid var(--line); background: #fff; overflow: hidden; }
.store-main.woocommerce ul.products li.product a img { width: 100%; margin: 0 0 14px; aspect-ratio: 1.08; object-fit: cover; background: #f8f4ee; }
.store-main.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 58px; padding: 0 16px; color: #2f332d; font-size: 15px; line-height: 1.3; }
.store-main.woocommerce ul.products li.product .price { padding: 0 16px; color: var(--green-dark); font-size: 18px; font-weight: 700; }
.store-main.woocommerce a.button,
.store-main.woocommerce button.button,
.store-main.woocommerce input.button { margin: 8px 16px 0; padding: 12px 18px; border-radius: 0; background: var(--green); color: #fff; font-size: 11px; text-transform: uppercase; }
.store-main.woocommerce a.button:hover,
.store-main.woocommerce button.button:hover,
.store-main.woocommerce input.button:hover { background: var(--green-dark); color: #fff; }
.store-main.woocommerce div.product { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr); gap: 50px; align-items: start; }
.store-main.woocommerce div.product div.images,
.store-main.woocommerce div.product div.summary { width: auto; float: none; margin: 0; }
.store-main.woocommerce div.product div.images img { background: #f8f4ee; }
.store-main.woocommerce div.product p.price { color: var(--green-dark); font-size: 27px; }
.store-main.woocommerce div.product form.cart { display: flex; align-items: stretch; gap: 8px; }
.store-main.woocommerce div.product form.cart .quantity input { min-height: 44px; }
.store-main.woocommerce div.product .woocommerce-tabs,
.store-main.woocommerce div.product .related.products {
  grid-column: 1 / -1;
  width: 100%;
}
.store-main.woocommerce div.product .woocommerce-tabs { margin-top: 0; }
.store-main.woocommerce div.product .related.products { margin-top: 0; }
.store-main.woocommerce div.product .related.products > h2 { margin: 0 0 18px; }
.store-main.woocommerce table.shop_table { border-color: var(--line); border-radius: 0; background: #fff; }
.store-main.woocommerce .cart_totals,
.store-main.woocommerce-checkout-review-order,
.store-main.woocommerce-form-login,
.store-main.woocommerce-form-register,
.store-main.woocommerce-MyAccount-navigation,
.store-main.woocommerce-MyAccount-content { padding: 22px; border: 1px solid var(--line); background: #fff; }
.store-page-content { min-height: 440px; }
.store-footer { border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .store-main.woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-main.woocommerce div.product { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .store-main { padding: 24px 14px 42px; }
  .store-main.woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .store-main.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 50px; padding: 0 10px; font-size: 12px; }
  .store-main.woocommerce ul.products li.product .price { padding: 0 10px; font-size: 15px; }
  .store-main.woocommerce a.button { margin-left: 10px; margin-right: 10px; padding: 10px; font-size: 9px; }
}

/* Clean cart navigation: AJAX add, then GET /cart/. */
.add-to-cart.is-loading, .add-to-cart:disabled { opacity: .72; cursor: wait; }

/* Editorial content pages: About, Blog, Contacts and articles. */
.editorial-page, .article-page { background: var(--paper); }
.editorial-page__content, .blog-list, .article-entry, .article-related { width: min(1424px, calc(100% - 80px)); margin: 0 auto; }
.content-section { margin-top: 58px; }
.content-kicker { display: block; margin-bottom: 10px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.content-hero { min-height: 430px; display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; background: #f4efe7; }
.content-hero > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.content-hero__copy { padding: clamp(42px, 6vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.content-hero__copy > span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.content-hero h1, .blog-hero h1, .article-header h1 { margin: 14px 0 18px; color: var(--green-deep); font: 500 clamp(36px, 4vw, 64px)/1.04 var(--serif); letter-spacing: -.025em; }
.content-hero p, .blog-hero p, .article-header__copy > p { margin: 0; color: #53574f; font-size: 16px; line-height: 1.7; }
.content-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.content-split h2, .section-intro h2, .contact-layout h2, .contact-note h2, .content-cta h2 { margin: 0; color: var(--green-deep); font: 500 clamp(28px, 3vw, 44px)/1.08 var(--serif); }
.content-prose { columns: 2; column-gap: 40px; }
.content-prose p { margin: 0 0 18px; break-inside: avoid; color: #50544d; font-size: 15px; line-height: 1.75; }
.values-panel { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; }
.values-panel article { min-height: 220px; padding: 34px 28px; position: relative; }
.values-panel article:not(:last-child) { border-right: 1px solid var(--line); }
.values-panel article > span { color: #9a7f61; font: 500 30px var(--serif); }
.values-panel h3 { margin: 26px 0 10px; font: 600 18px/1.25 var(--serif); text-transform: uppercase; }
.values-panel p, .section-intro p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.process-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 58px; background: #f3efe7; }
.section-intro p { margin-top: 18px; max-width: 560px; }
.process-list { margin: 0; padding: 0; counter-reset: steps; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; list-style: none; }
.process-list li { padding-top: 18px; border-top: 1px solid #cfc4b4; counter-increment: steps; }
.process-list li::before { content: "0" counter(steps); display: block; margin-bottom: 16px; color: var(--green); font: 500 20px var(--serif); }
.process-list strong { font: 600 17px var(--serif); }
.process-list p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.ingredient-story__grid { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ingredient-story__grid article { border: 1px solid var(--line); background: #fff; }
.ingredient-story__grid img { width: 100%; aspect-ratio: 2.14; object-fit: cover; }
.ingredient-story__grid h3 { margin: 18px 20px 7px; font: 600 17px var(--serif); text-transform: uppercase; }
.ingredient-story__grid p { margin: 0 20px 22px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.content-cta { margin: 64px 0 0; padding: 42px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--green); color: #fff; }
.content-cta span { display: block; margin-bottom: 9px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.content-cta h2 { color: #fff; }
.content-cta .button { flex: 0 0 auto; border-color: #fff; background: #fff; color: var(--green-dark); }

.blog-hero { min-height: 390px; display: grid; grid-template-columns: 1fr .7fr; align-items: stretch; background: #f3eee6; }
.blog-hero > div { padding: clamp(42px, 6vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.blog-hero > img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.blog-list { padding-bottom: 72px; }
.blog-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card { display: grid; grid-template-columns: 46% 1fr; min-height: 270px; border: 1px solid var(--line); background: #fff; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(55,44,34,.1); }
.blog-card__image { overflow: hidden; background: #f4efe7; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.03); }
.blog-card__body { padding: 28px; display: flex; flex-direction: column; }
.blog-card time { color: #8b8478; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h3 { margin: 13px 0 12px; font: 600 23px/1.18 var(--serif); }
.blog-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.blog-card__link { margin-top: auto; padding-top: 18px; color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; }
.contact-cards { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-cards article { min-height: 160px; padding: 25px; border: 1px solid var(--line); background: #fff; }
.contact-cards h3 { margin: 0 0 13px; font: 600 16px var(--serif); text-transform: uppercase; }
.contact-cards a { color: var(--green); font-size: 15px; font-weight: 700; }
.contact-cards p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.contact-form-panel { padding: 42px; background: #f3efe7; }
.contact-form-panel > p { color: var(--muted); font-size: 12px; line-height: 1.55; }
.contact-form { margin-top: 25px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea { width: 100%; padding: 12px 13px; border: 1px solid #d4cabd; background: #fff; color: #30352e; font-size: 14px; text-transform: none; letter-spacing: 0; }
.contact-form textarea { resize: vertical; }
.contact-form__wide { grid-column: 1 / -1; }
.contact-consent { display: flex !important; grid-template-columns: auto 1fr; align-items: center; font-size: 10px !important; font-weight: 400 !important; text-transform: none !important; }
.contact-form .button { width: max-content; padding: 0 24px; }
.contact-note { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 330px; border: 1px solid var(--line); }
.contact-note img { width: 100%; height: 100%; object-fit: cover; }
.contact-note > div { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.contact-note p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.contact-note a { color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.faq-section { padding-bottom: 72px; }
.faq-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-grid details { padding: 20px 22px; border: 1px solid var(--line); background: #fff; }
.faq-grid summary { cursor: pointer; font: 600 16px var(--serif); }
.faq-grid p { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.contact-status { width: min(1424px, calc(100% - 80px)); margin: 20px auto 0; padding: 14px 18px; border: 1px solid; font-size: 13px; }
.contact-status--success { border-color: #8ca384; background: #eef5eb; color: #34502f; }
.contact-status--error { border-color: #c98d76; background: #fff1ec; color: #793a24; }

.article-entry { padding-top: 34px; }
.article-header { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 480px; background: #f3eee6; }
.article-header__copy { padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.article-header figure { margin: 0; overflow: hidden; }
.article-header figure img { width: 100%; height: 100%; object-fit: cover; }
.article-back { margin-bottom: 30px; color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.article-header time { color: #837d72; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.article-body { width: min(800px, calc(100% - 40px)); margin: 54px auto 0; color: #3d433b; font-size: 16px; line-height: 1.8; }
.article-body h2 { margin: 42px 0 14px; color: var(--green-deep); font: 600 30px/1.18 var(--serif); }
.article-body p { margin: 0 0 20px; }
.article-body blockquote { margin: 34px 0; padding: 24px 30px; border-left: 3px solid var(--green); background: #f3efe7; color: var(--green-dark); font: 500 21px/1.5 var(--serif); }
.article-related { padding: 58px 0 72px; }
.blog-grid--related { grid-template-columns: repeat(3, 1fr); }
.blog-grid--related .blog-card { grid-template-columns: 1fr; }
.blog-grid--related .blog-card__image { aspect-ratio: 1.78; }

@media (max-width: 980px) {
  .editorial-page__content, .blog-list, .article-entry, .article-related { width: min(100% - 36px, 1424px); }
  .content-hero, .blog-hero, .article-header { grid-template-columns: 1fr; }
  .content-hero > img, .blog-hero > img, .article-header figure { min-height: 340px; order: -1; }
  .content-split, .process-section, .contact-layout, .contact-note { grid-template-columns: 1fr; gap: 32px; }
  .content-prose { columns: 1; }
  .values-panel, .ingredient-story__grid { grid-template-columns: repeat(2, 1fr); }
  .values-panel article:nth-child(2) { border-right: 0; }
  .values-panel article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card__image { aspect-ratio: 1.78; }
  .contact-note img { min-height: 300px; }
  .blog-grid--related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .editorial-page__content, .blog-list, .article-entry, .article-related { width: calc(100% - 28px); }
  .content-section { margin-top: 38px; }
  .content-hero > img, .blog-hero > img, .article-header figure { min-height: 230px; }
  .content-hero__copy, .blog-hero > div, .article-header__copy { padding: 32px 22px; }
  .content-hero h1, .blog-hero h1, .article-header h1 { font-size: 34px; }
  .content-hero p, .blog-hero p, .article-header__copy > p { font-size: 14px; }
  .values-panel, .ingredient-story__grid, .process-list, .blog-grid, .contact-cards, .contact-form, .faq-grid, .blog-grid--related { grid-template-columns: 1fr; }
  .values-panel article { min-height: 170px; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .values-panel article:last-child { border-bottom: 0; }
  .process-section, .contact-form-panel { padding: 30px 22px; }
  .content-cta { padding: 30px 22px; align-items: flex-start; flex-direction: column; }
  .blog-card__body { padding: 22px; }
  .contact-form__wide { grid-column: auto; }
  .contact-note > div { padding: 30px 22px; }
  .article-body { width: 100%; padding: 0 8px; font-size: 15px; }
  .article-body h2 { font-size: 25px; }
  .contact-status { width: calc(100% - 28px); }
}


/* Favorites page and persistent favorite controls. */
.store-main.woocommerce ul.products li.product { position: relative; }
.store-main.woocommerce ul.products li.product .favorite-button { margin: 0; }
.favorite-button { display: grid; place-items: center; border-radius: 50%; background: rgba(255,253,249,.82); line-height: 1; }
.favorite-button span { display: block; transform: translateY(-1px); }
.favorite-button:hover, .favorite-button:focus-visible { background: #fff; color: var(--accent); transform: translateY(-2px); }
.favorite-button--loop { position: absolute; z-index: 5; top: 12px; right: 12px; width: 36px; height: 36px; border: 1px solid rgba(83,109,75,.25); font-size: 24px; }
.single-favorite-wrap { margin: 18px 0 0; display: flex; align-items: center; gap: 11px; color: var(--green-dark); font-size: 12px; }
.favorite-button--single { position: static; width: 42px; height: 42px; border: 1px solid #b7c1b2; font-size: 27px; }
.favorite-button--single.is-active { border-color: var(--accent); }
.header-actions .favorite-count { pointer-events: none; }

.favorites-page { min-height: 650px; background: var(--paper); }
.favorites-page.is-loading .favorites-content { opacity: .45; }
.favorites-hero { min-height: 390px; display: grid; grid-template-columns: .85fr 1.15fr; background: #f1ece4; overflow: hidden; }
.favorites-hero__copy { padding: clamp(46px, 6vw, 88px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.favorites-hero__copy > span, .favorites-heading span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.favorites-hero h1 { margin: 13px 0 17px; color: var(--green-deep); font: 500 clamp(43px, 5vw, 72px)/1 var(--serif); }
.favorites-hero p { max-width: 540px; margin: 0 0 25px; color: #555950; font-size: 15px; line-height: 1.7; }
.favorites-hero__visual { position: relative; min-height: 390px; overflow: hidden; }
.favorites-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.favorites-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #f1ece4 0%, rgba(241,236,228,0) 35%); }
.favorites-hero__visual > span { position: absolute; z-index: 2; right: 8%; top: 12%; width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid rgba(83,109,75,.5); border-radius: 50%; background: rgba(255,253,249,.72); color: var(--green); font: 45px/1 var(--serif); }
.favorites-content { width: min(1424px, calc(100% - 80px)); margin: 0 auto; padding: 54px 0 74px; transition: opacity .2s ease; }
.favorites-heading { margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.favorites-heading h2 { margin: 9px 0 0; color: var(--green-deep); font: 500 clamp(28px, 3vw, 42px)/1 var(--serif); }
.favorites-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.favorites-heading strong { color: var(--green-dark); font-size: 20px; }
.favorites-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.favorites-grid[hidden], .favorites-card[hidden], .favorites-empty[hidden] { display: none !important; }
.favorites-card .product-image-link { aspect-ratio: 1.08; }
.favorites-empty { min-height: 370px; padding: 52px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); background: #f8f4ed; text-align: center; }
.favorites-empty__icon { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid #aebaa9; border-radius: 50%; color: var(--green); font: 43px/1 var(--serif); }
.favorites-empty h2 { margin: 0 0 11px; color: var(--green-deep); font: 500 34px/1.1 var(--serif); }
.favorites-empty p { max-width: 480px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.favorites-noscript { padding: 16px; border: 1px solid #c98d76; background: #fff1ec; color: #793a24; }

@media (max-width: 1100px) {
  .favorites-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .favorites-hero { grid-template-columns: 1fr; }
  .favorites-hero__visual { min-height: 260px; order: -1; }
  .favorites-hero__copy { padding: 34px 24px 42px; }
  .favorites-content { width: calc(100% - 28px); padding: 38px 0 52px; }
  .favorites-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .favorites-heading { align-items: flex-start; }
  .favorite-button--loop { top: 7px; right: 7px; width: 31px; height: 31px; font-size: 21px; }
}


/* Customer registration and account dashboard. */
.account-page { background: var(--paper); }
.account-hero { width: min(1424px, calc(100% - 80px)); min-height: 390px; margin: 34px auto 0; display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; background: #f3eee6; }
.account-hero__copy { padding: clamp(42px, 6vw, 84px); display: flex; flex-direction: column; justify-content: center; }
.account-hero__copy > span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.account-hero h1 { margin: 14px 0 18px; color: var(--green-deep); font: 500 clamp(36px, 4vw, 60px)/1.04 var(--serif); letter-spacing: -.025em; }
.account-hero p { max-width: 590px; margin: 0; color: #53574f; font-size: 15px; line-height: 1.7; }
.account-hero > img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.account-content { padding-top: 52px; padding-bottom: 72px; }
.account-content__inner > .woocommerce { width: 100%; }
.account-content .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.account-content .woocommerce-error,
.account-content .woocommerce-message,
.account-content .woocommerce-info { margin: 0 0 22px; padding: 16px 18px 16px 48px; border-top-color: var(--green); background: #fff; font-size: 13px; }
.account-content #customer_login { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.account-content #customer_login::before,
.account-content #customer_login::after { display: none; }
.account-content #customer_login > .u-column1,
.account-content #customer_login > .u-column2 { width: auto; float: none; padding: 36px; border: 1px solid var(--line); background: #fff; }
.account-content #customer_login h2 { margin: 0 0 24px; color: var(--green-deep); font: 600 30px/1.15 var(--serif); }
.account-content .woocommerce-form-login,
.account-content .woocommerce-form-register { margin: 0; padding: 0; border: 0; }
.account-content .woocommerce-form-row { margin: 0 0 16px; }
.account-content .woocommerce-form-row label { display: block; margin-bottom: 7px; color: #353a33; font-size: 11px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.account-content .woocommerce-form-row .required { color: var(--accent); }
.account-content .woocommerce-Input,
.account-content .input-text { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid #d4cabd; border-radius: 0; background: #fff; color: #30352e; font-size: 14px; outline: 0; }
.account-content .woocommerce-Input:focus,
.account-content .input-text:focus { border-color: var(--green); box-shadow: 0 0 0 2px rgba(82,111,75,.12); }
.account-content .password-input { width: 100%; display: block; }
.account-content .show-password-input { top: .78em; }
.account-content .woocommerce-button.button { min-height: 44px; margin: 8px 0 0; padding: 12px 22px; border-radius: 0; background: var(--green); color: #fff; font-size: 11px; text-transform: uppercase; }
.account-content .woocommerce-button.button:hover { background: var(--green-dark); color: #fff; }
.account-content .woocommerce-form-login__rememberme { display: flex !important; align-items: center; gap: 8px; margin-bottom: 12px !important; text-transform: none !important; }
.account-content .lost_password { margin: 16px 0 0; font-size: 12px; }
.account-content .lost_password a { color: var(--green); }
.verdea-registration-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
.verdea-registration-fields .form-row-wide { grid-column: 1 / -1; }
.verdea-registration-rules { margin: -5px 0 16px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.verdea-registration-consent label { display: flex !important; align-items: flex-start; gap: 9px; font-size: 11px !important; font-weight: 400 !important; line-height: 1.5; letter-spacing: 0 !important; text-transform: none !important; }
.verdea-registration-consent input { flex: 0 0 auto; margin-top: 3px; }
.verdea-registration-trap { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.account-content .woocommerce-privacy-policy-text { color: var(--muted); font-size: 11px; line-height: 1.5; }
.account-content .woocommerce-MyAccount-navigation { width: 260px; float: left; padding: 0; border: 1px solid var(--line); background: #fff; }
.account-content .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.account-content .woocommerce-MyAccount-navigation li { margin: 0; border-bottom: 1px solid var(--line); }
.account-content .woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.account-content .woocommerce-MyAccount-navigation a { display: block; padding: 15px 18px; color: #343a32; font-size: 12px; }
.account-content .woocommerce-MyAccount-navigation .is-active a,
.account-content .woocommerce-MyAccount-navigation a:hover { background: var(--green); color: #fff; }
.account-content .woocommerce-MyAccount-content { width: calc(100% - 292px); min-height: 340px; float: right; padding: 30px; border: 1px solid var(--line); background: #fff; }
.account-content .woocommerce-MyAccount-content::after,
.account-content__inner > .woocommerce::after { content: ""; display: table; clear: both; }
.account-content .woocommerce-MyAccount-content p { color: #4e544c; font-size: 14px; line-height: 1.7; }
.account-content .woocommerce-MyAccount-content a { color: var(--green); font-weight: 600; }

@media (max-width: 900px) {
  .account-hero { width: min(100% - 36px, 1424px); grid-template-columns: 1fr; }
  .account-hero > img { min-height: 300px; order: -1; }
  .account-content #customer_login { grid-template-columns: 1fr; }
  .account-content .woocommerce-MyAccount-navigation,
  .account-content .woocommerce-MyAccount-content { width: 100%; float: none; }
  .account-content .woocommerce-MyAccount-content { margin-top: 22px; }
}
@media (max-width: 620px) {
  .account-hero { width: 100%; margin-top: 0; }
  .account-hero > img { min-height: 230px; }
  .account-hero__copy { padding: 32px 24px; }
  .account-hero h1 { font-size: 34px; }
  .account-content { padding: 30px 14px 48px; }
  .account-content #customer_login > .u-column1,
  .account-content #customer_login > .u-column2 { padding: 24px 20px; }
  .verdea-registration-fields { grid-template-columns: 1fr; }
  .verdea-registration-fields .form-row-wide { grid-column: auto; }
  .account-content .woocommerce-MyAccount-content { padding: 22px 18px; }
}
