/* ============================================================
   GoldenPaw — Widget & Section Styles (widgets.css)
   ============================================================ */

/* =====================  Global Header (navbar)  ===================== */
.gp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(245, 241, 233, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gp-border);
  box-shadow: 0 1px 0 rgba(44, 41, 37, 0.04);
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.gp-header--hero:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
.gp-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.gp-header__brand { display: flex; align-items: center; gap: 8px; }
.gp-header__logo {
  width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gp-brand); color: #fff; flex-shrink: 0;
}
.gp-header__logo svg { width: 22px; height: 22px; }
.gp-header__brandtext { font-family: var(--gp-font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }

.gp-header__nav { display: none; align-items: center; gap: 40px; }
@media (min-width: 768px) { .gp-header__nav { display: flex; } }
.gp-nav-item { position: relative; }
.gp-nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; padding: 24px 0; transition: color 0.25s;
}
.gp-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gp-brand); border-radius: 2px; transition: width 0.25s;
}
.gp-nav-link:hover::after { width: 100%; }
.gp-nav-caret { transition: transform 0.25s; }
.gp-nav-item:hover .gp-nav-caret { transform: rotate(180deg); }
.gp-nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 180px; padding-top: 8px;
  opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
}
.gp-nav-item:hover .gp-nav-dropdown { opacity: 1; visibility: visible; }
.gp-nav-dropdown__panel {
  background: var(--gp-background); border: 1px solid var(--gp-border);
  border-radius: 16px; padding: 8px; box-shadow: var(--gp-shadow-lg);
}
.gp-nav-dropdown a {
  display: block; padding: 10px 16px; border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--gp-ink-secondary); transition: background-color 0.2s;
}
.gp-nav-dropdown a:hover { background: rgba(0, 0, 0, 0.05); color: var(--gp-brand); }

.gp-header__icons { display: flex; align-items: center; gap: 16px; }
.gp-header__icon {
  position: relative; padding: 8px; border-radius: 999px; background: transparent; border: none;
  display: inline-flex; color: currentColor; transition: background-color 0.2s;
}
.gp-header__icon:hover { background: rgba(0, 0, 0, 0.05); }
.gp-header__badge {
  position: absolute; top: 0; right: 0; width: 16px; height: 16px; border-radius: 999px;
  background: var(--gp-accent); color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.gp-header__menu-btn { display: inline-flex; padding: 8px; border-radius: 999px; background: transparent; border: none; }
@media (min-width: 768px) { .gp-header__menu-btn { display: none; } }

/* Text color states (hero overlay → solid) */
.gp-header__brand, .gp-header__icon, .gp-nav-link { color: var(--gp-ink-secondary); }
.gp-header--hero:not(.scrolled) .gp-header__brand,
.gp-header--hero:not(.scrolled) .gp-header__icon,
.gp-header--hero:not(.scrolled) .gp-nav-link { color: #fff; }
.gp-header--hero:not(.scrolled) .gp-nav-link:hover { color: var(--gp-brand-light); }
.gp-header.scrolled .gp-header__brand { color: var(--gp-ink); }
.gp-header.scrolled .gp-nav-link, .gp-header.scrolled .gp-header__icon { color: var(--gp-ink-secondary); }
.gp-header.scrolled .gp-nav-link:hover { color: var(--gp-brand); }

/* Mobile menu */
.gp-mobile-menu { display: none; }
.gp-mobile-menu.is-open { display: block; }
@media (min-width: 768px) { .gp-mobile-menu { display: none !important; } }
.gp-mobile-menu__inner { background: var(--gp-background); border-top: 1px solid var(--gp-border); padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 16px; }
.gp-mobile-menu a { font-weight: 500; color: var(--gp-ink-secondary); }

/* =====================  Hero  ===================== */
.gp-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.gp-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(44,41,37,0.85) 0%, rgba(44,41,37,0.6) 38%, rgba(44,41,37,0.25) 68%, rgba(44,41,37,0.06) 100%);
}
.gp-hero__content { position: relative; z-index: 10; width: 100%; padding: 112px 0 96px; }
.gp-hero__box { max-width: 640px; }
.gp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(245, 241, 233, 0.16); color: var(--gp-background); backdrop-filter: blur(4px); margin-bottom: 24px;
}
.gp-hero__badge-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gp-brand-light); }
.gp-hero__title { font-size: 44px; line-height: 1.05; font-weight: 700; color: #fff; margin-bottom: 24px; letter-spacing: -0.02em; }
@media (min-width: 1024px) { .gp-hero__title { font-size: 72px; } }
.gp-hero__desc { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 512px; margin-bottom: 32px; }
@media (min-width: 1024px) { .gp-hero__desc { font-size: 20px; } }
.gp-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.gp-hero__stats { display: flex; align-items: center; gap: 32px; margin-top: 48px; }
.gp-hero__stat { display: flex; flex-direction: column; gap: 2px; }
.gp-hero__stat-num { font-family: var(--gp-font-display); font-size: 30px; font-weight: 700; color: #fff; line-height: 1.1; }
.gp-hero__stat-label { font-size: 14px; color: rgba(255,255,255,0.7); }
.gp-hero__stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.gp-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.gp-hero__scroll:hover { color: #fff; }

/* =====================  Trust badges  ===================== */
.gp-trust { background: #fff; padding: 80px 0; }
@media (min-width: 1024px) { .gp-trust { padding: 100px 0; } }
.gp-trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
@media (min-width: 768px) { .gp-trust__grid { grid-template-columns: repeat(4, 1fr); } }
.gp-trust__item .feature-icon { margin: 0 auto 16px; }
.gp-trust__item h3 { font-family: var(--gp-font-display); font-weight: 700; margin-bottom: 4px; color: var(--gp-ink); }
.gp-trust__item p { font-size: 14px; color: var(--gp-ink-muted); margin: 0; }

.feature-icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gp-surface-3); color: var(--gp-brand);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-icon i { font-size: 26px; }

/* =====================  Categories  ===================== */
.gp-categories { background: var(--gp-background); padding: 100px 0; }
.gp-section-head { text-align: center; max-width: 608px; margin: 0 auto 56px; }
.gp-section-head .badge { margin-bottom: 16px; }
.gp-section-head h2 { font-size: 36px; font-weight: 700; color: var(--gp-ink); margin-bottom: 16px; }
@media (min-width: 1024px) { .gp-section-head h2 { font-size: 48px; } }
.gp-section-head p { font-size: 18px; color: var(--gp-ink-secondary); margin: 0; }
.gp-section-head--left { text-align: left; margin: 0 0 40px; }

.gp-category-card {
  background: #fff; border: 1px solid var(--gp-border); border-radius: 24px;
  padding: 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.gp-category-card:hover { transform: translateY(-4px); box-shadow: var(--gp-shadow-md); border-color: var(--gp-brand); }
.gp-category-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
  color: var(--gp-brand); background: rgba(138, 154, 91, 0.10);
}
.gp-categories .gp-category-card:nth-child(even) .gp-category-icon {
  color: var(--gp-accent); background: rgba(192, 107, 62, 0.10);
}
.gp-category-icon svg { width: 28px; height: 28px; }
.gp-category-icon i { font-size: 28px; }
.gp-category-card:hover .gp-category-icon { transform: scale(1.1) rotate(-4deg); }
.gp-category-card h3 { font-family: var(--gp-font-display); font-weight: 700; color: var(--gp-ink); margin: 0; }

/* =====================  Product grid  ===================== */
.gp-products { background: #fff; }
.gp-products__head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
@media (min-width: 768px) { .gp-products__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.gp-products__head h2 { font-size: 36px; font-weight: 700; color: var(--gp-ink); margin: 0; }
@media (min-width: 1024px) { .gp-products__head h2 { font-size: 48px; } }
.gp-products__titlegroup { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.gp-products__viewall { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--gp-brand); transition: opacity 0.2s; }
.gp-products__viewall:hover { opacity: 0.8; }

.gp-product-card { display: flex; flex-direction: column; overflow: hidden; }
.gp-product-media { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--gp-background); }
.gp-product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gp-product-card:hover .gp-product-img { transform: scale(1.06); }
.gp-product-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #fff;
}
.gp-product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.gp-product-cat { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.gp-product-title { font-family: var(--gp-font-display); font-weight: 700; font-size: 18px; color: var(--gp-ink); margin-bottom: 8px; }
.gp-product-desc { font-size: 14px; color: var(--gp-ink-muted); margin-bottom: 16px; }
.gp-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.gp-product-price { font-family: var(--gp-font-display); font-size: 20px; font-weight: 700; color: var(--gp-ink); }

/* =====================  Story  ===================== */
.gp-story { background: var(--gp-background); }
.gp-story__grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .gp-story__grid { grid-template-columns: 1fr 1fr; } }
.gp-story__media { position: relative; }
.gp-story__img { border-radius: 32px; overflow: hidden; box-shadow: var(--gp-shadow-lg); }
.gp-story__card {
  position: absolute; bottom: -32px; right: -8px; max-width: 240px;
  background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--gp-shadow-lg);
}
@media (min-width: 1024px) { .gp-story__card { right: -32px; } }
.gp-story__year { font-family: var(--gp-font-display); font-size: 36px; font-weight: 700; color: var(--gp-brand); margin-bottom: 4px; }
.gp-story__card-title { font-weight: 600; color: var(--gp-ink); margin-bottom: 8px; }
.gp-story__card-desc { font-size: 14px; color: var(--gp-ink-muted); margin: 0; }
.gp-story__content h2 { font-size: 36px; font-weight: 700; color: var(--gp-ink); margin-bottom: 24px; }
@media (min-width: 1024px) { .gp-story__content h2 { font-size: 48px; } }
.gp-story__content .badge { margin-bottom: 16px; }
.gp-story__content p { font-size: 18px; line-height: 1.7; color: var(--gp-ink-secondary); margin-bottom: 24px; }
.gp-story__list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.gp-story__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--gp-ink-secondary); }
.gp-story__check {
  width: 24px; height: 24px; border-radius: 999px; flex-shrink: 0; margin-top: 2px;
  background: rgba(138, 154, 91, 0.15); display: flex; align-items: center; justify-content: center;
}

