/*
Theme Name: Northern Food
Theme URI: https://example.com/
Author: Northern Food
Description: A modern bilingual WooCommerce theme for Northern Food.
Version: 2.4.1
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: lin-food-ingredients
*/

:root {
  --ink: #15231d;
  --ink-soft: #34453d;
  --muted: #66736d;
  --paper: #ffffff;
  --canvas: #f4f7f5;
  --canvas-strong: #e9efeb;
  --line: #dce4df;
  --line-strong: #c7d2cb;
  --green: #176b47;
  --green-dark: #0d4c33;
  --green-soft: #e7f1eb;
  --coral: #d6533d;
  --coral-dark: #aa3d2d;
  --blue: #2d6f98;
  --yellow: #e8b33f;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(21, 35, 29, 0.07);
  --shadow-md: 0 18px 44px rgba(21, 35, 29, 0.11);
  --radius: 8px;
  --max: 1320px;
  --header-height: 74px;
}

[data-lang="en"] .lang-zh,
[data-lang="zh"] .lang-en {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open,
body.is-cart-open {
  overflow: hidden;
}

.trp-floating-switcher {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-dark);
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  letter-spacing: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
}

.site-header__inner,
.site-footer__inner,
.section-inner,
.content-wrap,
.hero__inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 228, 223, 0.85);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(21, 35, 29, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand {
  min-width: 208px;
}

.brand__mark {
  width: 42px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__wordmark {
  min-width: 0;
}

.brand__name {
  display: block;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
}

.brand__sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.15;
  text-transform: uppercase;
}

.header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.primary-nav ul,
.footer-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green-dark);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 40px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
}

.language-switcher__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher__link img {
  width: 21px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(21, 35, 29, 0.13);
}

.language-switcher__link.is-active {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(21, 35, 29, 0.08);
}

.account-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.account-link:hover,
.account-link:focus-visible,
.account-link.is-logged-in {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--green-soft);
}

.account-link:hover,
.account-link:focus-visible {
  transform: translateY(-1px);
}

.account-link__icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.account-link__icon::before,
.account-link__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.account-link__icon::before {
  top: 3px;
  width: 4px;
  height: 4px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.account-link__icon::after {
  bottom: 2px;
  width: 9px;
  height: 4px;
  border: 1.4px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px 8px 13px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cart-link:hover,
.cart-link:focus-visible {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.cart-link__icon {
  position: relative;
  width: 15px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 2px;
}

.cart-link__icon::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 3px;
  width: 7px;
  height: 7px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--white);
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button,
button,
input[type="submit"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wc-block-components-button:hover {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 10px 20px rgba(13, 76, 51, 0.18);
  transform: translateY(-1px);
}

.button--secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line-strong);
}

.button--secondary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-color: #eef2ef;
  background-image: url("assets/images/hero-ingredients.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(610px, calc(100% - 48px));
  padding: 62px 0;
}

.hero > .hero__content {
  width: min(610px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: 68px;
  font-weight: 850;
  line-height: 0.96;
  text-wrap: balance;
}

.hero__lead,
.hero__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
  font-weight: 520;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.hero__actions .button {
  min-height: 50px;
  padding-inline: 22px;
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--coral);
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.section {
  padding: 60px 0 76px;
}

.catalog-section {
  background: var(--canvas);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2,
.page-heading h1,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 820;
  line-height: 1.08;
}

.catalog-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(21, 35, 29, 0.05);
}

.catalog-search input {
  min-width: 0;
  height: 48px;
  padding: 10px 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.catalog-search input::placeholder {
  color: #87918c;
}

.catalog-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 71, 0.12);
}

.catalog-search button {
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--green);
  box-shadow: none;
  transform: none;
}

.catalog-search button:hover {
  background: var(--green-dark);
  box-shadow: none;
  transform: none;
}

.catalog-search button span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.catalog-search button span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.catalog-toolbar {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.catalog-select-wrap > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.catalog-select-wrap select {
  width: 270px;
  min-height: 44px;
  padding: 8px 38px 8px 13px;
  appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 3px 12px rgba(21, 35, 29, 0.04);
  font-size: 0.92rem;
  font-weight: 760;
  cursor: pointer;
}

.catalog-select-wrap::after {
  content: "\2304";
  position: absolute;
  right: 13px;
  top: 50%;
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-58%);
}

.catalog-tabs {
  display: none;
}

.catalog-tab,
button.catalog-tab {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 9px 11px;
  border: 0;
  border-radius: 4px;
  color: var(--ink-soft);
  background: var(--white);
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: left;
  transform: none;
}

.catalog-tab:hover,
button.catalog-tab:hover {
  color: var(--green-dark);
  background: #f0f5f2;
  box-shadow: none;
  transform: none;
}

.catalog-tab.is-active,
button.catalog-tab.is-active {
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: inset 3px 0 0 var(--green);
}

.catalog-tab__count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 4px;
  color: var(--muted);
  background: #f1f4f2;
  font-size: 0.68rem;
  line-height: 1;
}

.catalog-tab.is-active .catalog-tab__count {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.82);
}

.catalog-status {
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-align: right;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  position: relative;
  display: flex;
  width: auto !important;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  margin: 0 !important;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(21, 35, 29, 0.055);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce ul.products li.product:hover {
  border-color: #b8c9bf;
  box-shadow: 0 12px 28px rgba(21, 35, 29, 0.09);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product[hidden] {
  display: none !important;
}

.woocommerce ul.products li.product > a:first-child {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  color: var(--ink);
  text-decoration: none;
}

.product-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 190px;
  padding: 12px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--white);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 190px !important;
  padding: 12px;
  margin: 0 !important;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 6px;
  background: var(--white);
  transition: transform 180ms ease;
}

.product-media img,
.woocommerce ul.products li.product .product-media img {
  height: 100% !important;
  padding: 0;
  margin: 0 !important;
  border: 0;
}

.woocommerce ul.products li.product:hover .product-media img,
.woocommerce ul.products li.product:hover > a:first-child > img {
  transform: scale(1.025);
}

.product-card__body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px 6px 12px;
  border-top: 1px solid #edf1ee;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 46px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--coral);
  font-weight: 850;
}

