:root {
  --green-950: #10291d;
  --green-900: #183b2b;
  --green-700: #3f674c;
  --green-500: #6f8f5a;
  --green-100: #e5ecd9;
  --cream: #f6f3e8;
  --sand: #e7dcc6;
  --terracotta: #c97952;
  --terracotta-dark: #a95436;
  --text: #1f2a24;
  --muted: #627067;
  --white: #fff;
  --border: rgba(24, 59, 43, 0.14);
  --shadow: 0 20px 60px rgba(16, 41, 29, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.content-container {
  max-width: 820px;
}

.section {
  padding: 100px 0;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--white);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: var(--white);
  background: var(--terracotta);
}

.button-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  color: var(--white);
  background: var(--terracotta-dark);
}

.button-secondary {
  color: var(--green-950);
  border-color: rgba(16, 41, 29, 0.28);
  background: rgba(255, 255, 255, 0.45);
}

.button-dark {
  color: var(--white);
  background: var(--green-900);
}

.button-light {
  color: var(--green-950);
  background: var(--cream);
}

.text-link {
  color: var(--green-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--terracotta-dark);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(246, 243, 232, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.custom-logo {
  max-width: 170px;
  max-height: 58px;
  object-fit: contain;
}

.text-logo,
.footer-logo {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
}

.text-logo span {
  color: var(--terracotta);
}

.primary-navigation {
  justify-self: center;
}

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

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.primary-menu a {
  position: relative;
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

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

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-link,
.cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  text-decoration: none;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 99px;
  color: var(--white);
  background: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--green-950);
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 121, 82, 0.24), transparent 24%),
    linear-gradient(135deg, var(--cream), #e9efd9 54%, #d5e1c7);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 760px;
  padding: 100px 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-copy {
  max-width: 660px;
  color: var(--green-700);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(24, 59, 43, 0.12);
  border-radius: 50%;
}

.hero-shape-one {
  width: 420px;
  height: 420px;
  top: -180px;
  left: -140px;
}

.hero-shape-two {
  width: 680px;
  height: 680px;
  right: -320px;
  bottom: -340px;
}

.hero-illustration {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.plant-pot {
  position: relative;
  width: 300px;
  height: 430px;
}

.pot {
  position: absolute;
  right: 55px;
  bottom: 30px;
  width: 190px;
  height: 160px;
  border-radius: 14px 14px 70px 70px;
  background: linear-gradient(145deg, var(--terracotta), #a95a3d);
  box-shadow: var(--shadow);
}

.stem {
  position: absolute;
  bottom: 180px;
  left: 147px;
  width: 10px;
  height: 220px;
  border-radius: 99px;
  background: var(--green-700);
  transform: rotate(-4deg);
}

.leaf {
  position: absolute;
  width: 145px;
  height: 85px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, var(--green-500), var(--green-900));
}

.leaf-one {
  top: 80px;
  left: 12px;
  transform: rotate(18deg);
}

.leaf-two {
  top: 150px;
  right: 2px;
  transform: scaleX(-1) rotate(14deg);
}

.leaf-three {
  top: 225px;
  left: 18px;
  transform: rotate(28deg) scale(0.9);
}

/* Sections */
.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.category-section {
  background: var(--white);
}

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

.category-card {
  min-height: 330px;
  display: flex;
  align-items: end;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-tools {
  background: linear-gradient(145deg, var(--cream), #e2ead3);
}

.category-decor {
  background: linear-gradient(145deg, #f2e4d9, #ead3c2);
}

.category-icon {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-900);
  font-size: 2.8rem;
}

.category-decor .category-icon {
  background: var(--terracotta);
}

.category-card p {
  color: var(--muted);
}

.featured-products {
  background: #f9faf6;
}

.story-section {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.story-visual {
  min-height: 460px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.4), transparent 22%),
    linear-gradient(145deg, var(--green-500), var(--green-900));
}

.story-circle {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 7rem;
}

.story-content p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

.benefits-section {
  padding: 55px 0;
  color: var(--white);
  background: var(--green-900);
}

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

.benefits-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
}

.benefits-grid article > span {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--green-100);
}

.benefits-grid h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-family: inherit;
  font-size: 1.05rem;
}

.benefits-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.cta-section {
  color: var(--white);
  background: var(--terracotta);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-section .eyebrow {
  color: var(--cream);
}

.cta-section h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--white);
}

/* Generic pages */
.compact-hero {
  padding: 95px 0 70px;
  background: linear-gradient(135deg, var(--cream), var(--green-100));
}

.compact-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.content-container > *:first-child {
  margin-top: 0;
}

.content-container h2,
.content-container h3 {
  margin-top: 1.8em;
}

.content-container a:not(.button) {
  color: var(--green-700);
}

.content-container input,
.content-container select,
.content-container textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.post-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-card-content {
  padding: 28px;
}

.post-card-content h2 {
  font-size: 1.55rem;
}

.post-card-content h2 a {
  text-decoration: none;
}

.post-meta {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
}

.single-featured-image {
  margin-bottom: 40px;
  border-radius: var(--radius-md);
}

.not-found {
  min-height: 65vh;
  display: grid;
  align-items: center;
  text-align: center;
}

/* WooCommerce */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

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

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  padding: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  margin: 0 0 22px;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-right: 22px;
  margin-left: 22px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.woocommerce span.onsale {
  min-width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 6px;
  background: var(--terracotta);
  line-height: 1;
}

.woocommerce .quantity .qty {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--green-500);
  background: var(--cream);
}

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

