/*
Theme Name: PowJoy
Theme URI: https://pawjoy.com/
Author: PowJoy
Description: A warm, playful WooCommerce theme for the PowJoy dog toy store.
Version: 1.0.7
Text Domain: powjoy
*/

:root {
  --ink: #243228;
  --muted: #647067;
  --cream: #fffaf0;
  --cream-2: #f7efdf;
  --sage: #9dbb9b;
  --sage-dark: #54715b;
  --orange: #ef8f55;
  --orange-dark: #c96034;
  --yellow: #f2cb67;
  --white: #ffffff;
  --line: rgba(36, 50, 40, 0.14);
  --shadow: 0 18px 55px rgba(70, 76, 59, 0.12);
  --radius: 28px;
  --content: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.screen-reader-text, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--white);
}
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--soft { background: var(--cream-2); }
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-heading {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.section-copy { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}
.text-link { color: var(--sage-dark); font-weight: 800; border-bottom: 1px solid currentColor; }
.button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 10px 24px rgba(201, 96, 52, 0.22);
}
.button--light { background: var(--white); color: var(--ink) !important; }
.button--outline { border: 1px solid rgba(255,255,255,.55); background: transparent; }

/* Header */
.announcement {
  padding: 8px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand-mark { position: relative; width: 31px; height: 29px; flex: 0 0 auto; }
.brand-mark span { position: absolute; display: block; border-radius: 50%; background: var(--orange); }
.brand-mark span:nth-child(1) { width: 9px; height: 11px; left: 1px; top: 4px; transform: rotate(-25deg); }
.brand-mark span:nth-child(2) { width: 9px; height: 11px; left: 11px; top: 0; }
.brand-mark span:nth-child(3) { width: 9px; height: 11px; right: 0; top: 4px; transform: rotate(25deg); }
.brand-mark span:nth-child(4) { width: 20px; height: 17px; left: 6px; bottom: 0; border-radius: 52% 52% 44% 44%; }
.primary-menu, .footer-menu { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.primary-menu { justify-content: center; }
.primary-menu a { position: relative; font-size: 0.91rem; font-weight: 750; }
.primary-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}
.primary-menu a:hover::after, .primary-menu .current-menu-item a::after { right: 0; }
.site-tools { display: flex; align-items: center; gap: 12px; }
.tool-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  font-size: .78rem;
}
.tool-chip select, .tool-chip .gt_selector {
  width: auto !important;
  max-width: 118px;
  min-height: 25px !important;
  padding: 0 22px 0 4px !important;
  border: 0 !important;
  background-color: transparent !important;
  color: var(--ink) !important;
  font-size: .76rem !important;
}
.tool-chip .woocs_auto_switcher, .tool-chip .woocs-style-1-dropdown { min-width: 72px; }
.tool-chip--language {
  position: relative;
  width: 183px;
  height: 40px;
  flex: 0 0 183px;
  overflow: visible;
}
.tool-chip--language .gtranslate_wrapper {
  position: relative;
  width: 163px;
  height: 28px;
}
.tool-chip--language .gt_switcher {
  position: relative !important;
  width: 163px !important;
  height: 28px !important;
  overflow: visible !important;
}
.tool-chip--language .gt_selected {
  position: relative !important;
  z-index: 10002 !important;
  width: 163px !important;
  height: 28px !important;
  border: 0 !important;
  background: transparent !important;
}
.tool-chip--language .gt_selected a {
  width: 100% !important;
  height: 28px !important;
  padding: 3px 28px 3px 4px !important;
  border: 0 !important;
  background-color: transparent !important;
  line-height: 22px !important;
  box-shadow: none !important;
}
.tool-chip--language .gt_option {
  position: absolute !important;
  z-index: 10001 !important;
  top: 28px !important;
  left: 0 !important;
  width: 163px !important;
  height: auto !important;
  max-height: min(310px, calc(100vh - 130px)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border-radius: 0 0 14px 14px !important;
  background: var(--white) !important;
  box-shadow: 0 16px 35px rgba(36, 50, 40, .18) !important;
}
.tool-chip--language .gt_option a {
  box-sizing: border-box !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 6px 9px !important;
  background-color: var(--white) !important;
  line-height: 22px !important;
}
.tool-chip--language .gt_option a:hover {
  background-color: var(--cream-2) !important;
}
.icon-link {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
}
.icon-link:hover { background: var(--cream-2); }
.cart-link {
  position: relative;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.cart-link:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin: 0;
  padding: 0 4px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .64rem;
  font-weight: 900;
  line-height: 1;
}
.cart-count[data-count="0"] { display: none; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); padding: 8px; }