.lin-product-mini-meta {
  min-height: 21px;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card-footer {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #e4ebe7;
  border-radius: 6px;
  background: #f6f8f7;
}

.product-card-price {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.product-card-price del {
  color: var(--muted);
  font-size: 0.72em;
  font-weight: 650;
}

.product-card-price ins {
  text-decoration: none;
}

.product-card-actions {
  display: flex;
  min-width: 0;
  min-height: 38px;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.product-quantity,
.preview-quantity {
  display: grid;
  grid-template-columns: 24px 30px 24px;
  align-items: center;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--white);
}

.product-quantity {
  flex: 0 0 80px;
}

.product-quantity button,
.product-quantity input,
.preview-quantity button,
.preview-quantity input {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
  transform: none;
  -moz-appearance: textfield;
}

.product-quantity button,
.preview-quantity button {
  color: var(--green-dark);
}

.product-quantity button:hover,
.preview-quantity button:hover {
  color: var(--white);
  background: var(--green);
  box-shadow: none;
  transform: none;
}

.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button,
.preview-quantity input::-webkit-outer-spin-button,
.preview-quantity input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.woocommerce ul.products li.product > .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product-card-actions .button {
  position: relative;
  width: 104px;
  min-height: 38px;
  padding: 7px 10px;
  margin: 0;
  border-radius: 5px;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.product-card-actions--single .button {
  width: 118px !important;
}

.product-card-actions.is-added .add_to_cart_button {
  color: transparent !important;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.product-card-actions.is-added .add_to_cart_button::before {
  content: attr(data-success-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font: inherit;
  white-space: nowrap;
}

.woocommerce ul.products li.product .add_to_cart_button.loading::after,
.woocommerce ul.products li.product .add_to_cart_button.added::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product a.added_to_cart {
  display: none !important;
}

.woocommerce span.onsale {
  top: 10px;
  right: auto;
  left: 10px;
  min-width: auto;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.7rem;
  line-height: 1.4;
}

.catalog-empty {
  display: grid;
  gap: 6px;
  place-items: center;
  min-height: 220px;
  padding: 34px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  align-items: center;
  margin-top: 30px;
}

.catalog-pagination button {
  min-width: 40px;
  min-height: 40px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 780;
  transform: none;
}

.catalog-pagination button:hover,
.catalog-pagination button.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: none;
  transform: none;
}

.catalog-pagination button:disabled {
  cursor: not-allowed;
  color: #9aa49f;
  background: var(--canvas-strong);
  border-color: var(--line);
}

.catalog-pagination__direction {
  min-width: 88px !important;
}

.catalog-pagination__ellipsis {
  min-width: 24px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  color: #dce8e0;
  background: #10251b;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 64px;
  padding: 54px 0 46px;
}

.footer-brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
}

.footer-brand small {
  display: block;
}

.footer-brand__logo {
  width: 188px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand small {
  color: #aebfb4;
  font-size: 0.76rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 820;
}

.site-footer p {
  max-width: 370px;
  color: #b8c8be;
  font-size: 0.86rem;
}

.footer-menu ul {
  display: grid;
  gap: 8px;
}

.footer-menu a {
  color: #bdcbc2;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--white);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0 20px;
  color: #9fb1a5;
  font-size: 0.76rem;
}

.content-page {
  min-height: 60vh;
  padding: 64px 0 88px;
  background: var(--paper);
}

.content-wrap {
  max-width: 920px;
}

.page-heading {
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.entry-content {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.2em;
  color: var(--ink);
  line-height: 1.25;
}

.entry-content a {
  color: var(--green-dark);
  font-weight: 700;
}

.page-lead {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 1.22rem;
  line-height: 1.65;
}

.page-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 54px;
  border-top: 1px solid var(--line);
}

.page-section {
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line);
}

.page-section h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.page-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 780px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.contact-consent {
  display: flex !important;
  grid-template-columns: none;
  gap: 9px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-weight: 650 !important;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.contact-form > button {
  width: fit-content;
  min-width: 150px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-notice {
  max-width: 780px;
  padding: 12px 14px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.contact-notice--success {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: #b7d1c1;
}

.contact-notice--error {
  color: var(--coral-dark);
  background: #fff0ed;
  border-color: #efc1b8;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.commerce-main,
.woocommerce-page main.commerce-main {
  width: min(var(--max), calc(100% - 48px));
  min-height: 60vh;
  margin: 0 auto;
  padding: 42px 0 82px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--green-dark);
}

.woocommerce-products-header {
  padding: 10px 0 30px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 8px 34px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--white);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.woocommerce div.product::before,
.woocommerce div.product::after {
  display: none;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce div.product div.images {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.woocommerce div.product div.images img {
  max-height: 610px;
  object-fit: contain;
  background: var(--white);
}

.woocommerce div.product div.summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 8px;
}

.woocommerce div.product .product_title {
  font-size: 42px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 18px 0;
  font-size: 1.7rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
}

.woocommerce div.product form.cart div.quantity {
  display: grid;
  grid-template-columns: 42px 64px 42px;
  width: auto;
  height: 48px;
  overflow: hidden;
  float: none;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
}

.woocommerce div.product form.cart .quantity .qty {
  width: 64px;
  min-width: 0;
  min-height: 46px;
  padding: 8px 4px;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  -moz-appearance: textfield;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.woocommerce div.product form.cart .lin-single-quantity-button {
  display: grid;
  width: 42px;
  min-width: 0;
  min-height: 46px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--green-dark);
  background: transparent;
  box-shadow: none;
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1;
  transform: none;
}

.woocommerce div.product form.cart .lin-single-quantity-button:hover,
.woocommerce div.product form.cart .lin-single-quantity-button:focus-visible {
  color: var(--white);
  background: var(--green);
  box-shadow: none;
  transform: none;
}

.woocommerce div.product form.cart .button {
  min-height: 48px;
  padding-inline: 24px;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button.alt {
  color: var(--white) !important;
  background: var(--green) !important;
  border-color: var(--green) !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button.alt:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

.lin-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 24px 0;
}

.lin-product-facts__item {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
}

.lin-product-facts__label,
.lin-product-facts__value {
  display: block;
}

.lin-product-facts__label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lin-product-facts__value {
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 22px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 8px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--coral);
  background: transparent;
}

.woocommerce table.shop_table,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce .woocommerce-customer-details address,
.wc-block-cart,
.wc-block-checkout {
  border-color: var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.woocommerce table.shop_table {
  border-collapse: separate;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
  border-color: var(--line);
}

.woocommerce-cart table.cart img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: var(--white);
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: min(100%, 480px);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 52px;
  font-size: 0.98rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 107, 71, 0.12);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 25px;
}

.woocommerce-checkout #customer_details {
  margin-bottom: 28px;
}

.woocommerce-checkout h3 {
  color: var(--ink);
}

.woocommerce-checkout-review-order {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
}

.woocommerce-checkout #payment {
  border-radius: var(--radius);
  background: var(--white);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--canvas);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--canvas);
}

.checkout-account-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid #cbded3;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--green-soft);
}

.checkout-account-notice__icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(23, 107, 71, 0.14);
}