/* =====================  Promo banner  ===================== */
.gp-promo { position: relative; padding: 96px 24px; overflow: hidden; }
@media (min-width: 1024px) { .gp-promo { padding: 128px 48px; } }
.gp-promo__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gp-promo__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(44,41,37,0.75) 0%, rgba(44,41,37,0.35) 60%, rgba(44,41,37,0.15) 100%);
}
.gp-promo__content { position: relative; z-index: 10; max-width: 576px; }
.gp-promo__content h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 24px; }
@media (min-width: 1024px) { .gp-promo__content h2 { font-size: 60px; } }
.gp-promo__content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 32px; }

/* =====================  Reviews  ===================== */
.gp-reviews { background: #fff; }
.gp-testimonial {
  background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gp-testimonial:hover { transform: translateY(-6px); box-shadow: var(--gp-shadow-md); }
.gp-testimonial__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.gp-testimonial__stars svg { width: 18px; height: 18px; fill: var(--gp-warning); }
.gp-testimonial__text { font-size: 15px; line-height: 1.7; color: var(--gp-ink-secondary); margin-bottom: 24px; }
.gp-testimonial__author { display: flex; align-items: center; gap: 12px; }
.gp-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff;
}
.gp-testimonial__name { font-weight: 700; font-size: 14px; color: var(--gp-ink); }
.gp-testimonial__role { font-size: 12px; color: var(--gp-ink-muted); }

/* =====================  Newsletter  ===================== */
.gp-newsletter { background: var(--gp-background); }
.gp-newsletter__card {
  position: relative; overflow: hidden; border-radius: 40px; padding: 40px;
  background: var(--gp-brand); text-align: center;
}
@media (min-width: 1024px) { .gp-newsletter__card { padding: 64px; } }
.gp-newsletter__blob1, .gp-newsletter__blob2 { position: absolute; border-radius: 999px; background: #fff; opacity: 0.2; }
.gp-newsletter__blob1 { top: 0; right: 0; width: 256px; height: 256px; transform: translate(30%, -30%); }
.gp-newsletter__blob2 { bottom: 0; left: 0; width: 192px; height: 192px; transform: translate(-30%, 30%); opacity: 0.15; }
.gp-newsletter__inner { position: relative; z-index: 10; }
.gp-newsletter__inner h2 { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 16px; }
@media (min-width: 1024px) { .gp-newsletter__inner h2 { font-size: 48px; } }
.gp-newsletter__desc { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 576px; margin: 0 auto 32px; }
.gp-newsletter__btn {
  background: #fff; color: var(--gp-brand-dark); border: none; border-radius: 999px;
  padding: 16px 32px; font-weight: 600; font-size: 14px; letter-spacing: 0.04em; cursor: pointer;
  display: inline-block; transition: transform 0.25s, box-shadow 0.25s;
}
.gp-newsletter__btn:hover { transform: translateY(-2px); box-shadow: var(--gp-shadow-md); }
.gp-newsletter__form { display: flex; flex-direction: column; gap: 12px; max-width: 512px; margin: 0 auto; }
@media (min-width: 640px) { .gp-newsletter__form { flex-direction: row; } }
.newsletter-input {
  flex: 1; background: #fff; border: 1.5px solid var(--gp-border); border-radius: 999px;
  padding: 16px 24px; font-size: 15px; outline: none; transition: border-color 0.25s; color: var(--gp-foreground);
}
.newsletter-input:focus { border-color: var(--gp-brand); }
.gp-newsletter__note { color: rgba(255,255,255,0.7); font-size: 12px; margin-top: 16px; }

/* =====================  Global Footer  ===================== */
.gp-footer { background: var(--gp-ink); color: var(--gp-background); }
.gp-footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 64px 0 48px; }
@media (min-width: 768px) { .gp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gp-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.gp-footer__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.gp-footer__brandtext { font-family: var(--gp-font-display); font-size: 24px; font-weight: 700; }
.gp-footer__tagline { font-size: 14px; line-height: 1.7; opacity: 0.8; max-width: 300px; margin-bottom: 24px; }
.gp-footer__social { display: flex; gap: 12px; }
.gp-footer__social a {
  width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: background-color 0.2s;
}
.gp-footer__social a:hover { background: rgba(255,255,255,0.16); }
.gp-footer__col-head { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 0; margin-bottom: 20px; font-family: var(--gp-font-display); font-weight: 700; font-size: 17px; color: var(--gp-background); text-align: left; cursor: default; }
.gp-footer__col-caret { display: none; }
.gp-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; opacity: 0.8; }
.gp-footer__col a:hover { color: #fff; }
.gp-footer__bottom {
  padding-top: 32px; padding-bottom: 36px; border-top: 1px solid rgba(245, 241, 233, 0.12);
  display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 16px; font-size: 14px; opacity: 0.6;
}
@media (min-width: 768px) { .gp-footer__bottom { flex-direction: row; } }
.gp-footer__legal { display: flex; gap: 24px; }
.gp-footer__legal a:hover { color: #fff; }

@media (max-width: 767px) {
  .gp-footer__grid { grid-template-columns: 1fr; gap: 0; padding: 40px 0 0; }
  .gp-footer__brand-col { padding-bottom: 28px; }
  .gp-footer__tagline { max-width: none; margin-bottom: 16px; }
  .gp-footer__col { border-top: 1px solid rgba(245, 241, 233, 0.12); }
  .gp-footer__col-head { display: flex; align-items: center; justify-content: space-between; width: 100%; margin: 0; padding: 16px 0; font-size: 16px; cursor: pointer; }
  .gp-footer__col-caret { display: inline-flex; opacity: 0.6; transition: transform 0.2s; }
  .gp-footer__col.is-open .gp-footer__col-caret { transform: rotate(180deg); }
  .gp-footer__col:not(.is-open) ul { display: none; }
  .gp-footer__col ul { padding: 0 0 16px; }
  .gp-footer__bottom { padding-top: 24px; }
}

/* =================== GoldenPaw 1:1 fidelity overrides =================== */
/* 标题字重统一为 600（避免过粗） */
.gp-trust__item h3, .gp-section-head h2, .gp-category-card h3, .gp-products__head h2,
.gp-product-title, .gp-product-price, .gp-story__content h2, .gp-story__year,
.gp-testimonial__name, .gp-hero__title, .gp-hero__stat-num, .gp-promo__content h2,
.gp-newsletter__inner h2, .gp-footer__brandtext, .gp-footer__col h4, .gp-story__card-title {
  font-weight: 600;
}
/* 图标继承品牌色（Elementor FA 图标为填充型 SVG） */
.gp-category-icon svg, .feature-icon svg { fill: currentColor; }
/* 区块内统一 section 纵向间距，避免贴边/间距不一 */
.gp-products, .gp-story, .gp-trust, .gp-categories, .gp-newsletter {
  padding: 100px 24px;
}
@media (min-width: 1024px) {
  .gp-products, .gp-story, .gp-trust, .gp-categories, .gp-newsletter {
    padding: 120px 48px;
  }
}

/* =================== Page hero =================== */
.gp-page-hero { background: var(--gp-background); }
.gp-page-hero__box { max-width: 768px; }
.gp-page-hero__box--center { margin: 0 auto; text-align: center; }
.gp-page-hero__box .badge { margin-bottom: 16px; }
.gp-page-hero__title { font-size: 44px; line-height: 1.12; font-weight: 600; color: var(--gp-ink); margin-bottom: 16px; }
@media (min-width: 1024px) { .gp-page-hero__title { font-size: 60px; } }
.gp-page-hero__desc { font-size: 18px; line-height: 1.7; color: var(--gp-ink-secondary); margin: 0; }
@media (min-width: 1024px) { .gp-page-hero__desc { font-size: 20px; } }
.gp-page-hero__search {
  display: flex; align-items: center; gap: 12px; margin-top: 32px; max-width: 560px;
  background: #fff; border: 1px solid var(--gp-border); border-radius: 999px; padding: 14px 24px; color: var(--gp-ink-muted);
}
.gp-page-hero__box--center .gp-page-hero__search { margin-left: auto; margin-right: auto; }
.gp-page-hero__search input { flex: 1; border: none; outline: none; background: transparent; color: var(--gp-ink); font-size: 15px; }
@media (min-width: 1024px) { .gp-page-hero__title { font-size: 60px; } }

/* =================== Story Origin =================== */
.gp-story-origin { background: #fff; }
.gp-story-origin__grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .gp-story-origin__grid { grid-template-columns: 1fr 1fr; } }
.gp-story-origin__media img { border-radius: 32px; overflow: hidden; box-shadow: var(--gp-shadow-lg); width: 100%; }
.gp-story-origin__content .badge { margin-bottom: 16px; }
.gp-story-origin__content h2 { font-size: 36px; font-weight: 600; color: var(--gp-ink); margin-bottom: 24px; }
@media (min-width: 1024px) { .gp-story-origin__content h2 { font-size: 48px; } }
.gp-story-origin__content p { font-size: 18px; line-height: 1.7; color: var(--gp-ink-secondary); margin-bottom: 24px; }
.gp-story-origin__list { list-style: none; margin: 0 0 8px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.gp-story-origin__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--gp-ink-secondary); }
.gp-story-origin__check { width: 24px; height: 24px; border-radius: 999px; flex-shrink: 0; margin-top: 2px; background: rgba(138,154,91,0.15); display: flex; align-items: center; justify-content: center; }

/* =================== Heritage Timeline =================== */
.gp-timeline { background: var(--gp-background); }
.gp-timeline__inner { max-width: 768px; margin: 0 auto; }
.gp-timeline__track { position: relative; padding-left: 16px; }
.gp-timeline__track::before { content: ''; position: absolute; top: 0; bottom: 0; left: 16px; width: 2px; transform: translateX(-50%); background: var(--gp-brand); }
.gp-timeline__item { position: relative; padding-left: 48px; margin-bottom: 48px; }
.gp-timeline__item:last-child { margin-bottom: 0; }
.gp-timeline__dot { position: absolute; left: 8px; top: 4px; width: 32px; height: 32px; border-radius: 999px; background: var(--gp-brand); display: flex; align-items: center; justify-content: center; }
.gp-timeline__dot::after { content: ''; width: 10px; height: 10px; border-radius: 999px; background: #fff; }
.gp-timeline__year { font-family: var(--gp-font-display); font-size: 24px; font-weight: 600; color: var(--gp-brand-dark); margin-bottom: 4px; }
.gp-timeline__item h3 { font-size: 18px; font-weight: 600; color: var(--gp-ink); margin-bottom: 4px; }
.gp-timeline__item p { color: var(--gp-ink-secondary); max-width: 512px; margin: 0; }

/* =================== Team & Values =================== */
.gp-team { background: #fff; }
.gp-team__card { padding: 32px; text-align: center; }
.gp-team__avatar { width: 80px; height: 80px; margin: 0 auto 16px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-family: var(--gp-font-display); font-size: 24px; font-weight: 600; color: #fff; background: var(--gp-brand); }
.gp-team__avatar--accent { background: var(--gp-accent); }
.gp-team__card h3 { font-size: 20px; font-weight: 600; color: var(--gp-ink); margin-bottom: 4px; }
.gp-team__role { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gp-brand); margin-bottom: 12px; }
.gp-team__role--accent { color: var(--gp-accent); }
.gp-team__card p, .gp-values__item p, .gp-benefits__item p { font-size: 15px; color: var(--gp-ink-muted); margin: 0; }
.gp-values { background: var(--gp-background); }
.gp-values__item, .gp-benefits__item { display: flex; flex-direction: column; align-items: center; }
.gp-values__item .feature-icon, .gp-benefits__item .feature-icon { margin-bottom: 16px; }
.gp-values__item h3, .gp-benefits__item h3 { font-size: 20px; font-weight: 600; color: var(--gp-ink); margin-bottom: 8px; }
.gp-values__item p, .gp-benefits__item p { max-width: 320px; }
.gp-benefits { background: var(--gp-background); }

/* =================== Breadcrumb =================== */
.gp-breadcrumb { padding: 48px 0 36px; }
.gp-breadcrumb nav.gp-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gp-ink-muted); }
.gp-breadcrumb a { color: inherit; text-decoration: none; transition: color 0.2s; }
.gp-breadcrumb a:hover { color: var(--gp-brand); }
.gp-breadcrumb nav.gp-breadcrumb > span:not(.gp-breadcrumb__current) { opacity: 0.55; }
.gp-breadcrumb__current { color: var(--gp-brand); }

/* =================== Product Detail =================== */
.gp-pdp-detail { padding-bottom: 96px; }
.gp-pdp-detail__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .gp-pdp-detail__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.gp-pdp-gallery { display: flex; flex-direction: column-reverse; gap: 16px; }
@media (min-width: 1024px) { .gp-pdp-gallery { flex-direction: row-reverse; gap: 20px; } }
.gp-pdp-gallery__main { position: relative; overflow: hidden; border-radius: 32px; border: 1px solid var(--gp-border); background: var(--gp-background); aspect-ratio: 1 / 1; flex: 1; }
.gp-pdp-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-pdp-gallery__thumbs { display: flex; gap: 12px; order: 1; }
@media (min-width: 1024px) { .gp-pdp-gallery__thumbs { flex-direction: column; order: 2; } }
.gp-pdp-gallery__thumb { width: 64px; height: 64px; border-radius: 16px; overflow: hidden; border: 2px solid transparent; background: #fff; cursor: pointer; padding: 0; flex-shrink: 0; transition: border-color 0.2s, opacity 0.2s; opacity: 0.8; }
.gp-pdp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-pdp-gallery__thumb:hover { opacity: 1; }
.gp-pdp-gallery__thumb.is-active { border-color: var(--gp-brand); opacity: 1; }
.gp-pdp-detail__tag { position: absolute; top: 16px; left: 16px; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #fff; background: var(--gp-brand); }
.gp-pdp-gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); color: var(--gp-ink); cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.12); transition: background 0.2s; }
.gp-pdp-gallery__nav:hover { background: #fff; }
.gp-pdp-gallery__nav--prev { left: 12px; }
.gp-pdp-gallery__nav--next { right: 12px; }
.gp-pdp-gallery.has-multi .gp-pdp-gallery__nav { display: flex; }
.gp-pdp-detail__cat { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gp-brand); margin-bottom: 8px; }
.gp-pdp-detail__info h1 { font-size: 40px; font-weight: 600; color: var(--gp-ink); margin-bottom: 16px; }
@media (min-width: 1024px) { .gp-pdp-detail__info h1 { font-size: 48px; } }
.gp-pdp-detail__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.gp-pdp-detail__stars { display: flex; gap: 3px; }
.gp-pdp-detail__stars svg { width: 18px; height: 18px; }
.gp-pdp-detail__count { font-size: 14px; color: var(--gp-ink-muted); }
.gp-pdp-detail__desc { font-size: 18px; line-height: 1.7; color: var(--gp-ink-secondary); margin-bottom: 24px; }
.gp-pdp-detail__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.gp-pdp-detail__now { font-family: var(--gp-font-display); font-size: 32px; font-weight: 600; color: var(--gp-ink); }
.gp-pdp-detail__price del { font-size: 18px; color: var(--gp-ink-muted); }
.gp-pdp-detail__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.gp-pdp-detail__qty { display: inline-flex; align-items: center; border: 1px solid var(--gp-border); background: #fff; border-radius: 999px; }
.gp-pdp-detail__qty button { width: 48px; height: 48px; border: none; background: transparent; font-size: 20px; color: var(--gp-ink); border-radius: 999px; cursor: pointer; }
.gp-pdp-detail__qty button:hover { background: rgba(0,0,0,0.05); }
.gp-pdp-detail__qty span { width: 40px; text-align: center; font-weight: 600; color: var(--gp-ink); }
.gp-pdp-detail__add, .gp-pdp-detail__subscribe { flex: 1; }
.gp-pdp-detail__checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.gp-pdp-detail__checks li { display: flex; align-items: center; gap: 12px; color: var(--gp-ink-secondary); }
.gp-pdp-detail__trust { display: flex; flex-direction: column; gap: 14px; margin: 4px 0 24px; }
.gp-pdp-detail__trust-note { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gp-ink-secondary); }
.gp-pdp-detail__payments { display: flex; flex-wrap: wrap; gap: 8px; }
.gp-pdp-pay { padding: 6px 12px; border: 1px solid var(--gp-border); border-radius: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: var(--gp-ink-secondary); background: #fff; }

@media (max-width: 768px) {
  .gp-pdp-detail__grid { gap: 32px; }
  .gp-pdp-detail__info h1 { font-size: 30px; margin-bottom: 12px; }
  .gp-pdp-detail__desc { font-size: 16px; }
  .gp-pdp-detail__now { font-size: 28px; }
  .gp-pdp-detail__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .gp-pdp-detail__qty { align-self: flex-start; }
  .gp-pdp-detail__add, .gp-pdp-detail__subscribe { width: 100%; flex: none; white-space: nowrap; }
  .gp-pdp-gallery { gap: 12px; }
  .gp-pdp-gallery__thumb { width: 56px; height: 56px; }
}

/* =================== Product Info =================== */
.gp-pdp-info { background: #fff; }
.gp-pdp-info__tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.gp-pdp-info__pill { padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--gp-ink-secondary); border: 1px solid var(--gp-border); background: #fff; }
.gp-pdp-info__pill--active { background: var(--gp-brand); color: #fff; border-color: var(--gp-brand); }
.gp-pdp-info__content { max-width: 768px; }
.gp-pdp-info__block { margin-bottom: 40px; }
.gp-pdp-info__block h3 { font-size: 24px; font-weight: 600; color: var(--gp-ink); margin-bottom: 12px; }
.gp-pdp-info__block p { color: var(--gp-ink-secondary); line-height: 1.7; margin: 0; }
.gp-pdp-info__text p { color: var(--gp-ink-secondary); line-height: 1.8; margin: 0 0 16px; }
.gp-pdp-info__text p:last-child { margin-bottom: 0; }

/* =================== Product Reviews =================== */
.gp-reviews--product { background: var(--gp-background); }
.gp-reviews__layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .gp-reviews__layout { grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; } }
.gp-reviews__summary { display: grid; gap: 32px; }
.gp-reviews__avg { display: flex; flex-direction: column; gap: 8px; }
.gp-reviews__score { font-family: var(--gp-font-display); font-size: 56px; font-weight: 600; line-height: 1; color: var(--gp-ink); }
.gp-reviews__stars { display: flex; gap: 3px; }
.gp-reviews__heading { font-size: 14px; color: var(--gp-ink-muted); }
.gp-reviews__bars { display: flex; flex-direction: column; gap: 10px; }
.gp-reviews__bar { display: grid; grid-template-columns: 44px 1fr 28px; align-items: center; gap: 12px; font-size: 13px; color: var(--gp-ink-secondary); }
.gp-reviews__bar-label { display: flex; align-items: center; gap: 4px; }
.gp-reviews__bar-track { height: 8px; border-radius: 999px; background: rgba(0,0,0,0.06); overflow: hidden; }
.gp-reviews__bar-fill { display: block; height: 100%; border-radius: 999px; background: var(--gp-warning); }
.gp-reviews__bar-count { text-align: right; }
.gp-reviews__list { display: grid; gap: 20px; }
.gp-reviews__empty { padding: 24px; border: 1px dashed var(--gp-border); border-radius: 24px; text-align: center; color: var(--gp-ink-muted); }
.gp-review-card { background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 24px; }
.gp-review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gp-review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gp-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.gp-review-card__meta { display: flex; flex-direction: column; gap: 2px; }
.gp-review-card__author { font-weight: 600; color: var(--gp-ink); }
.gp-review-card__date { margin-left: auto; font-size: 13px; color: var(--gp-ink-muted); }
.gp-review-card__body { color: var(--gp-ink-secondary); line-height: 1.7; margin: 0; }
.gp-review-card__images { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gp-review-card__images img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; border: 1px solid var(--gp-border); transition: transform 0.2s; }
.gp-review-card__images a:hover img { transform: scale(1.05); }
.gp-reviews__form { grid-column: 1 / -1; background: #fff; border: 1px solid var(--gp-border); border-radius: 28px; padding: 40px 44px; }
.gp-reviews__form h3 { font-size: 26px; font-weight: 600; color: var(--gp-ink); margin-bottom: 4px; }
.gp-reviews__form p.gp-reviews__form-note { font-size: 14px; color: var(--gp-ink-muted); margin: 0 0 8px; }
.gp-reviews__form .comment-form { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 20px; }
@media (min-width: 840px) { .gp-reviews__form .comment-form { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.gp-reviews__form .comment-form .gp-form-field.comment-form-comment,
.gp-reviews__form .comment-form .comment-form-rating,
.gp-reviews__form .comment-form .gp-review-images,
.gp-reviews__form .comment-form .form-submit { grid-column: 1 / -1; }
.gp-reviews__form .comment-form .comment-form-cookies-consent { grid-column: 1 / -1; }
.gp-reviews__form .comment-form .comment-form-rating { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.gp-reviews__form .comment-form .comment-form-rating > label { margin: 0; }
.gp-reviews__form .gp-star-field { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.gp-reviews__form .gp-star-field input { position: absolute; opacity: 0; pointer-events: none; }
.gp-reviews__form .gp-star-field label { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin: 0; font-size: 24px; line-height: 1; color: #d9d3c8; cursor: pointer; transition: color 0.15s ease, transform 0.15s ease; }
.gp-reviews__form .gp-star-field label:before { content: '★'; }
.gp-reviews__form .gp-star-field label:hover { transform: scale(1.12); }
.gp-reviews__form .gp-star-field input:checked ~ label,
.gp-reviews__form .gp-star-field label:hover,
.gp-reviews__form .gp-star-field label:hover ~ label { color: var(--gp-warning); }
.gp-reviews__form .gp-star-field input:focus-visible + label { outline: 2px solid var(--gp-brand); outline-offset: 2px; border-radius: 8px; }
.gp-reviews__form input[type="submit"].gp-reviews__submit {
	width: 100%; background: var(--gp-brand); color: var(--gp-brand-foreground); border: none; border-radius: 999px;
	padding: 17px 28px; font-family: var(--gp-font-body); font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
	cursor: pointer; transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.gp-reviews__form input[type="submit"].gp-reviews__submit:hover { background: var(--gp-brand-dark); transform: translateY(-2px); box-shadow: var(--gp-shadow-sage); }
.gp-form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--gp-ink); margin-bottom: 8px; }
.gp-form-field input[type="text"], .gp-form-field input[type="email"], .gp-form-field input[type="url"], .gp-form-field textarea {
	width: 100%; border: 1px solid var(--gp-border); border-radius: 14px; padding: 14px 16px; font-size: 15px; color: var(--gp-ink); background: #fff; font-family: inherit; box-sizing: border-box;
}
.gp-form-field input:focus, .gp-form-field textarea:focus { outline: 2px solid var(--gp-brand); border-color: transparent; }
.gp-form-field textarea { min-height: 132px; resize: vertical; }
.gp-review-images > label { text-align: left; }
.gp-review-images__box { position: relative; border: 2px dashed var(--gp-border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.gp-review-images__box:hover { border-color: var(--gp-brand); background: rgba(138,154,91,0.06); }
.gp-review-images__hint { font-size: 14px; color: var(--gp-ink-muted); }
.gp-review-images input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.gp-review-images__preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; justify-content: center; }
.gp-review-images__preview img { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; border: 1px solid var(--gp-border); }
.gp-reviews__form .form-submit { margin-top: 6px; }
.gp-reviews__form .comment-form-cookies-consent { text-align: center; font-size: 13px; color: var(--gp-ink-muted); }

/* =================== Header Search =================== */
.gp-header__search { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--gp-border); box-shadow: 0 16px 40px rgba(0,0,0,0.10); padding: 18px var(--gp-container-pad, 24px); }
.gp-header__search[hidden] { display: none; }
.gp-header__search-form { display: flex; gap: 12px; align-items: center; max-width: 760px; margin: 0 auto; }
.gp-header__search-form input[type="search"] { flex: 1; border: 1px solid var(--gp-border); border-radius: 999px; padding: 13px 18px; font-size: 15px; color: var(--gp-ink); background: #fff; font-family: inherit; }
.gp-header__search-form input[type="search"]:focus { outline: 2px solid var(--gp-brand); border-color: transparent; }
.gp-header__search-submit { flex-shrink: 0; }
.gp-header__search-close { background: none; border: none; font-size: 28px; line-height: 1; color: var(--gp-ink-muted); cursor: pointer; padding: 0 6px; }
.gp-header__search-close:hover { color: var(--gp-ink); }

@media (max-width: 768px) {
  .gp-reviews__layout { gap: 32px; }
  .gp-reviews__form { padding: 28px 20px; }
  .gp-review-card { padding: 20px; }
  .gp-pdp-info__content { max-width: 100%; }
}

/* =================== Empty Cart =================== */
.gp-cart-empty { padding: 80px 0 96px; }
.gp-cart-empty__inner { text-align: center; max-width: 560px; margin: 0 auto 72px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.gp-cart-empty__icon { width: 88px; height: 88px; border-radius: 50%; background: var(--gp-brand-muted); color: var(--gp-brand-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.gp-cart-empty__title { font-size: 36px; font-weight: 700; color: var(--gp-ink); margin: 0; }
.gp-cart-empty__sub { font-size: 18px; color: var(--gp-ink-secondary); margin: 0 0 16px; }
.gp-cart-empty__cta { margin-top: 8px; }
.gp-cart-empty__heading { text-align: center; font-size: 32px; font-weight: 700; color: var(--gp-ink); margin: 0 0 36px; }

/* 含联系表单的两栏 Section：压缩列间距并补底部留白 */
section:has(.gp-contact-form__card) { padding-bottom: 96px; }

/* =================== WooCommerce Cart =================== */
.gp-cart { background: var(--gp-background); padding: 0 0 96px; }
.gp-cart__hero { max-width: 720px; padding: 120px 0 40px; }
.gp-cart__hero h1 { font-size: 40px; font-weight: 700; color: var(--gp-ink); margin: 14px 0 12px; }
.gp-cart__hero p { font-size: 18px; color: var(--gp-ink-secondary); margin: 0; }
.gp-cart__layout { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 1024px) { .gp-cart__layout { grid-template-columns: 1fr 380px; gap: 40px; } }
.gp-cart__items { background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 28px; }
.gp-cart__items-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.gp-cart__items-head h3 { font-size: 20px; font-weight: 700; color: var(--gp-ink); margin: 0; }
.gp-cart__count { font-size: 14px; color: var(--gp-ink-muted); }
.gp-cart-item { display: flex; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--gp-border); }
.gp-cart__items .gp-cart-item:last-of-type { border-bottom: 0; }
.gp-cart-item__media { width: 96px; height: 96px; border-radius: 20px; overflow: hidden; background: var(--gp-surface-3); flex-shrink: 0; }
.gp-cart-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-cart-item__body { flex: 1; min-width: 0; }
.gp-cart-item__cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gp-brand); }
.gp-cart-item__title { font-size: 18px; font-weight: 700; color: var(--gp-ink); margin: 4px 0 10px; }
.gp-cart-item__qty { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gp-border); border-radius: 999px; padding: 4px; }
.gp-qty-btn { width: 34px; height: 34px; border: none; border-radius: 999px; background: #fff; color: var(--gp-ink); font-size: 18px; cursor: pointer; }
.gp-qty-btn:hover { background: rgba(0, 0, 0, 0.05); }
.gp-cart-item__qty input { width: 36px; text-align: center; border: none; background: transparent; font-weight: 600; color: var(--gp-ink); font-size: 15px; -moz-appearance: textfield; appearance: textfield; }
.gp-cart-item__qty input::-webkit-outer-spin-button, .gp-cart-item__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gp-cart-item__price { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; gap: 4px; }
.gp-cart-item__unit { font-size: 12px; color: var(--gp-ink-muted); }
.gp-cart-item__line { font-size: 18px; font-weight: 700; color: var(--gp-ink); }
.gp-cart-item__remove { font-size: 13px; color: var(--gp-ink-muted); text-decoration: none; }
.gp-cart-item__remove:hover { color: var(--gp-destructive, #B54A4A); }
.gp-cart__coupon { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gp-border); }
.gp-cart__coupon label { display: block; font-size: 14px; font-weight: 600; color: var(--gp-ink); margin-bottom: 12px; }
.gp-cart__coupon-row { display: flex; gap: 12px; }
.gp-coupon-input { flex: 1; border: 1px solid var(--gp-border); border-radius: 999px; padding: 14px 20px; font-size: 15px; color: var(--gp-ink); background: #fff; }
.gp-coupon-input:focus { outline: 2px solid var(--gp-brand); border-color: transparent; }
.gp-cart__summary-card { background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 28px; }
.gp-cart__summary-card h3 { font-size: 20px; font-weight: 700; color: var(--gp-ink); margin: 0 0 20px; }
.gp-cart__row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 12px; color: var(--gp-ink-secondary); }
.gp-cart__row span:last-child { font-weight: 600; color: var(--gp-ink); }
.gp-cart__total { display: flex; justify-content: space-between; align-items: baseline; margin: 16px 0 20px; padding-top: 16px; border-top: 1px solid var(--gp-border); }
.gp-cart__total span:first-child { font-size: 18px; font-weight: 700; color: var(--gp-ink); }
.gp-cart__total span:last-child { font-size: 26px; font-weight: 700; color: var(--gp-ink); }
.gp-cart__checkout { width: 100%; }
.gp-cart__shop { width: 100%; margin-top: 12px; }
.gp-cart__suggest { margin-top: 80px; }
.gp-cart__suggest h3 { font-size: 26px; font-weight: 700; color: var(--gp-ink); margin: 0 0 28px; }
.gp-cart__suggest-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 640px; }
@media (min-width: 640px) { .gp-cart__suggest-grid { grid-template-columns: 1fr 1fr; } }
.gp-cart-suggest-item { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 16px; }
.gp-cart-suggest-item__media { width: 80px; height: 80px; border-radius: 18px; overflow: hidden; flex-shrink: 0; }
.gp-cart-suggest-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-cart-suggest-item__body { flex: 1; min-width: 0; }
.gp-cart-suggest-item__body h4 { font-size: 16px; font-weight: 700; color: var(--gp-ink); margin: 4px 0; }
.gp-cart-suggest-item__body p { font-size: 14px; color: var(--gp-ink-muted); margin: 0 0 10px; }
.gp-cart-suggest-item__add { font-size: 13px; }
@media (max-width: 640px) {
  .gp-cart__hero h1 { font-size: 30px; }
  .gp-cart-item { flex-wrap: wrap; gap: 14px; }
  .gp-cart-item__media { width: 80px; height: 80px; }
  .gp-cart-item__price { flex-direction: row; align-items: center; gap: 12px; text-align: left; width: 100%; }
  .gp-cart__layout { gap: 20px; }
  .gp-cart__items { padding: 20px; }
  .gp-cart__summary-card { padding: 22px; }
}

/* =================== WooCommerce Checkout =================== */
.gp-checkout { background: var(--gp-background); padding: 0 0 96px; }
.gp-checkout__hero { max-width: 720px; padding: 120px 0 40px; }
.gp-checkout__hero h1 { font-size: 40px; font-weight: 700; color: var(--gp-ink); margin: 14px 0 12px; }
.gp-checkout__hero p { font-size: 18px; color: var(--gp-ink-secondary); margin: 0 0 24px; }
.gp-checkout__trust { display: flex; flex-wrap: wrap; gap: 24px 32px; font-size: 14px; font-weight: 500; color: var(--gp-ink-secondary); }
.gp-checkout__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.gp-checkout__layout { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 1024px) { .gp-checkout__layout { grid-template-columns: 1fr 380px; gap: 40px; } }
.gp-checkout__main { display: flex; flex-direction: column; gap: 20px; }
.gp-checkout-card { background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 28px; }
.gp-checkout-card h3 { font-size: 20px; font-weight: 700; color: var(--gp-ink); margin: 0 0 20px; }
.gp-checkout-card .form-row { display: block; margin-bottom: 16px; }
.gp-checkout-card .form-row-first, .gp-checkout-card .form-row-last { display: inline-block; width: 48%; }
.gp-checkout-card .form-row-first { margin-right: 4%; }
.gp-checkout-card .form-row-wide { width: 100%; }
.gp-checkout-card label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gp-ink-secondary); display: block; margin-bottom: 6px; }
.gp-checkout-card input[type="text"], .gp-checkout-card input[type="email"], .gp-checkout-card input[type="tel"], .gp-checkout-card input[type="number"], .gp-checkout-card input[type="password"], .gp-checkout-card select, .gp-checkout-card textarea {
	width: 100%; border: 1.5px solid var(--gp-border); border-radius: 12px; padding: 14px 16px; font-size: 15px; color: var(--gp-ink); background: #fff; box-sizing: border-box;
}
.gp-checkout-card input:focus, .gp-checkout-card select:focus, .gp-checkout-card textarea:focus { border-color: var(--gp-brand); outline: none; box-shadow: 0 0 0 3px var(--gp-brand-muted); }
.gp-checkout-card #ship-to-different-address { margin-bottom: 16px; }
.gp-checkout-card #ship-to-different-address label, .gp-checkout-card .woocommerce-shipping-fields label { font-size: 14px; font-weight: 600; color: var(--gp-ink); text-transform: none; letter-spacing: 0; }
.gp-checkout__sticky { position: sticky; top: 100px; }
.gp-checkout__lines { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.gp-checkout__line { display: flex; align-items: center; gap: 14px; }
.gp-checkout__line-media { width: 56px; height: 56px; border-radius: 16px; overflow: hidden; border: 1px solid var(--gp-border); flex-shrink: 0; }
.gp-checkout__line-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-checkout__line-body { flex: 1; min-width: 0; }
.gp-checkout__line-title { display: block; font-size: 14px; font-weight: 600; color: var(--gp-ink); }
.gp-checkout__line-qty { display: block; font-size: 12px; color: var(--gp-ink-muted); }
.gp-checkout__line-price { font-size: 14px; font-weight: 600; color: var(--gp-ink); white-space: nowrap; }
.gp-checkout__rows { border-top: 1px solid var(--gp-border); padding-top: 16px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: var(--gp-ink-secondary); }
.gp-checkout__row { display: flex; justify-content: space-between; align-items: center; }
.gp-checkout__row span:last-child { font-weight: 600; color: var(--gp-ink); }
.gp-checkout__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--gp-border); }
.gp-checkout__total span:first-child { font-size: 16px; font-weight: 700; color: var(--gp-ink); }
.gp-checkout__total span:last-child { font-size: 24px; font-weight: 700; color: var(--gp-ink); }
.gp-checkout__secure { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gp-ink-muted); margin-top: 16px; }
.gp-checkout__reassure { display: flex; gap: 16px; align-items: center; margin-top: 20px; background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 24px; }
.gp-checkout__reassure-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--gp-brand-muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gp-checkout__reassure-title { font-size: 15px; font-weight: 600; color: var(--gp-ink); margin-bottom: 4px; }
.gp-checkout__reassure p { font-size: 14px; color: var(--gp-ink-secondary); margin: 0; }
.gp-checkout-card .payment_methods { list-style: none; margin: 0 0 16px; padding: 0; }
.gp-checkout-card .payment_methods li { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.gp-checkout-card .payment_methods .payment_box { display: none; }
.gp-checkout-card #place_order { width: 100%; margin-top: 8px; }
.gp-checkout__empty { padding: 120px 0; text-align: center; color: var(--gp-ink-secondary); font-size: 18px; }
@media (max-width: 640px) {
  .gp-checkout__hero h1 { font-size: 30px; }
  .gp-checkout-card { padding: 20px; }
  .gp-checkout__sticky { position: static; }
  .gp-checkout__layout, .gp-checkout__main { gap: 16px; }
}

/* =================== Login / Register =================== */
.gp-auth { background: var(--gp-background); padding: 120px 0 96px; }
.gp-auth__layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 1024px) { .gp-auth__layout { grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; } }
.gp-auth__panel { position: relative; overflow: hidden; border-radius: 32px; min-height: 560px; }
.gp-auth__panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gp-auth__panel-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(138,154,91,0.85) 0%, rgba(245,241,233,0.78) 100%); }
.gp-auth__panel-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; }
@media (min-width: 1024px) { .gp-auth__panel-content { padding: 56px; } }
.gp-auth__panel-content h1 { font-size: 36px; font-weight: 700; color: var(--gp-ink); margin: 18px 0 12px; line-height: 1.15; }
.gp-auth__panel-content p { font-size: 16px; color: var(--gp-ink-secondary); line-height: 1.7; margin: 0 0 24px; }
.gp-auth__benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.gp-auth__benefits li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--gp-ink); }
.gp-auth__benefit-ico { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gp-auth__benefit-ico.sage { background: var(--gp-brand); }
.gp-auth__benefit-ico.accent { background: var(--gp-accent); }
.gp-auth__card { background: #fff; border: 1px solid var(--gp-border); border-radius: 32px; padding: 32px; }
@media (min-width: 1024px) { .gp-auth__card { padding: 40px; } }
.gp-auth__card h2 { font-size: 30px; font-weight: 700; color: var(--gp-ink); margin: 0 0 8px; }
.gp-auth__card > p { font-size: 14px; color: var(--gp-ink-secondary); margin: 0 0 24px; }
.gp-auth__tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 4px; padding: 4px; border-radius: 999px; background: var(--gp-surface-3, #EDE8DE); margin-bottom: 28px; }
.gp-auth__tab { border: none; background: transparent; border-radius: 999px; padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--gp-ink-secondary); cursor: pointer; transition: background-color 0.25s, color 0.25s; }
.gp-auth__tab.is-active { background: var(--gp-brand); color: #fff; }
.gp-auth__pane { display: none; }
.gp-auth__pane.is-active { display: block; }
.gp-auth__field { margin-bottom: 18px; }
.gp-auth__field label { display: block; font-size: 13px; font-weight: 600; color: var(--gp-ink); margin-bottom: 8px; }
.gp-auth__field input { width: 100%; border: 1.5px solid var(--gp-border); border-radius: 999px; padding: 14px 22px; font-size: 15px; color: var(--gp-ink); background: #fff; box-sizing: border-box; }
.gp-auth__field input:focus { border-color: var(--gp-brand); outline: none; box-shadow: 0 0 0 3px var(--gp-brand-muted); }
.gp-auth__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gp-auth__remember { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gp-ink-secondary); }
.gp-auth__forgot { font-size: 14px; font-weight: 600; color: var(--gp-accent-dark, #9A5532); }
.gp-auth__submit { width: 100%; }
.gp-auth__terms { font-size: 13px; text-align: center; color: var(--gp-ink-muted); margin: 24px 0 0; }
.gp-auth__terms a { color: inherit; text-decoration: underline; }
@media (max-width: 640px) {
  .gp-auth { padding: 40px 0 72px; }
  .gp-auth__panel { min-height: 380px; }
  .gp-auth__panel-content h1 { font-size: 30px; }
  .gp-auth__card { padding: 24px; }
}

/* =================== My Account =================== */
.gp-account { background: var(--gp-background); padding: 0 0 96px; }
.gp-account__hero { max-width: 720px; padding: 120px 0 44px; }
.gp-account__hero h1 { font-size: 40px; font-weight: 700; color: var(--gp-ink); margin: 14px 0 12px; }
.gp-account__hero p { font-size: 18px; color: var(--gp-ink-secondary); margin: 0; }
.gp-account__layout { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 1024px) { .gp-account__layout { grid-template-columns: 280px 1fr; gap: 40px; } }
.gp-account__layout .gp-account__nav .woocommerce-MyAccount-navigation { float: none; width: auto; background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 16px; }
@media (min-width: 1024px) { .gp-account__nav { position: sticky; top: 100px; } }
.gp-account__nav .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.gp-account__nav .woocommerce-MyAccount-navigation li { margin: 0; }
.gp-account__nav .woocommerce-MyAccount-navigation li a { display: flex; align-items: center; width: 100%; white-space: nowrap; padding: 12px 16px; border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--gp-ink-secondary); text-decoration: none; box-sizing: border-box; transition: background-color 0.2s, color 0.2s; }
.gp-account__nav .woocommerce-MyAccount-navigation li.is-active a, .gp-account__nav .woocommerce-MyAccount-navigation li a:hover { background: var(--gp-brand); color: #fff; }
.gp-account__layout .gp-account__content .woocommerce-MyAccount-content {
  float: none; width: auto;
  background: #fff;
  border: 1px solid var(--gp-border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.gp-account__content .woocommerce-MyAccount-content .woocommerce-notices-wrapper:empty { display: none; }
.gp-account__content h2, .gp-account__content h3 { font-size: 22px; font-weight: 700; color: var(--gp-ink); }
.gp-account__content table.woocommerce-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.gp-account__content table.woocommerce-table th { background: var(--gp-surface-2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gp-ink-secondary); padding: 12px 16px; }
.gp-account__content table.woocommerce-table td { padding: 14px 16px; color: var(--gp-ink-secondary); border-top: 1px solid var(--gp-border); }
.gp-account__content .woocommerce-MyAccount-content .woocommerce-button,
.gp-account__content .woocommerce-MyAccount-content .button,
.gp-account__content .woocommerce-MyAccount-content .button.alt {
  background: var(--gp-brand);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}
.gp-account__content .woocommerce-MyAccount-content .woocommerce-button:hover,
.gp-account__content .woocommerce-MyAccount-content .button:hover { background: var(--gp-brand-dark); }
.gp-account__content .woocommerce-form { display: flex; flex-direction: column; gap: 16px; }
.gp-account__content .form-row { display: flex; flex-direction: column; gap: 6px; }
.gp-account__content .form-row label { font-size: 13px; font-weight: 600; color: var(--gp-ink); }
.gp-account__content input[type="text"], .gp-account__content input[type="email"], .gp-account__content input[type="password"], .gp-account__content input[type="tel"], .gp-account__content input[type="number"], .gp-account__content select, .gp-account__content textarea { width: 100%; border: 1.5px solid var(--gp-border); border-radius: 12px; padding: 13px 16px; font-size: 15px; color: var(--gp-ink); background: #fff; box-sizing: border-box; }
.gp-account__content input:focus, .gp-account__content select:focus, .gp-account__content textarea:focus { border-color: var(--gp-brand); outline: none; }
.gp-account__content .woocommerce-MyAccount-content .woocommerce-info,
.gp-account__content .woocommerce-MyAccount-content .woocommerce-message,
.gp-account__content .woocommerce-MyAccount-content .woocommerce-error,
.gp-account__content .woocommerce-MyAccount-content .woocommerce-Message {
  border: none;
  background: var(--gp-brand-muted);
  color: var(--gp-ink);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.gp-account__content .woocommerce-MyAccount-content .woocommerce-info .button,
.gp-account__content .woocommerce-MyAccount-content .woocommerce-info .woocommerce-button,
.gp-account__content .woocommerce-MyAccount-content .woocommerce-message .button,
.gp-account__content .woocommerce-MyAccount-content .woocommerce-error .button { order: 2; margin-left: auto; }
@media (max-width: 640px) {
  .gp-account__hero h1 { font-size: 30px; }
  .gp-account__content .woocommerce-MyAccount-content { padding: 20px; }
}

/* =================== Journal (Blog) =================== */
.gp-journal-hero { background: var(--gp-background); }
.gp-journal-hero__box { max-width: 720px; }
.gp-journal-hero__badge { margin-bottom: 16px; }
.gp-journal-hero__title { font-size: 44px; font-weight: 700; color: var(--gp-ink); margin: 14px 0 16px; line-height: 1.1; }
.gp-journal-hero__desc { font-size: 18px; line-height: 1.6; color: var(--gp-ink-secondary); margin: 0 0 28px; }
.gp-journal-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.gp-journal-pill { display: inline-flex; align-items: center; padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--gp-ink-secondary); background: #fff; border: 1px solid var(--gp-border); text-decoration: none; transition: background-color .2s, color .2s, border-color .2s; }
.gp-journal-pill:hover { border-color: var(--gp-brand); color: var(--gp-brand); background: var(--gp-brand-muted); }
.gp-journal-pill.is-active { background: var(--gp-brand); color: #fff; border-color: var(--gp-brand); }

.gp-journal-grid { background: var(--gp-background); }
.gp-journal-grid__empty { text-align: center; color: var(--gp-ink-secondary); padding: 48px 0; }
.gp-journal-featured { display: grid; grid-template-columns: 1fr; background: #fff; border: 1px solid var(--gp-border); border-radius: 32px; overflow: hidden; }
@media (min-width: 1024px) { .gp-journal-featured { grid-template-columns: 1fr 1fr; } }
.gp-journal-featured__media { display: block; position: relative; overflow: hidden; background: var(--gp-background); min-height: 340px; }
.gp-journal-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.gp-journal-featured__body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .gp-journal-featured__body { padding: 48px; } }
.gp-journal-featured__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gp-journal-date { font-size: 12px; font-weight: 500; color: var(--gp-ink-tertiary); }
.gp-journal-featured__title { font-size: 32px; font-weight: 700; line-height: 1.15; margin: 0 0 14px; }
.gp-journal-featured__title a { color: var(--gp-ink); text-decoration: none; }
.gp-journal-featured__excerpt { font-size: 16px; line-height: 1.6; color: var(--gp-ink-secondary); margin: 0 0 22px; }
.gp-journal-author { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.gp-journal-author__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gp-brand); color: #fff; font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gp-journal-author__avatar--sm { width: 36px; height: 36px; font-size: 14px; }
.gp-journal-author__name { font-weight: 700; font-size: 14px; color: var(--gp-ink); }
.gp-journal-author__role { font-size: 12px; color: var(--gp-ink-tertiary); display: block; }
.gp-journal-featured__cta { margin-top: auto; align-self: flex-start; }

.gp-journal-grid__cards { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
@media (min-width: 768px) { .gp-journal-grid__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gp-journal-grid__cards { grid-template-columns: repeat(3, 1fr); } }
.gp-journal-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; overflow: hidden; }
.gp-journal-card__media { display: block; position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--gp-background); }
.gp-journal-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gp-journal-card:hover .gp-journal-card__media img { transform: scale(1.05); }
.gp-journal-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.gp-journal-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gp-journal-card__title { font-size: 19px; font-weight: 700; line-height: 1.3; margin: 0 0 10px; }
.gp-journal-card__title a { color: var(--gp-ink); text-decoration: none; }
.gp-journal-card__excerpt { font-size: 14px; line-height: 1.6; color: var(--gp-ink-tertiary); margin: 0 0 16px; }
.gp-journal-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--gp-brand-dark); text-decoration: none; margin-bottom: 18px; }
.gp-journal-card__link:hover { opacity: .8; }
.gp-journal-card__footer { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--gp-border); }

/* =================== Article (Single Post) =================== */
.gp-article { background: var(--gp-background); }
.gp-article-crumb { display: flex; align-items: center; gap: 10px; padding: 44px 0 0; font-size: 14px; color: var(--gp-ink-tertiary); }
.gp-article-crumb a { color: var(--gp-ink-tertiary); text-decoration: none; }
.gp-article-crumb a:hover { color: var(--gp-brand-dark); }
.gp-article-crumb__sep { opacity: .6; }
.gp-article-crumb__current { color: var(--gp-ink-secondary); }
.gp-article-header { max-width: 880px; padding: 24px 0 40px; }
.gp-article-header__badge { margin-bottom: 20px; }
.gp-article-header__title { font-size: 42px; font-weight: 700; line-height: 1.15; color: var(--gp-ink); margin: 0 0 18px; }
@media (max-width: 640px) { .gp-article-header__title { font-size: 30px; } }
.gp-article-header__excerpt { font-size: 18px; line-height: 1.6; color: var(--gp-ink-secondary); margin: 0 0 24px; }
.gp-article-header__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.gp-article-header__author { display: flex; flex-direction: column; }
.gp-article-header__name { font-weight: 600; font-size: 14px; color: var(--gp-ink); }
.gp-article-header__role { font-size: 13px; color: var(--gp-ink-tertiary); }
.gp-article-header__pipe { width: 1px; height: 28px; background: var(--gp-border); }
.gp-article-header__read, .gp-article-header__date, .gp-article-header__dot { font-size: 14px; color: var(--gp-ink-tertiary); }
.gp-article-hero-img { border-radius: 28px; overflow: hidden; }
.gp-article-hero-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
@media (max-width: 640px) { .gp-article-hero-img img { height: 280px; } }

.gp-article-content__inner { max-width: 768px; margin: 0 auto; padding: 48px 0 0; }
.gp-article-body { font-size: 17px; line-height: 1.75; color: var(--gp-ink-secondary); }
.gp-article-body h2 { font-size: 26px; font-weight: 700; color: var(--gp-ink); margin: 40px 0 16px; line-height: 1.3; }
.gp-article-body h3 { font-size: 20px; font-weight: 700; color: var(--gp-ink); margin: 32px 0 14px; }
.gp-article-body p { margin: 0 0 20px; }
.gp-article-body a { color: var(--gp-brand-dark); }
.gp-article-body ul, .gp-article-body ol { margin: 0 0 20px; padding-left: 24px; }
.gp-article-body li { margin-bottom: 8px; }
.gp-article-body blockquote { border-left: 4px solid var(--gp-brand); padding: 6px 0 6px 22px; margin: 28px 0; font-size: 19px; font-weight: 500; font-style: italic; color: var(--gp-ink); }
.gp-article-body img { max-width: 100%; height: auto; border-radius: 18px; }
.gp-article-cta { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding: 32px; border-radius: 24px; background: rgba(138,154,91,0.08); border: 1px solid rgba(138,154,91,0.35); }
.gp-article-cta__text h3 { font-size: 20px; font-weight: 700; color: var(--gp-ink); margin: 0 0 6px; }
.gp-article-cta__text p { font-size: 14px; line-height: 1.6; color: var(--gp-ink-secondary); margin: 0; }
.gp-article-cta__btn { white-space: nowrap; }
.gp-article-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--gp-border); }
.gp-article-share__label { font-size: 14px; font-weight: 600; color: var(--gp-ink-secondary); margin-right: 4px; }
.gp-article-share__btn { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gp-border); color: var(--gp-ink-secondary); background: #fff; cursor: pointer; transition: background-color .2s; }
.gp-article-share__btn:hover { background: var(--gp-surface-3); }

/* =================== Related posts =================== */
.gp-related-posts { background: var(--gp-background); padding-top: 56px; }
.gp-related-posts__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.gp-related-posts__title { font-size: 34px; font-weight: 700; color: var(--gp-ink); margin: 14px 0 0; }
.gp-related-posts__all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--gp-brand-dark); text-decoration: none; }
.gp-related-posts__all:hover { opacity: .8; }
.gp-related-posts__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .gp-related-posts__grid { grid-template-columns: repeat(3, 1fr); } }
.gp-related-card { display: block; background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; overflow: hidden; text-decoration: none; transition: transform .3s, border-color .3s; }
.gp-related-card:hover { transform: translateY(-4px); border-color: var(--gp-brand); }
.gp-related-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--gp-background); }
.gp-related-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gp-related-card:hover .gp-related-card__media img { transform: scale(1.05); }
.gp-related-card__body { padding: 24px; }
.gp-related-card__body h3 { font-size: 18px; font-weight: 700; line-height: 1.35; color: var(--gp-ink); margin: 12px 0 8px; }
.gp-related-card__body p { font-size: 14px; line-height: 1.6; color: var(--gp-ink-secondary); margin: 0 0 12px; }
.gp-related-card__read { font-size: 12px; color: var(--gp-ink-tertiary); }
.gp-related-posts__back { margin-top: 40px; text-align: center; }
.gp-related-posts__back a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gp-brand-dark); text-decoration: none; }
.gp-related-posts__back a:hover { opacity: .8; }