.woocommerce table.shop_table {
  overflow: hidden;
  border-color: var(--border);
  border-radius: var(--radius-sm);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* Footer */
.site-footer {
  padding: 78px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cream);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.footer-menu li,
.footer-links li {
  margin-bottom: 8px;
}

.footer-menu a,
.footer-links a {
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 1020px) {
  .header-inner {
    gap: 24px;
  }

  .primary-menu {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.6fr;
    gap: 20px;
  }

  .plant-pot {
    transform: scale(0.82);
  }

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

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

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    z-index: 999;
    top: 82px;
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--cream);
    opacity: 0;
    transition: max-height 220ms ease, opacity 220ms ease;
  }

  .primary-navigation.is-open {
    max-height: calc(100vh - 82px);
    border-top: 1px solid var(--border);
    opacity: 1;
  }

  .primary-menu {
    width: min(var(--container), calc(100% - 40px));
    display: block;
    margin: 0 auto;
    padding: 22px 0 32px;
  }

  .primary-menu li {
    border-bottom: 1px solid var(--border);
  }

  .primary-menu a {
    display: block;
    padding: 14px 2px;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 90px 0 30px;
  }

  .hero-illustration {
    min-height: 390px;
  }

  .plant-pot {
    transform: scale(0.78);
    transform-origin: center bottom;
  }

  .category-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
  }

  .primary-navigation {
    top: 72px;
  }

  .text-logo {
    font-size: 1.4rem;
  }

  .account-link {
    display: none;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-illustration {
    min-height: 320px;
  }

  .plant-pot {
    transform: scale(0.65);
  }

  .category-card {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .category-icon {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
    font-size: 2rem;
  }

  .story-visual {
    min-height: 340px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ===== HomiHomi 商店页面优化 ===== */

/* 隐藏重复的第二个 Shop 标题 */
.woocommerce-page-wrapper .woocommerce-products-header {
    display: none !important;
}

/* 缩小商品区域上下留白 */
.woocommerce-page-wrapper.section {
    padding: 60px 0 90px;
}

/* 商品列表改成3列 */
.woocommerce ul.products {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    clear: both;
    margin: 35px 0 0;
}

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

/* 商品卡片 */
.woocommerce ul.products li.product {
    width: 100% !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 0 25px;
    overflow: hidden;
    border: 1px solid rgba(24, 59, 43, 0.14);
    border-radius: 22px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(16, 41, 29, 0.12);
}

/* 商品图片 */
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 0 22px;
    object-fit: cover;
    background: #f4f4f0;
}

/* 商品标题 */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 4.2em;
    display: -webkit-box;
    margin: 0 22px 12px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* 价格 */
.woocommerce ul.products li.product .price {
    margin: 0 22px 8px;
    color: #a95436;
    font-size: 18px;
    font-weight: 800;
}

/* 德国税费、运费信息 */
.woocommerce ul.products li.product .wc-gzd-additional-info {
    margin: 0 22px 12px;
    color: #627067;
    font-size: 13px;
}

/* 购物车按钮 */
.woocommerce ul.products li.product .button {
    align-self: flex-start;
    margin: auto 22px 0;
}

/* 排序框 */
.woocommerce-ordering select {
    min-width: 230px;
    min-height: 48px;
    padding: 8px 16px;
    border: 1px solid rgba(24, 59, 43, 0.18);
    border-radius: 10px;
    background: #fff;
}

/* 平板 */
@media (max-width: 1020px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* 手机 */
@media (max-width: 620px) {
    .woocommerce-page-wrapper.section {
        padding: 40px 0 65px;
    }

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

    .woocommerce-ordering,
    .woocommerce-ordering select {
        width: 100%;
    }
}

/* ===== HomiHomi Footer 2.0 ===== */

.site-footer {
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: #0d291e;
}

/* 顶部信任信息 */
.footer-benefits {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #143529;
}

.footer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 27px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-benefit:first-child {
    padding-left: 0;
}

.footer-benefit:last-child {
    border-right: 0;
}

.footer-benefit-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #f6f3e8;
    font-size: 17px;
    font-weight: 800;
}

.footer-benefit strong,
.footer-benefit small {
    display: block;
}

.footer-benefit strong {
    color: #fff;
    font-size: 15px;
}

.footer-benefit small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

/* Footer四栏 */
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 1fr 1fr;
    gap: 65px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.site-footer .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #f6f3e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 800;
    text-decoration: none;
}

.site-footer .footer-logo span {
    color: #d0835c;
}

.footer-brand p {
    max-width: 330px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.footer-contact-link {
    color: #f6f3e8;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.footer-contact-link:hover {
    color: #d0835c;
}

.site-footer .footer-column h2 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 13px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer .footer-column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    content: "";
    background: #d0835c;
}

.site-footer .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-links li {
    margin-bottom: 11px;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.site-footer .footer-links a:hover {
    padding-left: 4px;
    color: #fff;
}

/* 底部版权 */
.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.site-footer .footer-bottom p {
    margin: 0;
}

.footer-location {
    color: rgba(255, 255, 255, 0.55);
}

/* 平板 */
@media (max-width: 900px) {
    .footer-benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-benefit,
    .footer-benefit:first-child {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-benefit:last-child {
        border-bottom: 0;
    }

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

/* 手机 */
@media (max-width: 620px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 52px;
        padding-bottom: 45px;
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== 政策与普通内容页面排版 ===== */

/* 顶部页面标题区域 */
.page-hero.compact-hero {
    padding: 52px 0 46px;
}

.page-hero.compact-hero h1 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
}

/* 正文区域 */
.content-section.section {
    padding: 65px 0 90px;
}

.content-section .content-container {
    max-width: 880px;
}

/* 防止正文中误用的一级标题过大 */
.content-container > h1 {
    margin: 0 0 22px;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;
}

/* 正文章节标题 */
.content-container h2 {
    margin: 52px 0 16px;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.2;
}

/* 小标题 */
.content-container h3 {
    margin: 36px 0 13px;
    font-size: 23px;
    line-height: 1.3;
}

/* 正文段落 */
.content-container p {
    margin-bottom: 18px;
    line-height: 1.75;
}

/* 列表 */
.content-container ul,
.content-container ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.content-container li {
    margin-bottom: 8px;
}

/* 手机 */
@media (max-width: 620px) {
    .page-hero.compact-hero {
        padding: 38px 0 34px;
    }

    .page-hero.compact-hero h1 {
        font-size: 38px;
    }

    .content-section.section {
        padding: 45px 0 65px;
    }

    .content-container h2 {
        margin-top: 40px;
        font-size: 28px;
    }

    .content-container h3 {
        font-size: 21px;
    }
}

/* ==================================================
   HomiHomi – 商品详情页
   ================================================== */

.single-product {
    overflow-x: hidden;
}

.single-product .woocommerce-page-wrapper.section {
    padding: 56px 0 90px;
    background: #fff;
}

.single-product .woocommerce-page-wrapper > .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* 商品图片和商品信息 */

.single-product div.product .woocommerce-product-gallery {
    float: left;
    width: 52%;
    margin: 0 0 40px;
}

.single-product div.product .summary {
    float: right;
    width: 41%;
    margin: 0 0 40px;
}

/* 主商品图片 */

.single-product .woocommerce-product-gallery .flex-viewport {
    overflow: hidden;
    background: #f6f6ef;
    border: 1px solid #e3e5da;
    border-radius: 20px;
}

.single-product .woocommerce-product-gallery__image img {
    display: block;
    width: 100%;
    height: auto;
    background: #f6f6ef;
}

/* 商品缩略图 */

.single-product ol.flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 12px 0 0 !important;
    padding: 0;
    list-style: none;
}

.single-product ol.flex-control-thumbs li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.single-product ol.flex-control-thumbs img {
    display: block;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    padding: 4px;
    object-fit: cover;
    background: #f7f7f2;
    border: 1px solid #e0e3d7;
    border-radius: 10px;
    opacity: 0.72;
    cursor: pointer;
    transition: 0.2s ease;
}

.single-product ol.flex-control-thumbs img:hover,
.single-product ol.flex-control-thumbs img.flex-active {
    border-color: #c8754e;
    opacity: 1;
}

/* 商品标题 */

.single-product .summary .product_title {
    margin: 0 0 18px;
    color: #10291d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
    hyphens: auto;
}

/* 价格 */

.single-product .summary .price {
    margin: 0 0 8px;
    color: #c76f48;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.25;
}

.single-product .summary .legal-price-info {
    margin-bottom: 20px;
    color: #677168;
    font-size: 14px;
}

.single-product .summary .legal-price-info p {
    margin: 0;
}

/* 库存状态 */

.single-product .summary .stock {
    display: inline-flex;
    align-items: center;
    margin: 0 0 22px;
    padding: 7px 12px;
    color: #315b3e;
    background: #edf5e9;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.single-product .summary .stock::before {
    content: "✓";
    margin-right: 7px;
}

/* 数量和加入购物车 */

.single-product form.cart {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin: 0 0 24px !important;
}

.single-product form.cart .quantity {
    float: none !important;
    margin: 0 !important;
}

.single-product form.cart .qty {
    width: 72px;
    height: 52px;
    padding: 0 10px;
    color: #10291d;
    background: #fff;
    border: 1px solid #ccd2c8;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
}

.single-product .single_add_to_cart_button {
    min-height: 52px;
    padding: 14px 26px !important;
    color: #fff !important;
    background: #c8754e !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: 0.2s ease;
}

.single-product .single_add_to_cart_button:hover {
    background: #a95636 !important;
    transform: translateY(-1px);
}

/* SKU、分类、品牌 */

.single-product .product_meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 22px;
    padding-top: 20px;
    color: #6c756e;
    border-top: 1px solid #e2e5dc;
    font-size: 14px;
    line-height: 1.6;
}

.single-product .product_meta a {
    color: #244b35;
    text-decoration: none;
}

.single-product .product_meta a:hover {
    color: #c8754e;
}

/* 商品描述区域 */

.single-product .woocommerce-tabs {
    clear: both;
    width: 100%;
    margin-top: 60px !important;
    padding-top: 42px;
    border-top: 1px solid #e1e5dc;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 28px;
    margin: 0 0 42px !important;
    padding: 0 0 14px !important;
    border-bottom: 1px solid #dfe3da;
    list-style: none;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0 0 12px;
    color: #657068;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #10291d;
    border-bottom: 2px solid #c8754e;
}

/* 隐藏描述区域重复的“Beschreibung”标题 */

.single-product
.woocommerce-Tabs-panel--description
> h2:first-child {
    display: none;
}

.single-product .woocommerce-Tabs-panel {
    max-width: 900px;
    margin: 0 auto !important;
    color: #36443c;
    font-size: 16px;
    line-height: 1.75;
}

.single-product .woocommerce-Tabs-panel h2 {
    margin: 48px 0 20px;
    color: #10291d;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.2;
}

.single-product .woocommerce-Tabs-panel h2:first-of-type {
    margin-top: 0;
}

.single-product .woocommerce-Tabs-panel h3 {
    margin: 36px 0 12px;
    color: #173426;
    font-size: 22px;
    line-height: 1.3;
}

.single-product .woocommerce-Tabs-panel p {
    margin: 0 0 18px;
}

.single-product .woocommerce-Tabs-panel ul {
    margin: 0 0 24px;
    padding-left: 22px;
}

.single-product .woocommerce-Tabs-panel li {
    margin-bottom: 8px;
}

/* 产品参数表格 */

.single-product .woocommerce-Tabs-panel table {
    display: table;
    width: 100% !important;
    margin: 0 0 38px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe3da;
    border-radius: 14px;
}

.single-product .woocommerce-Tabs-panel th,
.single-product .woocommerce-Tabs-panel td {
    padding: 14px 18px;
    border: 0;
    border-bottom: 1px solid #e5e8e1;
    text-align: left;
    vertical-align: top;
}

.single-product .woocommerce-Tabs-panel th {
    color: #10291d;
    background: #f3f4eb;
    font-weight: 700;
}

.single-product .woocommerce-Tabs-panel tr:last-child td {
    border-bottom: 0;
}

/* 平板和手机 */

@media (max-width: 900px) {
    .single-product .woocommerce-page-wrapper.section {
        padding-top: 38px;
    }

    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary {
        float: none;
        width: 100%;
    }

    .single-product div.product .woocommerce-product-gallery {
        margin-bottom: 36px;
    }

    .single-product .summary .product_title {
        font-size: clamp(32px, 8vw, 44px);
    }

    .single-product .woocommerce-tabs {
        margin-top: 40px !important;
    }
}

@media (max-width: 600px) {
    .single-product .woocommerce-page-wrapper > .container {
        width: min(100% - 28px, 1180px);
    }

    .single-product .woocommerce-page-wrapper.section {
        padding: 28px 0 60px;
    }

    .single-product ol.flex-control-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .single-product form.cart {
        flex-wrap: wrap;
    }

    .single-product .single_add_to_cart_button {
        flex: 1;
    }

    .single-product .woocommerce-tabs ul.tabs {
        margin-bottom: 30px !important;
    }

    .single-product .woocommerce-Tabs-panel h2 {
        margin-top: 36px;
        font-size: 28px;
    }

    .single-product .woocommerce-Tabs-panel h3 {
        margin-top: 28px;
        font-size: 20px;
    }

    .single-product .woocommerce-Tabs-panel {
        line-height: 1.65;
    }

    .single-product .woocommerce-Tabs-panel table {
        display: block;
        overflow-x: auto;
        white-space: normal;
    }
}

/* ==================================================
   HomiHomi – 侧边购物车抽屉
   ================================================== */

body.cart-drawer-open {
    overflow: hidden;
}

.homihomi-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    visibility: hidden;
    pointer-events: none;
}

.homihomi-cart-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
}