.checkout-account-notice__icon::before,
.checkout-account-notice__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  border: 2px solid var(--green);
  transform: translateX(-50%);
}

.checkout-account-notice__icon::before {
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.checkout-account-notice__icon::after {
  bottom: 6px;
  width: 17px;
  height: 8px;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.checkout-account-notice strong {
  display: block;
  color: var(--ink);
}

.checkout-account-notice p {
  margin: 2px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.checkout-account-notice a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.checkout-account-notice a:hover,
.checkout-account-notice a:focus-visible {
  background: var(--green-dark);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--green);
  border-radius: var(--radius);
  background: var(--canvas);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--green);
}

.wc-block-components-button:not(.is-link) {
  color: var(--white);
  background: var(--green);
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border-radius: var(--radius) !important;
}

.wc-block-cart-items,
.wc-block-components-order-summary {
  border-color: var(--line) !important;
}

.woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--canvas);
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-MyAccount-navigation .is-active a {
  color: var(--white);
  background: var(--green);
}

.account-addresses {
  display: grid;
  gap: 18px;
}

.account-addresses__intro {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  overflow: hidden;
  padding: 21px 22px;
  border: 1px solid #cfe0d6;
  border-radius: calc(var(--radius) + 5px);
  background: linear-gradient(135deg, #f2f8f4 0%, #fbfcfb 100%);
}

.account-addresses__intro::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -48px;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: rgba(23, 107, 71, 0.055);
  pointer-events: none;
}

.account-addresses__intro-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 7px 20px rgba(21, 35, 29, 0.08), 0 0 0 1px rgba(23, 107, 71, 0.11);
}

.account-addresses__intro-icon::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 18px;
  width: 15px;
  height: 19px;
  border: 2px solid var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.account-addresses__intro-icon::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 24px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.account-addresses__intro > div {
  position: relative;
  z-index: 1;
}

.account-addresses__eyebrow,
.account-address-card__eyebrow {
  margin: 0 0 4px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-addresses__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.account-addresses__intro p:last-child {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.account-addresses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.woocommerce-account .account-address-card {
  position: relative;
  display: flex;
  min-height: 340px;
  overflow: hidden;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce-account .account-address-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--green);
}

.woocommerce-account .account-address-card--shipping::before {
  background: var(--coral);
}

.woocommerce-account .account-address-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.account-address-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.account-address-card__icon,
.account-address-form__intro-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--green-soft);
}

.account-address-card--shipping .account-address-card__icon,
.account-address-form__intro-icon--shipping {
  background: #fff0eb;
}

.account-address-card--billing .account-address-card__icon::before,
.account-address-form__intro-icon--billing::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 11px;
  width: 24px;
  height: 17px;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.account-address-card--billing .account-address-card__icon::after,
.account-address-form__intro-icon--billing::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 13px;
  width: 24px;
  height: 3px;
  background: var(--green);
}

.account-address-card--shipping .account-address-card__icon::before,
.account-address-form__intro-icon--shipping::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 16px;
  height: 20px;
  border: 2px solid var(--coral);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.account-address-card--shipping .account-address-card__icon::after,
.account-address-form__intro-icon--shipping::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 21px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.account-address-card__status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--canvas);
  font-size: 0.72rem;
  font-weight: 800;
}

.account-address-card__status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aab4ae;
}

.account-address-card.has-address .account-address-card__status {
  color: var(--green-dark);
  background: var(--green-soft);
}

.account-address-card.has-address .account-address-card__status > span {
  background: var(--green);
}

.account-address-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.account-address-card__content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.22;
}

.account-address-card__description {
  min-height: 44px;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.account-address-card__sync {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  margin: 0 0 13px;
  padding: 12px;
  border: 1px solid #cfe0d6;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-soft), #f7faf8);
}

.account-address-card__sync-copy strong,
.account-address-card__sync-copy small {
  display: block;
}

.account-address-card__sync-copy strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.35;
}

.account-address-card__sync-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.woocommerce-account .account-address-card__sync-button {
  display: inline-flex;
  min-width: 79px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.woocommerce-account .account-address-card__sync-button:hover,
.woocommerce-account .account-address-card__sync-button:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--white);
  outline: 0;
}

.woocommerce-account .account-address-card__sync-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 107, 71, 0.12);
}

.woocommerce-account .account-address-card__sync-button.is-active {
  border-color: var(--green);
  color: var(--green-dark);
}

.woocommerce-account .account-address-card__sync-button:disabled {
  border-color: var(--line);
  color: #9aa49f;
  background: var(--canvas);
  cursor: not-allowed;
  opacity: 0.72;
}

.account-address-card__sync-track {
  position: relative;
  width: 31px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #aab4ae;
  transition: background 150ms ease;
}

.account-address-card__sync-track > span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(21, 35, 29, 0.24);
  transition: transform 150ms ease;
}

.account-address-card__sync-button.is-active .account-address-card__sync-track {
  background: var(--green);
}

.account-address-card__sync-button.is-active .account-address-card__sync-track > span {
  transform: translateX(13px);
}

.account-address-card__sync-hint {
  margin: -5px 0 12px;
  color: var(--coral-dark);
  font-size: 0.68rem;
  line-height: 1.45;
}

.woocommerce-account .account-address-card__address {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--canvas);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.6;
}

.woocommerce-account .account-address-card.is-empty .account-address-card__address {
  border-style: dashed;
  background: #fbfcfb;
}