/* =================== Order Confirmation =================== */
.gp-order-confirm { background: var(--gp-background); padding: 0 0 96px; }
.gp-order-confirm__hero { max-width: 720px; margin: 0 auto; text-align: center; padding-top: 100px; }
.gp-order-confirm__check { width: 96px; height: 96px; margin: 0 auto 28px; border-radius: 50%; background: rgba(138,154,91,0.15); color: var(--gp-brand); display: inline-flex; align-items: center; justify-content: center; }
.gp-order-confirm__check--error { background: rgba(181,74,74,0.12); color: var(--gp-destructive, #B54A4A); }
.gp-order-confirm__hero h1 { font-size: 44px; font-weight: 700; color: var(--gp-ink); margin: 0 0 12px; line-height: 1.1; }
@media (max-width: 640px) { .gp-order-confirm__hero h1 { font-size: 30px; } }
.gp-order-confirm__sub { font-size: 20px; font-weight: 500; color: var(--gp-ink-secondary); margin: 0 0 10px; }
.gp-order-confirm__note { font-size: 16px; line-height: 1.6; color: var(--gp-ink-tertiary); margin: 0 0 44px; }
.gp-order-summary { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--gp-border); border-radius: 24px; padding: 28px; text-align: left; }
.gp-order-summary__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.gp-order-summary__number { font-size: 16px; font-weight: 700; color: var(--gp-ink); }
.gp-order-summary__date { font-size: 13px; color: var(--gp-ink-tertiary); margin-top: 2px; }
.gp-order-summary__items { display: flex; flex-direction: column; gap: 18px; }
.gp-order-line { display: flex; align-items: center; gap: 14px; }
.gp-order-line__media { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; border: 1px solid var(--gp-border); flex-shrink: 0; background: var(--gp-background); }
.gp-order-line__media img { width: 100%; height: 100%; object-fit: cover; }
.gp-order-line__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.gp-order-line__name { font-weight: 600; font-size: 14px; color: var(--gp-ink); }
.gp-order-line__meta { font-size: 12px; color: var(--gp-ink-tertiary); }
.gp-order-line__price { font-weight: 600; font-size: 14px; color: var(--gp-ink); white-space: nowrap; }
.gp-order-summary__totals { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--gp-border); font-size: 14px; color: var(--gp-ink-secondary); }
.gp-order-summary__totals > div { display: flex; justify-content: space-between; }
.gp-order-summary__total { display: flex; justify-content: space-between; font-weight: 700; font-size: 18px; color: var(--gp-ink); padding-top: 8px; }
.gp-order-summary__ship { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gp-border); }
@media (min-width: 640px) { .gp-order-summary__ship { grid-template-columns: 1fr 1fr; } }
.gp-order-summary__ship-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gp-ink-tertiary); margin-bottom: 4px; }
.gp-order-summary__ship-val { font-size: 14px; color: var(--gp-ink-secondary); }
.gp-order-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.gp-order-actions .btn-primary, .gp-order-actions .btn-ghost { min-width: 220px; justify-content: center; }
.gp-order-steps { max-width: 900px; margin: 72px auto 0; text-align: center; }
.gp-order-steps__title { font-size: 30px; font-weight: 700; color: var(--gp-ink); margin: 0 0 40px; }
.gp-order-steps__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .gp-order-steps__grid { grid-template-columns: repeat(3, 1fr); } }
.gp-order-step__num { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--gp-surface-3); color: var(--gp-brand-dark); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.gp-order-step h3 { font-size: 17px; font-weight: 600; color: var(--gp-ink); margin: 0 0 8px; }
.gp-order-step p { font-size: 14px; line-height: 1.6; color: var(--gp-ink-tertiary); margin: 0; }
.gp-order-support { max-width: 520px; margin: 64px auto 0; text-align: center; font-size: 14px; color: var(--gp-ink-secondary); }
.gp-order-support__link { font-weight: 600; color: var(--gp-brand-dark); text-decoration: none; }