/* Home */
.hero { padding: 26px 0 0; }
.hero-frame {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(720px, calc(100vh - 140px));
  overflow: hidden;
  border-radius: 34px;
  background: #f3d9b9 url("assets/images/powjoy-hero.png") center center / cover no-repeat;
  box-shadow: var(--shadow);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,248,235,.93) 0%, rgba(255,248,235,.72) 35%, rgba(255,248,235,0) 63%);
}
.hero-content { position: relative; z-index: 1; width: min(620px, 54%); padding: clamp(36px, 7vw, 88px); }
.hero h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  line-height: .85;
  letter-spacing: -.065em;
}
.hero p:not(.section-kicker) { max-width: 520px; margin: 0 0 32px; color: #4f5c53; font-size: clamp(1rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .button--ghost { background: rgba(255,255,255,.58); color: var(--ink) !important; border: 1px solid rgba(36,50,40,.18); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.5);
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 28px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}
.trust-item .trust-icon { display: grid; color: var(--white); }
.trust-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .9rem; }
.trust-item span { color: var(--muted); font-size: .78rem; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2) center / cover no-repeat;
  box-shadow: 0 10px 34px rgba(70,76,59,.08);
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24,38,28,.72), transparent 55%);
}
.category-card:hover { transform: translateY(-4px); transition: transform 180ms ease; }
.category-card__content { position: relative; z-index: 1; padding: 25px; color: var(--white); }
.category-card h3 { margin: 0 0 2px; font-family: Georgia, serif; font-size: 1.65rem; }
.category-card span { font-size: .82rem; font-weight: 750; opacity: .88; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 38px rgba(70,76,59,.07); }
.value-number { color: var(--orange); font-family: Georgia, serif; font-size: 2.6rem; font-weight: 800; line-height: 1; }
.value-card h3 { margin: 24px 0 8px; font-family: Georgia, serif; font-size: 1.6rem; }
.value-card p { margin: 0; color: var(--muted); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 7vw, 82px); border-radius: var(--radius); background: var(--ink); color: var(--white); }
.story-copy .section-kicker { color: var(--yellow); }
.story-copy p { color: rgba(255,255,255,.72); }
.story-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-height: 560px; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.story-visual img:first-child { margin-top: 44px; height: calc(100% - 44px); }
.prefooter {
  overflow: hidden;
  margin-bottom: 84px;
  border-radius: 34px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: clamp(52px, 8vw, 92px) 25px;
}
.prefooter h2 { max-width: 760px; margin: 0 auto 18px; font-family: Georgia, serif; font-size: clamp(2.4rem, 5.4vw, 5.2rem); line-height: .98; letter-spacing: -.05em; }
.prefooter p { max-width: 640px; margin: 0 auto 28px; color: rgba(255,255,255,.83); }