.account-address-card__address strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.account-address-card__address > span:not(.account-address-card__formatted) {
  color: var(--muted);
}

.account-address-card__formatted {
  display: block;
}

.account-address-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 17px;
  padding: 10px 15px;
  border: 1px solid var(--green);
  border-radius: 10px;
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.account-address-card--shipping .account-address-card__action {
  border-color: var(--coral);
  background: var(--coral);
}

.account-address-card__action:hover,
.account-address-card__action:focus-visible {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.account-address-card--shipping .account-address-card__action:hover,
.account-address-card--shipping .account-address-card__action:focus-visible {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.account-address-card__action-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  line-height: 1;
}

.account-addresses__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.account-addresses__note > span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.7rem;
  font-weight: 900;
}

.woocommerce-account .woocommerce-MyAccount-content form > h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
}

.woocommerce-account .woocommerce-address-fields {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.account-address-form__intro {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid #cfe0d6;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-soft), #f8faf9);
}

.account-address-form__intro--shipping {
  border-color: #f0d0c6;
  background: linear-gradient(135deg, #fff0eb, #fffaf8);
}

.account-address-form__intro strong,
.account-address-form__intro span:not(.account-address-form__intro-icon) {
  display: block;
}

.account-address-form__intro strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.9rem;
}

.account-address-form__intro span:not(.account-address-form__intro-icon) {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row {
  grid-column: 1 / -1;
  width: auto;
  padding: 0;
  margin: 0;
  float: none;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-first {
  grid-column: 1;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-last {
  grid-column: 2;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper label {
  display: block;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .required {
  color: var(--coral);
}

.woocommerce-account .woocommerce-address-fields__field-wrapper input.input-text,
.woocommerce-account .woocommerce-address-fields__field-wrapper select,
.woocommerce-account .woocommerce-address-fields__field-wrapper .select2-selection--single {
  min-height: 50px;
  border-radius: 10px;
}

.woocommerce-account .woocommerce-address-fields__field-wrapper .select2-selection--single {
  display: flex;
  align-items: center;
}

.woocommerce-account
  .woocommerce-address-fields__field-wrapper
  .select2-selection--single
  .select2-selection__arrow {
  top: 11px;
  right: 7px;
}

.woocommerce-account .woocommerce-address-fields > p:last-child {
  margin: 22px 0 0;
}

.woocommerce-account .woocommerce-address-fields button[name="save_address"] {
  min-width: 170px;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 850;
}

.account-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 26px;
  padding: 26px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: var(--green-dark);
}

.account-benefits__eyebrow {
  margin: 0 0 5px;
  color: #b9ddca;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-benefits h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.account-benefits p:not(.account-benefits__eyebrow) {
  margin: 10px 0 0;
}

.account-benefits ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.account-benefits li {
  position: relative;
  padding-left: 25px;
}

.account-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b9ddca;
  font-weight: 900;
}

.woocommerce-account .u-columns.col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce-account .u-columns.col2-set::before,
.woocommerce-account .u-columns.col2-set::after {
  display: none;
}

.woocommerce-account .u-columns.col2-set .u-column1,
.woocommerce-account .u-columns.col2-set .u-column2 {
  width: auto;
  float: none;
}

.woocommerce-account .u-columns.col2-set h2 {
  margin-top: 0;
}

.woocommerce-password-strength.lin-password-rule__status {
  display: block;
  margin: 8px 0 0;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
}

.woocommerce-password-strength.lin-password-rule__status[hidden] {
  display: none;
}

.woocommerce-password-strength.lin-password-rule__status.is-invalid {
  border-color: #e7b7a5;
  color: #74311e;
  background: #fff0e9;
}

.woocommerce-password-strength.lin-password-rule__status.is-valid {
  border-color: #9fcbb5;
  color: #155a3b;
  background: var(--green-soft);
}

.woocommerce-password-hint.lin-password-rule__hint {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.wc-block-components-password-strength.lin-password-rule--valid
  .wc-block-components-password-strength__meter {
  accent-color: var(--green);
}

.wc-block-components-password-strength.lin-password-rule--invalid
  .wc-block-components-password-strength__meter {
  accent-color: var(--coral);
}

.account-shortcuts {
  clear: both;
  padding-top: 18px;
}

.account-shortcuts h2 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.account-shortcuts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-shortcuts__grid a {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--canvas);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.account-shortcuts__grid a:hover,
.account-shortcuts__grid a:focus-visible {
  border-color: var(--green);
  background: var(--green-soft);
  transform: translateY(-1px);
}

.account-shortcuts__grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.preview-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 2px 9px;
}

.preview-buy-row .price {
  color: var(--coral);
  font-size: 1.18rem;
  font-weight: 850;
}

.preview-quantity {
  width: 100px;
}

.preview-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background: rgba(9, 24, 17, 0);
  transition: background 180ms ease;
}

.is-cart-open .preview-cart-overlay {
  pointer-events: auto;
  background: rgba(9, 24, 17, 0.38);
}

.preview-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, calc(100vw - 16px));
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px rgba(21, 35, 29, 0.2);
  transform: translateX(105%);
  transition: transform 200ms ease;
}

.is-cart-open .preview-cart-drawer {
  transform: translateX(0);
}

.preview-cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.preview-cart-drawer__header h2 {
  margin: 0;
  font-size: 1.55rem;
}

.preview-cart-drawer__close {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  font-size: 1.3rem;
}

.preview-cart-items {
  overflow: auto;
  padding: 18px;
}

.preview-cart-empty {
  display: grid;
  gap: 6px;
  padding: 28px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--canvas);
  text-align: center;
}

.preview-cart-empty strong {
  color: var(--ink);
}

.preview-cart-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.preview-cart-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.preview-cart-item h3,
.checkout-summary-item h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.3;
}

.preview-cart-item p,
.checkout-summary-item p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.preview-cart-item__meta,
.preview-cart-item__actions,
.preview-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-cart-item__meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.preview-quantity--cart {
  width: 92px;
  height: 34px;
}

.preview-quantity--cart button,
.preview-quantity--cart input {
  min-height: 32px;
}

.preview-cart-remove {
  min-height: 0;
  padding: 0;
  color: var(--coral-dark);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.76rem;
  text-decoration: underline;
  transform: none;
}