.homihomi-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 25, 17, 0.52);
    opacity: 0;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}

.homihomi-cart-drawer.is-open .homihomi-cart-overlay {
    opacity: 1;
}

.homihomi-cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(460px, 100%);
    height: 100%;
    background: #fff;
    box-shadow: -20px 0 60px rgba(15, 42, 28, 0.18);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

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

.homihomi-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    padding: 25px 26px 20px;
    background: #f5f3e9;
    border-bottom: 1px solid #e1e3d9;
}

.homihomi-cart-eyebrow {
    margin: 0 0 5px;
    color: #c8754e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.homihomi-cart-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #10291d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.1;
}

.homihomi-cart-drawer-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 25px;
    padding: 0 7px;
    color: #fff;
    background: #c8754e;
    border-radius: 999px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
}

.homihomi-cart-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #10291d;
    background: transparent;
    border: 1px solid #ccd2c8;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.homihomi-cart-close:hover {
    color: #fff;
    background: #10291d;
    border-color: #10291d;
}

.homihomi-cart-drawer-content {
    flex: 1;
    padding: 22px 26px 30px;
    overflow-y: auto;
}

/* 免运费进度 */

.homihomi-shipping-progress {
    margin-bottom: 24px;
    padding: 15px 16px;
    color: #274333;
    background: #f2f6ed;
    border: 1px solid #dde8d6;
    border-radius: 13px;
    font-size: 14px;
}

.homihomi-shipping-progress p {
    margin: 0 0 10px;
}

.homihomi-shipping-progress strong {
    color: #c46d48;
}

.homihomi-shipping-progress .free-shipping-reached {
    margin-bottom: 10px;
    color: #315c3d;
    font-weight: 700;
}

.homihomi-progress-track {
    height: 6px;
    overflow: hidden;
    background: #dce4d7;
    border-radius: 999px;
}

.homihomi-progress-track span {
    display: block;
    height: 100%;
    background: #c8754e;
    border-radius: inherit;
    transition: width 0.35s ease;
}

/* Mini Cart 商品列表 */

.homihomi-cart-drawer
.woocommerce-mini-cart {
    margin: 0;
    padding: 0;
    list-style: none;
}

.homihomi-cart-drawer
.woocommerce-mini-cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 15px;
    min-height: 100px;
    margin: 0;
    padding: 0 30px 18px 0;
    border-bottom: 1px solid #e5e7e0;
}

.homihomi-cart-drawer
.woocommerce-mini-cart-item + .woocommerce-mini-cart-item {
    margin-top: 18px;
}