/* Pages & WooCommerce */
.page-hero { padding: 76px 0 42px; text-align: center; }
.page-hero .section-heading { margin-inline: auto; }
.content-shell { padding: 58px; margin-bottom: 90px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.entry-content { max-width: 800px; margin-inline: auto; }
.entry-content h2, .entry-content h3 { margin-top: 1.8em; font-family: Georgia, serif; line-height: 1.15; }
.entry-content h2 { font-size: 2rem; }
.entry-content a { color: var(--orange-dark); text-decoration: underline; }
.woocommerce-page main.site-main, .post-type-archive-product main.site-main { padding: 58px 0 90px; }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 22px; color: var(--muted); font-size: .82rem; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 32px; }
.woocommerce .woocommerce-ordering select { padding: 10px 36px 10px 14px; border: 1px solid var(--line); border-radius: 99px; background: var(--white); }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  float: none;
  width: auto;
  margin: 0;
  padding: 0 0 22px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(70,76,59,.08);
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link { display: flex; flex: 1 1 auto; flex-direction: column; }
.woocommerce ul.products li.product a img { margin: 0 0 19px; aspect-ratio: 1; object-fit: cover; background: var(--cream-2); transition: transform 220ms ease; }
.woocommerce ul.products li.product:hover a img { transform: scale(1.025); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 20px; font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.2; }
.woocommerce ul.products li.product .price { min-height: 26px; margin-top: auto; padding: 0 20px; color: var(--orange-dark); font-size: .96rem; font-weight: 800; }
.woocommerce ul.products li.product .price del { color: var(--muted); opacity: .58; font-weight: 650; }
.woocommerce ul.products li.product .price ins { color: var(--orange-dark); text-decoration: none; }
.woocommerce ul.products li.product .button {
  display: inline-flex !important;
  align-items: center;
  align-self: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  width: 148px !important;
  min-width: 148px;
  min-height: 44px;
  margin: 12px 20px 0;
  padding: 7px 8px 7px 17px;
  border: 1px solid rgba(36, 50, 40, .13);
  background: #fbf4e8 !important;
  color: var(--ink) !important;
  box-shadow: 0 8px 20px rgba(70, 76, 59, .10);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.woocommerce ul.products li.product .button::after {
  content: "+" !important;
  position: static !important;
  display: grid !important;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 !important;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: Arial, sans-serif !important;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
  opacity: 1 !important;
  transform: none !important;
  transition: transform 180ms ease, background 180ms ease;
}
.woocommerce ul.products li.product .button:hover {
  border-color: var(--ink);
  background: var(--ink) !important;
  color: var(--white) !important;
}
.woocommerce ul.products li.product .button:hover::after { background: var(--orange); transform: rotate(90deg) !important; }
.woocommerce ul.products li.product .button.loading::after {
  content: "" !important;
  box-sizing: border-box;
  border: 2px solid rgba(36, 50, 40, .18);
  border-top-color: var(--orange);
  background: transparent;
  animation: powjoy-spin .7s linear infinite;
}
/*
.woocommerce ul.products li.product .button.added::after { content: "✓" !important; background: var(--sage-dark); transform: none !important; }
@keyframes powjoy-spin { to { transform: rotate(360deg); } }
}
*/
.woocommerce ul.products li.product .button.added::after { content: "\2713" !important; background: var(--sage-dark); transform: none !important; }
@keyframes powjoy-spin { to { transform: rotate(360deg); } }
.woocommerce span.onsale { top: 14px; left: 14px; min-width: auto; min-height: auto; padding: 7px 10px; border-radius: 99px; background: var(--orange); line-height: 1; }
.woocommerce ul.products li.product .onsale { top: 14px; right: 14px; left: auto; margin: 0; }
.woocommerce h1.page-title, .woocommerce-page h1.page-title {
  margin: 0 0 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.woocommerce .woocommerce-result-count { color: var(--muted); }
.woocommerce div.product { padding: 40px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.woocommerce div.product div.images img { border-radius: 24px; }
.woocommerce div.product .product_title { font-family: Georgia, serif; font-size: clamp(2.3rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.045em; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--orange-dark); font-size: 1.35rem; }
.woocommerce div.product p.price del, .woocommerce div.product span.price del { color: var(--muted); opacity: .58; }
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins { color: var(--orange-dark); text-decoration: none; }
.woocommerce .quantity .qty { min-height: 48px; border: 1px solid var(--line); border-radius: 99px; }
.woocommerce div.product form.cart .button.single_add_to_cart_button {
  background: var(--ink) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover { background: var(--orange-dark) !important; }
.woocommerce div.product .product_meta { padding-top: 6px; color: var(--muted); font-size: .88rem; }
.woocommerce div.product .product_meta > span { display: block; margin-top: 7px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border-color: var(--line); background: var(--cream-2); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--white); }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--sage-dark); background: var(--white); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--sage-dark); }
.woocommerce-cart table.cart, .woocommerce-checkout-review-order, .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register { border-radius: 20px; background: var(--white); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }

/* Footer */
.site-footer { padding: 70px 0 28px; background: #1f2c23; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 54px; }
.site-footer .brand { margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.65); }
.footer-title { margin: 3px 0 17px; color: var(--yellow); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 9px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .76rem; }
.footer-bottom p { margin: 0; font-size: inherit; }

a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible {
  outline: 3px solid rgba(239, 143, 85, .45);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr; gap: 14px; }
  .menu-toggle { display: block; order: 2; }
  .brand { order: 1; }
  .site-tools { order: 3; justify-content: flex-end; }
  .site-nav { display: none; grid-column: 1 / -1; order: 4; padding: 0 0 18px; }
  .site-nav.is-open { display: block; }
  .primary-menu { align-items: stretch; flex-direction: column; gap: 0; }
  .primary-menu a { display: block; padding: 10px 0; }
  .category-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  .container { width: min(calc(100% - 24px), var(--content)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 68px; }
  .brand { font-size: 1.4rem; }
  .tool-chip--currency, .account-link { display: none; }
  .tool-chip--language { width: 112px; flex-basis: 112px; }
  .tool-chip--language .gtranslate_wrapper,
  .tool-chip--language .gt_switcher,
  .tool-chip--language .gt_selected { width: 92px !important; }
  .tool-chip--language .gt_option { right: 0 !important; left: auto !important; width: 150px !important; }
  .tool-chip--language .gt_selected a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero { padding-top: 12px; }
  .hero-frame { align-items: end; min-height: 690px; background-position: 63% center; border-radius: 24px; }
  .hero-frame::after { background: linear-gradient(0deg, rgba(255,248,235,.98) 0%, rgba(255,248,235,.84) 45%, rgba(255,248,235,0) 78%); }
  .hero-content { width: 100%; padding: 34px 25px 42px; }
  .hero h1 { max-width: 380px; font-size: clamp(3.35rem, 15vw, 5.1rem); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 20px; }
  .category-card { min-height: 310px; }
  .value-grid, .story-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 440px; }
  .content-shell { padding: 28px 20px; }
  .woocommerce div.product { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .announcement { font-size: .61rem; letter-spacing: .07em; }
  .tool-chip--language { max-width: 112px; }
  .category-grid, .woocommerce ul.products { grid-template-columns: 1fr; }
  .category-card { min-height: 360px; }
  .story-visual { grid-template-columns: 1fr 1fr; min-height: 310px; }
  .hero-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

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