.preview-cart-drawer__footer {
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.preview-cart-total {
  color: var(--muted);
  font-weight: 800;
}

.preview-cart-total strong {
  color: var(--coral);
  font-size: 1.18rem;
}

.preview-cart-checkout {
  width: 100%;
}

.checkout-hero {
  padding: 46px 0 22px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.checkout-hero h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding: 30px 0 76px;
}

.checkout-form,
.checkout-summary {
  display: grid;
  gap: 14px;
  align-content: start;
}

.checkout-panel,
.checkout-summary {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.checkout-panel h2,
.checkout-summary h2 {
  margin: 0 0 14px;
  font-size: 1.12rem;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-field-grid label,
.checkout-panel label:not(.checkout-option) {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.checkout-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
}

.checkout-option + .checkout-option {
  margin-top: 10px;
}

.checkout-option strong,
.checkout-option small {
  display: block;
}

.checkout-option small {
  margin-top: 2px;
  color: var(--muted);
}

.checkout-payment-box {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--canvas);
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.checkout-summary__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary__header h2 {
  margin: 0;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 10px;
  align-items: center;
}

.checkout-summary-item img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.checkout-summary-lines {
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.checkout-summary-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 750;
}

.checkout-summary-lines strong {
  color: var(--ink);
}

.checkout-summary-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.checkout-summary-total strong {
  color: var(--coral);
  font-size: 1.25rem;
}

.checkout-submit {
  width: 100%;
  min-height: 50px;
}

.checkout-form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

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

  .primary-nav ul {
    gap: 20px;
  }

  .site-header__inner {
    gap: 24px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 38px;
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .is-menu-open .header-panel {
    display: grid;
  }

  .primary-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
  }

  .primary-nav a {
    min-height: 42px;
    padding: 0 8px;
  }

  .header-actions {
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .hero,
  .hero__inner {
    min-height: 480px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .woocommerce div.product div.summary {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .account-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .account-shortcuts__grid {
    grid-template-columns: 1fr;
  }

  .account-addresses__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header__inner,
  .site-footer__inner,
  .section-inner,
  .content-wrap,
  .hero__inner,
  .commerce-main,
  .woocommerce-page main.commerce-main {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 450px;
    background-position: 62% center;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.48);
  }

  .hero__inner {
    min-height: 450px;
  }

  .hero__content,
  .hero > .hero__content {
    width: min(520px, calc(100% - 28px));
    padding: 48px 0;
  }

  .hero > .hero__content {
    margin-left: 14px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead,
  .hero__content > p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .section {
    padding: 46px 0 60px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2,
  .page-heading h1,
  .woocommerce-products-header__title,
  .woocommerce div.product .product_title {
    font-size: 36px;
  }

  .catalog-search {
    width: 100%;
  }

  .catalog-tabs {
    display: none;
  }

  .catalog-toolbar {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    padding: 12px 0;
  }

  .catalog-select-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-select-wrap span {
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .catalog-select-wrap select {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    min-height: 42px;
    padding: 8px 36px 8px 11px;
    font-size: 0.92rem;
  }

  .catalog-status {
    text-align: left;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card-actions {
    gap: 5px;
    margin: 0;
  }

  .product-quantity {
    flex-basis: 74px;
    grid-template-columns: 22px 28px 22px;
  }

  .woocommerce ul.products li.product > .button,
  .woocommerce ul.products li.product .add_to_cart_button,
  .woocommerce ul.products li.product .product-card-actions .button {
    width: 96px;
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .content-page {
    padding: 46px 0 64px;
  }

  .page-sections {
    grid-template-columns: 1fr;
  }

  .commerce-main,
  .woocommerce-page main.commerce-main {
    padding: 30px 0 64px;
  }

  .account-addresses__intro {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .account-addresses__intro-icon {
    width: 48px;
    height: 48px;
  }

  .account-addresses__intro-icon::before {
    top: 11px;
    left: 16px;
  }

  .account-addresses__intro-icon::after {
    top: 17px;
    left: 22px;
  }

  .woocommerce-account .account-address-card {
    min-height: 0;
    padding: 20px;
  }

  .account-address-card__description {
    min-height: 0;
  }

  .woocommerce-account .woocommerce-address-fields {
    padding: 18px;
  }

  .woocommerce-account .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-first,
  .woocommerce-account .woocommerce-address-fields__field-wrapper .form-row-last {
    grid-column: 1;
  }

  .woocommerce-account .woocommerce-address-fields button[name="save_address"] {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 34px;
    height: 41px;
  }

  .brand__sub {
    display: none;
  }

  .header-panel {
    right: 10px;
    left: 10px;
  }

  .language-switcher__link {
    padding-inline: 7px;
  }

  .cart-link__label {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 430px;
  }

  .hero {
    background-position: 66% center;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.6);
  }

  .hero h1 {
    max-width: 330px;
    font-size: 39px;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .button {
    min-height: 46px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product a img,
  .product-media {
    height: 200px !important;
  }

  .product-card-actions {
    justify-content: flex-end;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom .section-inner {
    flex-direction: column;
    gap: 4px;
  }

  .catalog-pagination__direction {
    min-width: 40px !important;
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lin-product-facts,
  .checkout-field-grid,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .checkout-field-wide,
  .contact-form__wide {
    grid-column: auto;
  }

  .checkout-summary-item {
    grid-template-columns: 54px 1fr;
  }

  .checkout-summary-item strong {
    grid-column: 2;
  }

  .checkout-account-notice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkout-account-notice a {
    grid-column: 2;
    justify-self: start;
  }

  .woocommerce-account .u-columns.col2-set {
    grid-template-columns: 1fr;
  }
}

/* Account center — shared visual system. */
.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  width: 29%;
  margin-bottom: 48px;
}

.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  width: 68%;
}

.account-navigation {
  display: grid;
  gap: 12px;
}

.account-navigation__profile {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid #cfe0d6;
  border-radius: calc(var(--radius) + 5px);
  background: linear-gradient(145deg, #edf6f0, #fbfcfb);
  box-shadow: 0 7px 22px rgba(21, 35, 29, 0.055);
}

.account-navigation__avatar,
.account-dashboard__avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  text-transform: uppercase;
}

.account-navigation__avatar {
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(23, 107, 71, 0.09);
  font-size: 1.05rem;
}

.account-navigation__identity {
  min-width: 0;
}

.account-navigation__identity > span,
.account-navigation__identity strong,
.account-navigation__identity small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-navigation__identity > span {
  color: var(--coral-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.account-navigation__identity strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 0.95rem;
}

.account-navigation__identity small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
}

.account-navigation ul {
  gap: 7px;
}

.account-navigation li a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 53px;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--canvas);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.account-navigation li a:hover,
.account-navigation li a:focus-visible {
  border-color: var(--line-strong);
  color: var(--green-dark);
  background: var(--green-soft);
  transform: translateX(2px);
}

.account-navigation li.is-active a {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  box-shadow: 0 7px 18px rgba(23, 107, 71, 0.17);
}

.account-navigation__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(23, 107, 71, 0.08);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.account-navigation__icon::before {
  content: "•";
}

.account-navigation__icon--dashboard::before {
  content: "⌂";
}

.account-navigation__icon--orders::before {
  content: "≡";
  font-size: 1.3rem;
}

.account-navigation__icon--edit-address::before {
  content: "⌖";
}

.account-navigation__icon--payment-methods::before {
  content: "▰";
  font-size: 0.92rem;
}

.account-navigation__icon--edit-account::before {
  content: "◎";
}

.account-navigation__icon--customer-logout::before {
  content: "↗";
}

.account-navigation li.is-active .account-navigation__icon {
  color: var(--green-dark);
}

.account-navigation__arrow {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
}

.account-navigation li.is-active .account-navigation__arrow {
  color: rgba(255, 255, 255, 0.76);
}

.account-navigation li.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 3px;
}

.account-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover,
.account-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:focus-visible {
  border-color: #efc7bb;
  color: var(--coral-dark);
  background: #fff1ed;
}

.account-section-header {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 21px 22px;
  border: 1px solid #cfe0d6;
  border-radius: calc(var(--radius) + 5px);
  background: linear-gradient(135deg, #f2f8f4 0%, #fbfcfb 100%);
}

.account-section-header::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -48px;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: rgba(23, 107, 71, 0.055);
  pointer-events: none;
}

.account-section-header__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  box-shadow: 0 7px 20px rgba(21, 35, 29, 0.08), 0 0 0 1px rgba(23, 107, 71, 0.11);
  font-size: 1.25rem;
  font-weight: 900;
}

.account-section-header__icon::before {
  content: "•";
}

.account-section-header--orders .account-section-header__icon::before {
  content: "≡";
  font-size: 1.55rem;
}

.account-section-header--payment .account-section-header__icon::before {
  content: "▰";
}

.account-section-header--profile .account-section-header__icon::before {
  content: "◎";
}

.account-section-header--security .account-section-header__icon::before {
  content: "◇";
}

.account-section-header > div {
  position: relative;
  z-index: 1;
}

.account-section-header__eyebrow {
  margin: 0 0 4px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-section-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.account-section-header__description {
  max-width: 640px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.account-dashboard {
  display: grid;
  gap: 18px;
}

.account-dashboard__hero {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  padding: 26px;
  border-radius: calc(var(--radius) + 7px);
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.11) 0 92px, transparent 93px),
    linear-gradient(135deg, var(--green-dark), #176b47);
  box-shadow: 0 15px 34px rgba(13, 76, 51, 0.16);
}

.account-dashboard__avatar {
  width: 62px;
  height: 62px;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.11);
  font-size: 1.35rem;
}

.account-dashboard__eyebrow {
  margin: 0 0 3px;
  color: #b9ddca;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-dashboard__hero h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.account-dashboard__hero p:last-child {
  max-width: 540px;
  margin: 7px 0 0;
  font-size: 0.87rem;
  line-height: 1.55;
}

.account-dashboard__signout {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.account-dashboard__signout:hover,
.account-dashboard__signout:focus-visible {
  color: var(--green-dark);
  background: var(--white);
}

.account-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-dashboard__stats > div {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0 11px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(21, 35, 29, 0.045);
}

.account-dashboard__stat-icon {
  display: grid;
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1.1rem;
  font-weight: 900;
}

.account-dashboard__stat-icon::before {
  content: "•";
}

.account-dashboard__stat-icon--orders::before {
  content: "≡";
  font-size: 1.35rem;
}

.account-dashboard__stat-icon--addresses::before {
  content: "⌖";
}

.account-dashboard__stat-icon--payment::before {
  content: "▰";
  font-size: 0.9rem;
}

.account-dashboard__stats strong {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.1;
}

.account-dashboard__stats div > span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.account-shortcuts {
  padding-top: 7px;
}

.account-shortcuts__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.account-shortcuts__heading p {
  margin: 0 0 2px;
  color: var(--coral-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-shortcuts__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
}

.account-shortcuts__heading > span {
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.account-shortcuts__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.account-shortcuts__grid .account-shortcut {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 4px 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 7px 21px rgba(21, 35, 29, 0.05);
}

.account-shortcuts__grid .account-shortcut:hover,
.account-shortcuts__grid .account-shortcut:focus-visible {
  border-color: #a9cabb;
  background: #f9fcfa;
  box-shadow: 0 12px 27px rgba(21, 35, 29, 0.085);
  transform: translateY(-2px);
}

.account-shortcut__icon {
  display: grid;
  grid-row: 1 / 5;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1.05rem;
  font-weight: 900;
}

.account-shortcut__icon::before {
  content: "•";
}

.account-shortcut--orders .account-shortcut__icon::before {
  content: "≡";
  font-size: 1.4rem;
}

.account-shortcut--addresses .account-shortcut__icon::before {
  content: "⌖";
}

.account-shortcut--payment .account-shortcut__icon::before {
  content: "▰";
  font-size: 0.9rem;
}

.account-shortcut--profile .account-shortcut__icon::before {
  content: "◎";
}

.account-shortcut strong {
  font-size: 0.98rem;
}

.account-shortcuts__grid .account-shortcut__copy {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.account-shortcuts__grid .account-shortcut__link {
  align-self: end;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 850;
}

.account-orders-list,
.account-payment-methods {
  display: grid;
  gap: 14px;
}

.account-order-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 7px 22px rgba(21, 35, 29, 0.055);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-order-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 13px 30px rgba(21, 35, 29, 0.09);
  transform: translateY(-1px);
}

.account-order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f8faf9, var(--white));
}

.account-order-card__header > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.account-order-card__header > div > span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.account-order-card__header a {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.account-order-card__header a:hover,
.account-order-card__header a:focus-visible {
  color: var(--green);
}

.account-order-card__status,
.account-order-detail-hero__status {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.account-order-card--pending .account-order-card__status,
.account-order-card--on-hold .account-order-card__status,
.account-order-detail-hero--pending .account-order-detail-hero__status,
.account-order-detail-hero--on-hold .account-order-detail-hero__status {
  color: #704e0b;
  background: #fff4d9;
}

.account-order-card--cancelled .account-order-card__status,
.account-order-card--failed .account-order-card__status,
.account-order-detail-hero--cancelled .account-order-detail-hero__status,
.account-order-detail-hero--failed .account-order-detail-hero__status {
  color: #7b3024;
  background: #ffe9e2;
}

.account-order-card--refunded .account-order-card__status,
.account-order-detail-hero--refunded .account-order-detail-hero__status {
  color: #40504a;
  background: var(--canvas-strong);
}

.account-order-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 18px;
  background: var(--line);
}

.account-order-card__meta > div {
  min-width: 0;
  padding: 11px 13px;
  background: var(--white);
}

.account-order-card__meta span,
.account-order-card__meta strong {
  display: block;
}

.account-order-card__meta span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.account-order-card__meta strong {
  overflow: hidden;
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.86rem;
  text-overflow: ellipsis;
}

.account-order-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 18px 17px;
}

.account-order-card__actions .button,
.account-payment-card footer .button {
  min-height: 38px;
  padding: 7px 13px;
  border-radius: 9px;
  font-size: 0.72rem;
}

.account-order-card__actions .button:not(.view),
.account-payment-card footer .button.delete {
  color: var(--ink-soft) !important;
  background: var(--canvas) !important;
  border-color: var(--line) !important;
}

.account-orders-pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
}

.account-empty-state {
  display: grid;
  justify-items: center;
  padding: 38px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(145deg, #fbfcfb, var(--canvas));
  text-align: center;
}

.account-empty-state__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1.35rem;
  font-weight: 900;
}

.account-empty-state__icon::before {
  content: "•";
}

.account-empty-state--orders .account-empty-state__icon::before {
  content: "≡";
  font-size: 1.7rem;
}

.account-empty-state--payment .account-empty-state__icon::before {
  content: "▰";
}

.account-empty-state h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.account-empty-state p {
  max-width: 460px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.account-payment-methods {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-payment-card {
  position: relative;
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, var(--white), #f8faf9);
  box-shadow: 0 7px 22px rgba(21, 35, 29, 0.055);
}

.account-payment-card.is-default {
  border-color: #a9cabb;
}

.account-payment-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-payment-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1rem;
  font-weight: 900;
}

.account-payment-card__icon::before {
  content: "▰";
}

.account-payment-card__default {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.65rem;
  font-weight: 850;
}

.account-payment-card__default::before {
  content: "✓";
}

.account-payment-card__body {
  display: grid;
  gap: 2px;
  margin: 17px 0;
}

.account-payment-card__body p {
  margin: 0;
  color: var(--coral-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-payment-card__body h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.account-payment-card__body strong {
  color: var(--ink-soft);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.account-payment-card__body span {
  color: var(--muted);
  font-size: 0.72rem;
}

.account-payment-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.account-payment-methods__add {
  display: inline-flex !important;
  min-height: 47px;
  align-items: center;
  gap: 8px;
  margin-top: 16px !important;
  border-radius: 10px !important;
}

.account-payment-methods__add > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  line-height: 1;
}

.account-details-form,
.account-form-card,
.account-add-payment-card {
  display: grid;
  gap: 16px;
}

.account-form-card,
.account-add-payment-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 7px 22px rgba(21, 35, 29, 0.055);
}

.account-form-card__header {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.account-form-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 11px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1.1rem;
  font-weight: 900;
}

.account-form-card--identity .account-form-card__icon::before {
  content: "◎";
}

.account-form-card--security .account-form-card__icon {
  color: var(--coral-dark);
  background: #fff0eb;
}

.account-form-card--security .account-form-card__icon::before {
  content: "◇";
}

.account-form-card__header p {
  margin: 0;
  color: var(--coral-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.account-form-card__header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
}

.account-form-card__header div > span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
}

.account-form-grid .form-row {
  width: auto;
  padding: 0;
  margin: 0;
  float: none;
}

.account-form-grid .form-row-wide,
.account-form-grid--single .form-row {
  grid-column: 1 / -1;
}

.account-form-grid label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 800;
}

.account-form-grid input.input-text {
  min-height: 50px;
  border-radius: 10px;
}

.account-form-field-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.account-details-form__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.account-details-form__actions .button {
  min-width: 165px;
  min-height: 48px;
  border-radius: 10px;
}

.account-payment-security-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid #cfe0d6;
  border-radius: 11px;
  background: var(--green-soft);
}

.account-payment-security-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.account-payment-security-note > span::before {
  content: "✓";
}

.account-payment-security-note p,
.account-payment-security-note strong,
.account-payment-security-note small {
  display: block;
  margin: 0;
}

.account-payment-security-note strong {
  color: var(--ink);
  font-size: 0.83rem;
}

.account-payment-security-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.account-add-payment-card #payment {
  padding: 0;
  background: transparent;
}

.account-add-payment-card #payment ul.payment_methods {
  padding: 0;
  border: 0;
}

.account-add-payment-card #payment ul.payment_methods > li {
  overflow: hidden;
  margin: 0 0 11px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--canvas);
}

.account-add-payment-card #payment ul.payment_methods > li > input {
  margin-left: 14px;
}

.account-add-payment-card #payment ul.payment_methods > li > label {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 11px 14px 11px 6px;
  color: var(--ink);
  font-weight: 800;
}

.account-add-payment-card #payment div.payment_box {
  margin: 0;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--white);
}