.homihomi-cart-drawer
.woocommerce-mini-cart-item > a:not(.remove) {
    color: #153124;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.homihomi-cart-drawer
.woocommerce-mini-cart-item img {
    float: left;
    width: 82px;
    height: 82px;
    margin: 0 15px 0 0;
    object-fit: cover;
    background: #f5f5ef;
    border-radius: 10px;
}

.homihomi-cart-drawer
.woocommerce-mini-cart-item .quantity {
    display: block;
    margin-top: 7px;
    color: #6b746d;
    font-size: 14px;
    font-weight: 400;
}

.homihomi-cart-drawer
.remove_from_cart_button {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: #8a928c !important;
    background: #f1f2ed;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
}

.homihomi-cart-drawer
.remove_from_cart_button:hover {
    color: #fff !important;
    background: #c8754e;
}

/* 小计 */

.homihomi-cart-drawer
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    margin: 26px 0 18px;
    padding-top: 20px;
    color: #10291d;
    border-top: 1px solid #dfe3da;
    font-size: 17px;
}

.homihomi-cart-drawer
.woocommerce-mini-cart__total strong {
    font-weight: 700;
}

.homihomi-cart-drawer
.woocommerce-mini-cart__total .amount {
    color: #c46d48;
    font-size: 20px;
    font-weight: 800;
}

/* 按钮 */

.homihomi-cart-drawer
.woocommerce-mini-cart__buttons {
    display: grid;
    gap: 10px;
    margin: 0;
}

.homihomi-cart-drawer
.woocommerce-mini-cart__buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.homihomi-cart-drawer
.woocommerce-mini-cart__buttons .button {
    color: #173426;
    background: #f1f3ed;
    border: 1px solid #d9ded5;
}

.homihomi-cart-drawer
.woocommerce-mini-cart__buttons .checkout {
    color: #fff;
    background: #c8754e;
    border-color: #c8754e;
}

.homihomi-cart-drawer
.woocommerce-mini-cart__buttons .checkout:hover {
    background: #a95738;
}

/* 空购物车 */

.homihomi-cart-drawer
.woocommerce-mini-cart__empty-message {
    margin: 70px auto;
    color: #6b756e;
    font-size: 16px;
    text-align: center;
}

.single_add_to_cart_button.loading {
    position: relative;
    opacity: 0.72;
    cursor: wait;
}

.single_add_to_cart_button.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: homihomi-cart-spin 0.7s linear infinite;
}

@keyframes homihomi-cart-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .homihomi-cart-panel {
        width: min(420px, 94%);
    }

    .homihomi-cart-header {
        padding: 20px;
    }

    .homihomi-cart-header h2 {
        font-size: 27px;
    }

    .homihomi-cart-drawer-content {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homihomi-cart-overlay,
    .homihomi-cart-panel {
        transition: none;
    }
}

/* ==================================================
   HomiHomi – 购物车页面
   ================================================== */

.woocommerce-cart .woocommerce-page-wrapper.section {
    padding: 60px 0 90px;
}

.woocommerce-cart .woocommerce {
    max-width: 1180px;
    margin: 0 auto;
}

/* 购物车商品表格 */

.woocommerce-cart table.shop_table {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe3da;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(17, 49, 32, 0.04);
}

.woocommerce-cart table.shop_table th {
    padding: 18px 16px;
    color: #173426;
    background: #f5f5ee;
    border-bottom: 1px solid #dfe3da;
    font-size: 15px;
    font-weight: 700;
}

.woocommerce-cart table.shop_table td {
    padding: 18px 16px;
    vertical-align: middle;
    border-color: #e5e8e1;
}

/* 商品图片 */

.woocommerce-cart .product-thumbnail {
    width: 90px;
}

.woocommerce-cart .product-thumbnail img {
    width: 72px !important;
    height: 72px !important;
    padding: 5px;
    object-fit: contain;
    background: #f5f5ef;
    border: 1px solid #e1e4db;
    border-radius: 10px;
}

/* 商品名称 */

.woocommerce-cart .product-name a {
    color: #315f43;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
    color: #c8754e;
}

/* 删除按钮 */

.woocommerce-cart .product-remove a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #a33d32 !important;
    background: #fff1ef;
    border-radius: 50%;
    font-size: 22px;
}

.woocommerce-cart .product-remove a.remove:hover {
    color: #fff !important;
    background: #a33d32;
}

/* 数量输入框 */

.woocommerce-cart .quantity .qty {
    width: 68px;
    height: 48px;
    padding: 5px;
    border: 1px solid #d6dbd2;
    border-radius: 10px;
    text-align: center;
}

/* 优惠券区域 */

.woocommerce-cart table.cart td.actions {
    padding: 12px;
}

.woocommerce-cart table.cart .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-cart table.cart .coupon input#coupon_code {
    width: 190px !important;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ccd2c8;
    border-radius: 10px;
    font-size: 14px;
}

.woocommerce-cart table.cart .coupon button,
.woocommerce-cart button[name="update_cart"] {
    min-height: 48px;
    padding: 12px 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 14px;
    font-weight: 700;
}

.woocommerce-cart table.cart .coupon button {
    color: #fff !important;
    background: #c8754e !important;
}

.woocommerce-cart table.cart .coupon button:hover {
    background: #a95738 !important;
}

.woocommerce-cart button[name="update_cart"] {
    color: #173426 !important;
    background: #edf0e9 !important;
}

.woocommerce-cart button[name="update_cart"]:not(:disabled):hover {
    color: #fff !important;
    background: #173426 !important;
}

/* 订单金额区域 */

.woocommerce-cart .cart-collaterals {
    margin-top: 52px;
}

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

.woocommerce-cart .cart_totals h2 {
    margin: 0 0 20px;
    color: #10291d;
    font-size: 36px;
    line-height: 1.2;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 16px 14px;
    vertical-align: top;
}

.woocommerce-cart .cart_totals .order-total {
    color: #10291d;
    font-size: 18px;
}

/* 结账按钮 */

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 22px 0 0;
}

.woocommerce-cart
.wc-proceed-to-checkout
a.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 0;
    padding: 15px 24px;
    color: #fff !important;
    background: #c8754e !important;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    transition: 0.2s ease;
}

.woocommerce-cart
.wc-proceed-to-checkout
a.checkout-button:hover {
    background: #a95738 !important;
    transform: translateY(-1px);
}

/* 配送选项 */

.woocommerce-cart ul#shipping_method {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-cart ul#shipping_method li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.woocommerce-cart ul#shipping_method label {
    color: #24382d;
    font-weight: 600;
}

/* 手机端 */

@media (max-width: 768px) {
    .woocommerce-cart .woocommerce-page-wrapper.section {
        padding: 35px 0 60px;
    }

    .woocommerce-cart table.shop_table_responsive tr {
        margin-bottom: 18px;
        padding: 14px;
        background: #fff;
        border: 1px solid #dfe3da;
        border-radius: 14px;
    }

    .woocommerce-cart table.cart .coupon {
        display: grid;
        grid-template-columns: 1fr;
    }

    .woocommerce-cart table.cart .coupon input#coupon_code {
        width: 100% !important;
    }

    .woocommerce-cart table.cart .coupon button {
        width: 100%;
    }

    .woocommerce-cart button[name="update_cart"] {
        width: 100%;
        margin-top: 10px;
    }

    .woocommerce-cart .cart-collaterals .cart_totals {
        float: none;
        width: 100%;
    }

    .woocommerce-cart .cart_totals h2 {
        font-size: 30px;
    }
}

/* 强制覆盖 WooCommerce 购物车旧样式 */

body.woocommerce-cart
.wc-proceed-to-checkout
a.checkout-button,
body.woocommerce-cart
.wc-proceed-to-checkout
a.checkout-button:hover,
body.woocommerce-cart
.wc-proceed-to-checkout
a.checkout-button:focus {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: #ffffff !important;
    background: #c8754e !important;
    background-color: #c8754e !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

body.woocommerce-cart
.wc-proceed-to-checkout
a.checkout-button:hover {
    background: #a95738 !important;
    background-color: #a95738 !important;
}

body.woocommerce-cart
table.cart
td.product-thumbnail img {
    width: 72px !important;
    min-width: 72px !important;
    height: 72px !important;
    padding: 5px !important;
    object-fit: contain;
    background: #f5f5ef;
    border: 1px solid #e1e4db;
    border-radius: 10px;
}

body.woocommerce-cart
table.cart
td.actions
.coupon {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

body.woocommerce-cart
table.cart
td.actions
.coupon
input#coupon_code {
    float: none !important;
    width: 190px !important;
    min-width: 190px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border: 1px solid #ccd2c8 !important;
    border-radius: 10px !important;
}

body.woocommerce-cart
table.cart
td.actions
.coupon
button {
    float: none !important;
    min-height: 48px;
    color: #ffffff !important;
    background: #c8754e !important;
    border: 0 !important;
    border-radius: 999px !important;
}

body.woocommerce-cart
button[name="update_cart"] {
    min-height: 48px;
    color: #173426 !important;
    background: #edf0e9 !important;
    border: 0 !important;
    border-radius: 999px !important;
}

@media (max-width: 768px) {
    body.woocommerce-cart
    table.cart
    td.actions
    .coupon {
        display: grid !important;
    }

    body.woocommerce-cart
    table.cart
    td.actions
    .coupon
    input#coupon_code {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* =========================
   Kontakt page
   ========================= */

.contact-hero {
    padding: 78px 0 82px;
    background:
        linear-gradient(110deg, #f4f1e6 0%, #edf2e3 100%);
}

.contact-hero .container {
    max-width: 1180px;
}

.contact-eyebrow,
.contact-card-label {
    display: block;
    margin: 0 0 14px;
    color: #ce754c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.contact-hero h1 {
    max-width: 850px;
    margin: 0 0 20px;
    color: #0d2b1f;
    font-size: clamp(44px, 6vw, 74px);
    line-height: 1.05;
}

.contact-hero p:last-child {
    max-width: 700px;
    margin: 0;
    color: #435249;
    font-size: 18px;
    line-height: 1.75;
}

.contact-section {
    padding: 90px 0;
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 70px;
    max-width: 1180px;
    align-items: start;
}

.contact-information {
    position: sticky;
    top: 32px;
}

.contact-information h2,
.contact-form-heading h2 {
    margin: 0 0 18px;
    color: #0d2b1f;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

.contact-information > p,
.contact-form-heading p {
    margin: 0 0 32px;
    color: #526057;
    line-height: 1.75;
}

.contact-detail {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid #dde2d9;
}

.contact-detail-icon {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef2e7;
    color: #174632;
    font-weight: 800;
}

.contact-detail strong,
.contact-detail a,
.contact-detail span {
    display: block;
}

.contact-detail strong {
    margin-bottom: 5px;
    color: #0d2b1f;
}

.contact-detail a {
    color: #bd6944;
    overflow-wrap: anywhere;
}

.contact-detail span {
    color: #5b675f;
    line-height: 1.6;
}

.contact-help-links {
    margin-top: 22px;
    padding: 26px;
    border-radius: 16px;
    background: #f6f4eb;
}

.contact-help-links h3 {
    margin: 0 0 14px;
    color: #0d2b1f;
    font-size: 17px;
    line-height: 1.45;
}

.contact-help-links a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #d9ddd4;
    color: #28533d;
    font-weight: 700;
    text-decoration: none;
}

.contact-help-links a:last-child {
    border-bottom: 0;
}

.contact-form-card {
    padding: 42px;
    border: 1px solid #dce1d8;
    border-radius: 22px;
    background: #fafaf7;
    box-shadow: 0 18px 50px rgba(13, 43, 31, 0.06);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    margin-bottom: 22px;
}

.contact-field label {
    display: block;
    margin-bottom: 9px;
    color: #253b30;
    font-size: 14px;
    font-weight: 700;
}

.contact-field label span,
.contact-privacy strong {
    color: #c7583f;
}

.contact-field label small {
    color: #6d766f;
    font-weight: 400;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    box-sizing: border-box;
    border: 1px solid #cfd6cc;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: #172a20;
    font: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #386b4d;
    box-shadow: 0 0 0 3px rgba(56, 107, 77, 0.12);
}

.contact-privacy {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    margin: 4px 0 24px;
    color: #4e5d54;
    font-size: 13px;
    line-height: 1.65;
}

.contact-privacy input {
    width: 16px;
    height: 16px;
    margin: 4px 0 0;
}

.contact-privacy a {
    color: #285e42;
    font-weight: 700;
}

.contact-submit {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    background: #d0784d;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.contact-submit:hover {
    background: #b9633d;
    transform: translateY(-2px);
}

.contact-notice {
    display: grid;
    gap: 5px;
    margin-bottom: 26px;
    padding: 18px 20px;
    border-radius: 10px;
    line-height: 1.55;
}

.contact-notice-success {
    border: 1px solid #b7d6bf;
    background: #edf7ef;
    color: #235b35;
}

.contact-notice-error {
    border: 1px solid #ebc0b7;
    background: #fff0ed;
    color: #963a2a;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 850px) {
    .contact-hero {
        padding: 58px 0;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-information {
        position: static;
    }
}

@media (max-width: 600px) {
    .contact-form-card {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-submit {
        width: 100%;
    }
}

/* =========================
   Über uns
   ========================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(178, 200, 151, 0.28),
            transparent 30%
        ),
        linear-gradient(115deg, #f6f2e7 0%, #edf2e4 100%);
}

.about-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 80px;
    max-width: 1180px;
    align-items: center;
}

.about-eyebrow {
    margin: 0 0 16px;
    color: #ce754c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.about-hero h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: #0d2b1f;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.about-hero-text {
    max-width: 650px;
    margin: 0;
    color: #405047;
    font-size: 19px;
    line-height: 1.75;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 13px 25px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.about-button:hover {
    transform: translateY(-2px);
}

.about-button-primary {
    background: #d0784d;
    color: #fff;
}

.about-button-primary:hover {
    background: #b9613c;
    color: #fff;
}

.about-button-secondary {
    border: 1px solid #b8c2b8;
    color: #173b2a;
}

.about-button-secondary:hover {
    border-color: #173b2a;
    color: #173b2a;
}

.about-visual {
    position: relative;
    min-height: 460px;
}

.about-visual-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 380px;
    height: 380px;
    overflow: hidden;
    border-radius: 50%;
    background: #dbe5cf;
}

.about-stem {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 8px;
    height: 250px;
    border-radius: 10px;
    background: #345b3d;
    transform: rotate(-8deg);
}

.about-leaf {
    position: absolute;
    z-index: 2;
    width: 115px;
    height: 62px;
    border-radius: 100% 0 100% 0;
    background: #668b5f;
}

.about-leaf-one {
    top: 105px;
    left: 72px;
    transform: rotate(22deg);
}

.about-leaf-two {
    top: 170px;
    right: 55px;
    transform: rotate(202deg);
}

.about-leaf-three {
    top: 235px;
    left: 95px;
    transform: rotate(38deg) scale(0.8);
}

.about-floating-card {
    position: absolute;
    z-index: 3;
    width: 190px;
    padding: 18px 20px;
    border: 1px solid rgba(30, 63, 43, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 40px rgba(22, 54, 37, 0.12);
}

.about-floating-card strong,
.about-floating-card span {
    display: block;
}

.about-floating-card strong {
    margin-bottom: 4px;
    color: #173b2a;
}

.about-floating-card span {
    color: #667269;
    font-size: 13px;
    line-height: 1.5;
}

.about-card-one {
    top: 42px;
    left: -20px;
}

.about-card-two {
    right: -15px;
    bottom: 22px;
}

.about-introduction {
    padding: 100px 0;
}

.about-introduction-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    max-width: 1080px;
}

.about-introduction h2,
.about-section-heading h2,
.about-selection-panel h2,
.about-transparency-card h2,
.about-cta h2 {
    margin: 0;
    color: #0d2b1f;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.about-introduction-copy > p {
    margin: 0 0 20px;
    color: #47564d;
    font-size: 17px;
    line-height: 1.8;
}

.about-introduction-copy blockquote {
    margin: 36px 0 0;
    padding: 25px 0 25px 28px;
    border-left: 4px solid #d0784d;
    color: #173b2a;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.45;
}

.about-values-section {
    padding: 100px 0;
    background: #f5f4ed;
}

.about-values-section .container {
    max-width: 1180px;
}

.about-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.about-section-heading > p:last-child {
    max-width: 650px;
    margin: 20px 0 0;
    color: #59665e;
    font-size: 17px;
    line-height: 1.75;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-value-card {
    position: relative;
    min-height: 310px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #dce1d7;
    border-radius: 18px;
    background: #fff;
}

.about-value-number {
    position: absolute;
    top: 21px;
    right: 25px;
    color: #d7ddd5;
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: 700;
}

.about-value-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 52px;
    border-radius: 50%;
    background: #eaf0e4;
    color: #255239;
    font-weight: 900;
}

.about-value-card h3 {
    margin: 0 0 14px;
    color: #0d2b1f;
    font-size: 24px;
}

.about-value-card p {
    margin: 0;
    color: #5a675f;
    line-height: 1.75;
}

.about-selection-section {
    padding: 110px 0;
}

.about-selection-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    max-width: 1100px;
    align-items: center;
}

.about-selection-panel > p:not(.about-eyebrow) {
    margin: 24px 0;
    color: #536158;
    font-size: 17px;
    line-height: 1.8;
}

.about-selection-panel > a {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    color: #b9603c;
    font-weight: 800;
}

.about-selection-step {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #dce1d8;
}

.about-selection-step:first-child {
    border-top: 1px solid #dce1d8;
}

.about-selection-step > span {
    color: #d0784d;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 700;
}

.about-selection-step h3 {
    margin: 0 0 8px;
    color: #173b2a;
    font-size: 22px;
}

.about-selection-step p {
    margin: 0;
    color: #5b6860;
    line-height: 1.7;
}

.about-transparency-section {
    padding: 0 0 110px;
}

.about-transparency-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1120px;
    padding: 56px;
    box-sizing: border-box;
    border-radius: 22px;
    background: #edf1e7;
}

.about-transparency-card p:not(.about-eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: #516057;
    line-height: 1.75;
}

.about-transparency-links {
    align-self: center;
}

.about-transparency-links a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid #cbd4c7;
    color: #204a34;
    font-weight: 800;
    text-decoration: none;
}

.about-cta-section {
    padding: 90px 0;
    background: #0e3022;
}

.about-cta {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
}

.about-cta h2 {
    color: #fff;
}

.about-cta p:not(.about-eyebrow) {
    max-width: 650px;
    margin: 18px 0 0;
    color: #cbd7cf;
    line-height: 1.7;
}

.about-button-light {
    flex: 0 0 auto;
    background: #f7f3e8;
    color: #143526;
}

.about-button-light:hover {
    background: #fff;
    color: #143526;
}

@media (max-width: 900px) {
    .about-hero-layout,
    .about-introduction-layout,
    .about-selection-layout,
    .about-transparency-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 400px;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .about-transparency-card {
        padding: 42px;
    }
}

@media (max-width: 650px) {
    .about-hero {
        padding: 65px 0 75px;
    }

    .about-hero h1 {
        font-size: 52px;
    }

    .about-visual {
        min-height: 330px;
    }

    .about-visual-circle {
        right: 50%;
        width: 310px;
        height: 310px;
        transform: translateX(50%);
    }

    .about-floating-card {
        width: 160px;
    }

    .about-card-one {
        left: 0;
    }

    .about-card-two {
        right: 0;
        bottom: 0;
    }

    .about-introduction,
    .about-values-section,
    .about-selection-section {
        padding: 70px 0;
    }

    .about-transparency-section {
        padding-bottom: 70px;
    }

    .about-transparency-card {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .about-cta {
        display: block;
    }

    .about-cta .about-button {
        width: 100%;
        margin-top: 30px;
        box-sizing: border-box;
    }
}

/* =========================
   Gartenideen
   ========================= */

.ideas-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(204, 220, 173, 0.55),
            transparent 32%
        ),
        linear-gradient(115deg, #f6f1e5 0%, #edf3e5 100%);
}

.ideas-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 75px;
    max-width: 1180px;
    align-items: center;
}

.ideas-eyebrow {
    margin: 0 0 15px;
    color: #cd744b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.ideas-hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: #0d2b1f;
    font-size: clamp(52px, 7vw, 84px);
    line-height: 1;
    letter-spacing: -0.035em;
}

.ideas-hero-content > p:not(.ideas-eyebrow) {
    max-width: 650px;
    margin: 0;
    color: #44534a;
    font-size: 19px;
    line-height: 1.75;
}

.ideas-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ideas-button {
    display: inline-flex;
    min-height: 52px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s;
}

.ideas-button:hover {
    transform: translateY(-2px);
}

.ideas-button-primary {
    background: #d0784d;
    color: #fff;
}

.ideas-button-primary:hover {
    background: #b9613c;
    color: #fff;
}

.ideas-button-secondary {
    border: 1px solid #aeb9ad;
    color: #173b2a;
}

.ideas-button-secondary:hover {
    border-color: #173b2a;
    color: #173b2a;
}

.ideas-hero-visual {
    position: relative;
    min-height: 440px;
}

.ideas-sun {
    position: absolute;
    top: 18px;
    right: 15px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: #dbe7ca;
}

.ideas-pot {
    position: absolute;
    z-index: 2;
    background: #ce774f;
}

.ideas-pot-large {
    right: 92px;
    bottom: 20px;
    width: 155px;
    height: 130px;
    border-radius: 12px 12px 55px 55px;
}

.ideas-pot-small {
    right: 275px;
    bottom: 22px;
    width: 82px;
    height: 70px;
    border-radius: 8px 8px 30px 30px;
    background: #e0a06f;
}

.ideas-stem {
    position: absolute;
    bottom: 110px;
    left: 73px;
    width: 8px;
    height: 210px;
    border-radius: 10px;
    background: #3d6848;
    transform: rotate(-5deg);
}

.ideas-leaf {
    position: absolute;
    width: 105px;
    height: 55px;
    border-radius: 100% 0 100% 0;
    background: #5e875b;
}

.ideas-leaf-one {
    top: -155px;
    left: -66px;
    transform: rotate(24deg);
}

.ideas-leaf-two {
    top: -100px;
    left: 12px;
    transform: rotate(200deg);
}

.ideas-leaf-three {
    top: -35px;
    left: -60px;
    transform: rotate(37deg) scale(0.8);
}

.ideas-small-stem {
    position: absolute;
    bottom: 55px;
    left: 38px;
    width: 5px;
    height: 100px;
    background: #416f4b;
}

.ideas-small-leaf {
    position: absolute;
    bottom: 110px;
    left: 35px;
    width: 65px;
    height: 36px;
    border-radius: 100% 0 100% 0;
    background: #79a06d;
    transform: rotate(190deg);
}

.ideas-visual-label {
    position: absolute;
    z-index: 4;
    top: 55px;
    left: -12px;
    padding: 18px 22px;
    border: 1px solid rgba(19, 57, 38, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(13, 43, 31, 0.12);
}

.ideas-visual-label strong,
.ideas-visual-label span {
    display: block;
}

.ideas-visual-label strong {
    margin-bottom: 4px;
    color: #173b2a;
}

.ideas-visual-label span {
    color: #647169;
    font-size: 13px;
}

.ideas-categories-section {
    padding: 105px 0;
}

.ideas-categories-section .container,
.ideas-products-section .container {
    max-width: 1180px;
}

.ideas-section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}

.ideas-section-heading h2,
.ideas-tips-introduction h2,
.ideas-products-heading h2,
.ideas-note-layout h2,
.ideas-cta h2 {
    margin: 0;
    color: #0d2b1f;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.ideas-section-heading > p {
    margin: 0;
    color: #59665e;
    line-height: 1.75;
}

.ideas-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ideas-category-card {
    position: relative;
    min-height: 355px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #dce1d7;
    border-radius: 20px;
    background: #f8f7f1;
}

.ideas-category-tools {
    background: #f1f4e9;
}

.ideas-category-balcony {
    background: #f7f1e9;
}

.ideas-category-decoration {
    background: #eef2ec;
}

.ideas-category-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: rgba(25, 65, 43, 0.16);
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 700;
}

.ideas-category-icon {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
    border-radius: 50%;
    background: #fff;
    color: #27553b;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(20, 55, 37, 0.08);
}

.ideas-category-card h3 {
    margin: 0 0 15px;
    color: #0d2b1f;
    font-size: 25px;
}

.ideas-category-card p {
    margin: 0 0 25px;
    color: #59665e;
    line-height: 1.7;
}

.ideas-category-card a {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    color: #af5d3b;
    font-weight: 800;
}

.ideas-tips-section {
    padding: 105px 0;
    background: #0f3022;
}

.ideas-tips-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    max-width: 1100px;
}

.ideas-tips-introduction h2 {
    color: #fff;
}

.ideas-tips-introduction > p:last-child {
    margin: 24px 0 0;
    color: #c5d2c9;
    line-height: 1.75;
}

.ideas-tip {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ideas-tip:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ideas-tip > span {
    color: #da865d;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 700;
}

.ideas-tip h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 21px;
}

.ideas-tip p {
    margin: 0;
    color: #bfcac3;
    line-height: 1.65;
}

.ideas-products-section {
    padding: 105px 0;
    background: #f6f5ef;
}

.ideas-products-heading {
    display: flex;
    gap: 40px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.ideas-products-heading > a {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 6px;
    color: #af5d3b;
    font-weight: 800;
}

.ideas-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ideas-product-grid li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.ideas-note-section {
    padding: 105px 0;
}

.ideas-note-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 70px;
    max-width: 1000px;
    align-items: center;
}

.ideas-note-visual {
    display: flex;
    width: 220px;
    height: 220px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8eedf;
    color: #2f5c3d;
    font-family: Georgia, serif;
    font-size: 150px;
    line-height: 1;
}

.ideas-note-layout > div:last-child > p:last-child {
    max-width: 690px;
    margin: 22px 0 0;
    color: #56635b;
    font-size: 17px;
    line-height: 1.8;
}

.ideas-cta-section {
    padding: 90px 0;
    background: #d17a50;
}

.ideas-cta {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
}

.ideas-cta .ideas-eyebrow {
    color: #ffe3d2;
}

.ideas-cta h2 {
    color: #fff;
}

.ideas-cta p:not(.ideas-eyebrow) {
    max-width: 680px;
    margin: 18px 0 0;
    color: #fff1e9;
    line-height: 1.7;
}

.ideas-button-light {
    flex: 0 0 auto;
    background: #fff;
    color: #173b2a;
}

.ideas-button-light:hover {
    background: #f6f2e8;
    color: #173b2a;
}

@media (max-width: 950px) {
    .ideas-hero-layout,
    .ideas-section-heading,
    .ideas-tips-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ideas-category-grid {
        grid-template-columns: 1fr;
    }

    .ideas-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ideas-hero-visual {
        width: 100%;
        max-width: 500px;
        min-height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .ideas-hero {
        padding: 65px 0 75px;
    }

    .ideas-hero h1 {
        font-size: 50px;
    }

    .ideas-hero-visual {
        min-height: 340px;
    }

    .ideas-sun {
        right: 50%;
        width: 290px;
        height: 290px;
        transform: translateX(50%);
    }

    .ideas-visual-label {
        left: 0;
    }

    .ideas-pot-large {
        right: 80px;
    }

    .ideas-pot-small {
        right: auto;
        left: 30px;
    }

    .ideas-categories-section,
    .ideas-tips-section,
    .ideas-products-section,
    .ideas-note-section {
        padding: 70px 0;
    }

    .ideas-product-grid {
        grid-template-columns: 1fr !important;
    }

    .ideas-products-heading {
        display: block;
    }

    .ideas-products-heading > a {
        margin-top: 20px;
    }

    .ideas-note-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ideas-note-visual {
        width: 150px;
        height: 150px;
        font-size: 100px;
    }

    .ideas-cta {
        display: block;
    }

    .ideas-cta .ideas-button {
        width: 100%;
        margin-top: 30px;
    }
}

/* =========================
   KiraGarten Journal
   ========================= */

.journal-masthead {
    padding: 82px 0 54px;
    background: #f3f0e6;
    border-bottom: 1px solid #d9ddd4;
}

.journal-masthead-inner {
    max-width: 1120px;
}

.journal-kicker {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0 0 28px;
    color: #c86f49;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.journal-kicker span {
    padding-left: 18px;
    border-left: 1px solid #b8beb7;
    color: #617067;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.journal-masthead h1 {
    margin: 0;
    color: #0d2b1f;
    font-size: clamp(58px, 9vw, 108px);
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.journal-introduction {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    margin-top: 42px;
}

.journal-introduction p {
    max-width: 680px;
    margin: 0;
    color: #425249;
    font-size: 19px;
    line-height: 1.7;
}

.journal-edition {
    color: #69756e;
    font-size: 13px;
    font-style: italic;
}

.journal-topic-navigation {
    position: sticky;
    z-index: 20;
    top: 0;
    border-bottom: 1px solid #dce0d8;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.admin-bar .journal-topic-navigation {
    top: 32px;
}

.journal-topic-navigation .container {
    display: flex;
    max-width: 1120px;
    overflow-x: auto;
}

.journal-topic-navigation a {
    flex: 0 0 auto;
    padding: 18px 22px;
    border-right: 1px solid #e1e4de;
    color: #294637;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.journal-topic-navigation a:hover {
    background: #f2f4ed;
    color: #b8603e;
}

.journal-feature-section {
    padding: 100px 0;
}

.journal-feature-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    max-width: 1080px;
    align-items: start;
}

.journal-label {
    margin: 0 0 14px;
    color: #c96d46;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.journal-feature-article h2,
.journal-section-title h2,
.journal-article-heading h2,
.journal-footer-cta h2 {
    margin: 0;
    color: #0d2b1f;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.journal-lead {
    margin: 28px 0 0;
    color: #4e5d54;
    font-size: 18px;
    line-height: 1.8;
}

.journal-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    color: #738078;
    font-size: 13px;
}

.journal-checklist {
    padding: 32px;
    border-top: 4px solid #244c35;
    background: #f1f3eb;
}

.journal-checklist h3 {
    margin: 0 0 24px;
    color: #173b2a;
    font-size: 25px;
}

.journal-checklist ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.journal-checklist li {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #d5dbd2;
    color: #435249;
    line-height: 1.55;
}

.journal-checklist li:last-child {
    border-bottom: 0;
}

.journal-checklist li span {
    color: #bf6743;
    font-family: Georgia, serif;
    font-weight: 700;
}

.journal-guide-overview {
    padding: 95px 0;
    background: #102f22;
}

.journal-guide-overview .container {
    max-width: 1120px;
}

.journal-guide-overview .journal-section-title {
    max-width: 720px;
    margin-bottom: 45px;
}

.journal-guide-overview .journal-section-title h2 {
    color: #fff;
}

.journal-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.journal-guide-card {
    position: relative;
    min-height: 340px;
    padding: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
}

.journal-guide-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.journal-guide-number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(255, 255, 255, 0.18);
    font-family: Georgia, serif;
    font-size: 48px;
}

.journal-guide-category {
    margin: 0 0 70px;
    color: #dc8a63;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.journal-guide-card h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 25px;
    line-height: 1.25;
}

.journal-guide-card > p:not(.journal-guide-category) {
    margin: 0;
    color: #bdc9c1;
    line-height: 1.7;
}

.journal-guide-card strong {
    display: block;
    margin-top: 25px;
    color: #fff;
    font-size: 13px;
}

.journal-article-section {
    padding: 105px 0;
    scroll-margin-top: 70px;
}

.journal-article-muted {
    background: #f4f3ed;
}

.journal-article-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 95px;
    max-width: 1050px;
}