.account-add-payment-card #payment div.payment_box::before {
  display: none;
}

.account-add-payment-card__actions {
  margin: 0 !important;
  padding: 4px 0 0 !important;
}

.account-add-payment-card__actions .button {
  min-height: 48px;
  border-radius: 10px;
}

.account-order-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.account-order-back:hover,
.account-order-back:focus-visible {
  color: var(--green);
}

.account-order-detail-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 19px;
  padding: 23px;
  border: 1px solid #cfe0d6;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1f8f4, var(--white));
}

.account-order-detail-hero p {
  margin: 0;
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.account-order-detail-hero h2 {
  margin: 1px 0;
  color: var(--ink);
  font-size: 1.55rem;
}

.account-order-detail-hero div > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.account-order-updates {
  margin-bottom: 19px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.account-order-updates h2,
.woocommerce-account .woocommerce-order-details__title,
.woocommerce-account .woocommerce-column__title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.12rem;
}

.account-order-updates ol {
  display: grid;
  gap: 12px;
  padding: 0 0 0 19px;
  margin: 0;
  border-left: 2px solid var(--green-soft);
  list-style: none;
}

.account-order-updates li {
  position: relative;
}

.account-order-updates li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -25px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.account-order-updates .meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.account-order-updates .description p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.woocommerce-account .woocommerce-order-details,
.woocommerce-account .woocommerce-customer-details {
  margin-top: 19px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(21, 35, 29, 0.045);
}

.woocommerce-account .woocommerce-order-details table.shop_table {
  margin-bottom: 0;
  border-radius: 10px;
}

.woocommerce-account .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.woocommerce-account .woocommerce-customer-details .woocommerce-column {
  width: auto;
  padding: 0;
  margin: 0;
  float: none;
}

.woocommerce-account .woocommerce-customer-details address {
  min-height: 100%;
  padding: 16px;
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--canvas);
  font-style: normal;
}