.journal-article-heading {
    position: relative;
}

.journal-article-index {
    display: block;
    margin-bottom: 35px;
    color: #d8ddd6;
    font-family: Georgia, serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
}

.journal-article-content > p {
    margin: 0 0 24px;
    color: #4c5a52;
    font-size: 17px;
    line-height: 1.8;
}

.journal-article-content h3 {
    margin: 35px 0 12px;
    color: #173b2a;
    font-size: 23px;
}

.journal-tip-box {
    margin-top: 38px;
    padding: 25px 28px;
    border-left: 4px solid #d0774d;
    background: #f2f3ec;
}

.journal-tip-box strong {
    color: #b65e3c;
}

.journal-tip-box p {
    margin: 7px 0 0;
    color: #435249;
    line-height: 1.65;
}

.journal-steps {
    margin: 35px 0;
    padding: 0;
    list-style: none;
    counter-reset: journal-step;
}

.journal-steps li {
    position: relative;
    padding: 22px 0 22px 52px;
    border-bottom: 1px solid #d5dad3;
    counter-increment: journal-step;
}

.journal-steps li::before {
    position: absolute;
    top: 22px;
    left: 0;
    content: counter(journal-step, decimal-leading-zero);
    color: #c86b46;
    font-family: Georgia, serif;
    font-weight: 700;
}

.journal-steps strong,
.journal-steps span {
    display: block;
}

.journal-steps strong {
    margin-bottom: 5px;
    color: #193a2a;
}

.journal-steps span {
    color: #5a675f;
    line-height: 1.6;
}

.journal-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 35px 0;
}

.journal-principles > div {
    padding: 22px;
    border: 1px solid #dce0d9;
}

.journal-principles span {
    color: #c86d48;
    font-family: Georgia, serif;
    font-size: 26px;
}

.journal-principles h3 {
    margin: 25px 0 9px;
    font-size: 18px;
}

.journal-principles p {
    margin: 0;
    color: #5c6961;
    font-size: 14px;
    line-height: 1.6;
}

.journal-text-link {
    display: inline-block;
    margin-top: 15px;
    color: #ae5b3a;
    font-weight: 800;
}

.journal-season-section {
    padding: 100px 0;
    background: #e9eee3;
    scroll-margin-top: 70px;
}

.journal-season-section .container {
    max-width: 1120px;
}

.journal-season-section .journal-section-title {
    max-width: 650px;
    margin-bottom: 45px;
}

.journal-season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #cbd3c7;
    border-left: 1px solid #cbd3c7;
}

.journal-season-grid article {
    min-height: 270px;
    padding: 25px;
    border-right: 1px solid #cbd3c7;
    border-bottom: 1px solid #cbd3c7;
}