.woocommerce-account:not(.logged-in) .account-benefits {
  border-radius: 15px;
  background:
    radial-gradient(circle at 94% 0, rgba(255, 255, 255, 0.09) 0 115px, transparent 116px),
    linear-gradient(135deg, var(--green-dark), #176b47);
  box-shadow: 0 15px 34px rgba(13, 76, 51, 0.15);
}

.woocommerce-account:not(.logged-in) .u-columns.col2-set {
  align-items: start;
}

.woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column1,
.woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column2 {
  position: relative;
  overflow: hidden;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(21, 35, 29, 0.06);
}

.woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column1::before,
.woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--green);
}

.woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column2::before {
  background: var(--coral);
}

.woocommerce-account:not(.logged-in) .u-columns.col2-set h2 {
  margin: 5px 0 16px;
  color: var(--ink);
  font-size: 1.25rem;
}

.woocommerce-account:not(.logged-in) form.login,
.woocommerce-account:not(.logged-in) form.register {
  padding: 0;
  margin: 0;
  border: 0;
}

.woocommerce-account:not(.logged-in) form.login .form-row,
.woocommerce-account:not(.logged-in) form.register .form-row {
  padding: 0;
  margin: 0 0 14px;
}

.woocommerce-account:not(.logged-in) form.login label,
.woocommerce-account:not(.logged-in) form.register label {
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 800;
}