.journal-season-grid article > span {
    color: #bd6542;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journal-season-grid h3 {
    margin: 45px 0 16px;
    color: #173b2a;
    font-size: 21px;
}

.journal-season-grid ul {
    margin: 0;
    padding-left: 18px;
    color: #57645c;
    font-size: 14px;
    line-height: 1.75;
}

.journal-footer-cta {
    padding: 78px 0;
    background: #d0784d;
}

.journal-footer-cta .container {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
}

.journal-footer-cta .journal-label {
    color: #ffe4d5;
}

.journal-footer-cta h2 {
    max-width: 720px;
    color: #fff;
}

.journal-footer-cta a {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 28px;
    align-items: center;
    padding: 15px 27px;
    border-radius: 999px;
    background: #fff;
    color: #173b2a;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 900px) {
    .journal-introduction,
    .journal-feature-layout,
    .journal-article-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .journal-guide-grid {
        grid-template-columns: 1fr;
    }

    .journal-season-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journal-principles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .journal-masthead {
        padding: 58px 0 40px;
    }

    .journal-masthead h1 {
        font-size: 62px;
    }

    .journal-kicker {
        display: block;
    }

    .journal-kicker span {
        display: block;
        margin-top: 10px;
        padding: 0;
        border: 0;
    }

    .journal-feature-section,
    .journal-guide-overview,
    .journal-article-section,
    .journal-season-section {
        padding: 70px 0;
    }

    .journal-topic-navigation a {
        padding: 15px 17px;
    }

    .journal-season-grid {
        grid-template-columns: 1fr;
    }

    .journal-footer-cta .container {
        display: block;
    }

    .journal-footer-cta a {
        width: 100%;
        margin-top: 30px;
        box-sizing: border-box;
        justify-content: center;
    }
}

/* Related products title */
.single-product .related.products {
    margin-top: 65px;
}

.single-product .related.products > h2 {
    margin: 0 0 28px !important;
    color: #0d2b1f;
    font-size: 38px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em;
}

@media (max-width: 650px) {
    .single-product .related.products {
        margin-top: 45px;
    }

    .single-product .related.products > h2 {
        margin-bottom: 22px !important;
        font-size: 30px !important;
    }
}