.woocommerce-account:not(.logged-in) form.login input.input-text,
.woocommerce-account:not(.logged-in) form.register input.input-text {
  min-height: 50px;
  border-radius: 10px;
}

.woocommerce-account:not(.logged-in) form.login .button,
.woocommerce-account:not(.logged-in) form.register .button {
  min-height: 46px;
  border-radius: 10px;
}

.woocommerce-account .lost_reset_password,
.woocommerce-account .woocommerce-form-login {
  max-width: 660px;
}

.woocommerce-account .lost_reset_password {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(21, 35, 29, 0.06);
}

.woocommerce-account .lost_reset_password > p:first-child {
  margin-top: 0;
  color: var(--muted);
}

.woocommerce-account .lost_reset_password .form-row {
  width: 100%;
  padding: 0;
}

.woocommerce-account .lost_reset_password input.input-text {
  min-height: 50px;
  border-radius: 10px;
}

.woocommerce-account .lost_reset_password .button {
  min-height: 46px;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 31%;
  }

  .logged-in.woocommerce-account .woocommerce-MyAccount-content {
    width: 66%;
  }

  .account-dashboard__hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .account-dashboard__signout {
    grid-column: 2;
    justify-self: start;
  }

  .account-dashboard__stats {
    grid-template-columns: 1fr;
  }

  .account-payment-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .logged-in.woocommerce-account .woocommerce-MyAccount-navigation,
  .logged-in.woocommerce-account .woocommerce-MyAccount-content {
    position: static;
    width: 100%;
    float: none;
  }

  .logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 24px;
  }

  .account-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-navigation li.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0;
  }

  .account-navigation li a {
    min-height: 50px;
  }

  .account-section-header {
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .account-section-header__icon {
    width: 48px;
    height: 48px;
  }

  .account-dashboard__hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .account-dashboard__signout {
    grid-column: 1;
  }

  .account-shortcuts__heading {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .account-shortcuts__heading > span {
    text-align: left;
  }

  .account-shortcuts__grid {
    grid-template-columns: 1fr;
  }

  .account-order-card__meta {
    grid-template-columns: 1fr;
  }

  .account-order-card__header,
  .account-order-detail-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-form-grid {
    grid-template-columns: 1fr;
  }

  .account-form-grid .form-row,
  .account-form-grid .form-row-wide {
    grid-column: 1;
  }

  .account-details-form__actions .button,
  .account-payment-methods__add,
  .account-add-payment-card__actions .button {
    width: 100%;
  }

  .woocommerce-account .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .account-address-card__sync {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .account-address-card__sync-button {
    justify-self: start;
  }

  .account-navigation ul {
    grid-template-columns: 1fr;
  }

  .account-navigation__profile,
  .account-order-card__header,
  .account-order-card__meta,
  .account-form-card,
  .account-add-payment-card,
  .account-order-updates,
  .woocommerce-account .woocommerce-order-details,
  .woocommerce-account .woocommerce-customer-details {
    padding-inline: 16px;
  }

  .account-dashboard__stats > div {
    padding: 13px;
  }

  .account-empty-state {
    padding: 31px 18px;
  }

  .woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column1,
  .woocommerce-account:not(.logged-in) .u-columns.col2-set > .u-column2 {
    padding: 20px;
  }
}
