/*
Theme Name: PetGo
Theme URI: https://pet-equipment.com
Author: PetGo
Author URI: https://pet-equipment.com
Description: 为 PetGo 宠物用品独立站定制的主题，内置 GPS定位器、宠物饮水器、外出水杯、LED发光项圈的首页展示，配合 WooCommerce 实现价格/图片/文案后台可编辑、Google 搜索引擎可正常收录。
Version: 1.4.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: petgo
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

WordPress 要求每个主题的 style.css 顶部必须有这段注释作为"主题身份证"。
真正的视觉样式直接写在下面（这是 WordPress 主题的标准做法）。
*/
/* ===================================================================
   PetGo — homepage styles
   Namespaced under .pg-root so this can be dropped into an existing
   WordPress / WooCommerce page without leaking into theme styles.
=================================================================== */

.pg-root {
  --pg-ink: #0b1b33;
  --pg-ink-2: #122947;
  --pg-azure: #2e86e0;
  --pg-azure-light: #6fc1f2;
  --pg-azure-dark: #1c63ab;
  --pg-sand: #f6f1e6;
  --pg-paper: #fffcf7;
  --pg-coral: #e3683f;
  --pg-text: #1c2531;
  --pg-muted: #66707e;
  --pg-line: #e7dfd0;
  --pg-line-dark: rgba(255,255,255,.14);
  --pg-radius: 22px;
  --pg-radius-sm: 14px;
  --pg-shadow: 0 20px 50px -20px rgba(11,27,51,.25);
  --pg-shadow-sm: 0 10px 24px -12px rgba(11,27,51,.22);
  --pg-maxw: 1200px;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--pg-text);
  background: var(--pg-paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.pg-root *, .pg-root *::before, .pg-root *::after { box-sizing: border-box; }
.pg-root img { max-width: 100%; display: block; }
.pg-root a { color: inherit; text-decoration: none; }
.pg-root ul { margin: 0; padding: 0; list-style: none; }
.pg-root button { font-family: inherit; cursor: pointer; border: none; background: none; }

.pg-root h1, .pg-root h2, .pg-root h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--pg-ink);
}

.pg-root h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; }
.pg-root h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.15; }
.pg-root h3 { font-size: 1.1rem; line-height: 1.3; margin-bottom: 6px; }
.pg-root .pg-light { color: #fff; }

.pg-section-inner {
  max-width: var(--pg-maxw);
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 640px) {
  .pg-section-inner { padding: 0 20px; }
}

/* ---------- reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].pg-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- shared bits ---------- */
.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pg-azure-dark);
  margin-bottom: 16px;
}
.pg-eyebrow .pg-icon-sm { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.pg-eyebrow-light { color: var(--pg-azure-light); }

.pg-icon, .pg-icon-sm {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.pg-icon-sm { width: 17px; height: 17px; }
.pg-icon-azure { color: var(--pg-azure); }

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.pg-btn svg { width: 16px; height: 16px; transition: transform .25s ease; }
.pg-btn-primary {
  background: linear-gradient(135deg, var(--pg-azure), var(--pg-azure-dark));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(46,134,224,.55);
}
.pg-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(46,134,224,.6); }
.pg-btn-primary:hover svg { transform: translateX(3px); }
.pg-btn-sm { padding: 11px 20px; font-size: .85rem; }
.pg-btn-lg { padding: 17px 30px; font-size: 1rem; }
.pg-btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.pg-btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.pg-btn-outline {
  background: transparent;
  color: var(--pg-ink);
  border: 1.5px solid var(--pg-line);
}
.pg-btn-outline:hover { border-color: var(--pg-azure); color: var(--pg-azure-dark); transform: translateY(-2px); }

/* ===================== ANNOUNCEMENT BAR ===================== */
.pg-announce {
  background: var(--pg-ink);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 9px 16px;
}
.pg-announce p { margin: 0; }

/* ===================== NAV ===================== */
.pg-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,252,247,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pg-line);
  transition: padding .25s ease, box-shadow .25s ease;
}
.pg-nav.pg-scrolled { box-shadow: 0 6px 24px -16px rgba(11,27,51,.35); }
.pg-nav-inner {
  max-width: var(--pg-maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: padding .25s ease;
}
.pg-nav.pg-scrolled .pg-nav-inner { padding: 10px 28px; }

.pg-logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.pg-logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: cover;
}
.pg-logo-word {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--pg-ink);
  letter-spacing: -.01em;
}
.pg-logo-word em { color: var(--pg-azure); font-style: normal; }

.pg-nav-links { display: flex; gap: 26px; margin-left: 12px; flex: 1; }
.pg-nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--pg-text);
  position: relative;
  padding: 4px 0;
}
.pg-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pg-azure);
  transition: width .25s ease;
}
.pg-nav-links a:hover::after { width: 100%; }

.pg-nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.pg-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pg-wa-pill .pg-icon { width: 16px; height: 16px; fill: #fff; stroke: none; }
.pg-wa-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(37,211,102,.6); }

.pg-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.pg-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--pg-ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.pg-burger.pg-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pg-burger.pg-open span:nth-child(2) { opacity: 0; }
.pg-burger.pg-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pg-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(82vw, 340px);
  height: 100%;
  background: var(--pg-paper);
  z-index: 90;
  padding: 90px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: right .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
}
.pg-mobile-menu.pg-open { right: 0; }
.pg-mobile-menu a { font-size: 1.05rem; font-weight: 600; }
.pg-mobile-menu .pg-wa-pill { justify-content: center; margin-top: 10px; }
.pg-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(11,27,51,.45);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.pg-mobile-overlay.pg-open { opacity: 1; visibility: visible; }

/* ===================== HERO ===================== */
.pg-hero {
  position: relative;
  background: radial-gradient(ellipse 900px 600px at 18% -10%, rgba(46,134,224,.35), transparent 60%),
              linear-gradient(160deg, var(--pg-ink) 0%, var(--pg-ink-2) 55%, #0e2038 100%);
  padding: 76px 0 0;
  overflow: hidden;
}
.pg-hero-glow {
  position: absolute;
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(111,193,242,.30), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.pg-hero-inner {
  max-width: var(--pg-maxw);
  margin: 0 auto;
  padding: 56px 28px 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.pg-hero-copy h1 { color: #fff; margin-bottom: 22px; }
.pg-hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  max-width: 460px;
  margin-bottom: 30px;
}
.pg-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.pg-hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.pg-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.7);
}
.pg-trust-item svg { width: 16px; height: 16px; color: var(--pg-azure-light); }

.pg-hero-visual { position: relative; display: flex; justify-content: center; }
.pg-hero-card-stage {
  position: relative;
  width: min(100%, 360px);
}
.pg-hero-card {
  border-radius: var(--pg-radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.45);
}
.pg-hero-card-main {
  width: 100%;
  aspect-ratio: 4/5;
  transform: rotate(2.5deg);
  border: 6px solid rgba(255,255,255,.08);
}
.pg-hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.pg-hero-card-mini {
  position: absolute;
  bottom: -26px; left: -18px;
  width: 78px; height: 78px;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
  transform: rotate(-8deg);
  box-shadow: 0 18px 34px -10px rgba(0,0,0,.4);
  z-index: 3;
}
.pg-hero-card-mini img { border-radius: 8px; }

.pg-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.97);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--pg-shadow-sm);
  animation: pg-float 5s ease-in-out infinite;
  z-index: 3;
  max-width: 200px;
}
.pg-float-chip strong { display: block; font-size: .82rem; color: var(--pg-ink); white-space: nowrap; }
.pg-float-chip small { display: block; font-size: .7rem; color: var(--pg-muted); white-space: nowrap; }
.pg-float-chip-top { top: 8%; right: -14%; animation-delay: .3s; }
.pg-float-chip-bottom { bottom: 16%; left: -16%; animation-delay: 1.2s; }
.pg-live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,.6);
  animation: pg-pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pg-pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.55); }
  70% { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
@keyframes pg-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .pg-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .pg-hero-sub { margin-left: auto; margin-right: auto; }
  .pg-hero-cta, .pg-hero-trust { justify-content: center; }
  .pg-hero-visual { margin-top: 30px; }
  .pg-float-chip-top { right: 0%; top: 4%; }
  .pg-float-chip-bottom { left: 0%; }
}
@media (max-width: 480px) {
  .pg-float-chip { display: none; }
}

/* quick pill nav */
.pg-pillbar-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -34px;
}
.pg-pillbar {
  display: inline-flex;
  gap: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--pg-shadow);
  max-width: calc(100% - 32px);
  overflow-x: auto;
}
.pg-pill {
  padding: 11px 20px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--pg-muted);
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.pg-pill:hover { color: var(--pg-ink); }
.pg-pill.active { background: var(--pg-ink); color: #fff; }

/* ===================== PRODUCT SECTIONS ===================== */
.pg-section { padding: 96px 0; }
.pg-section-sand { background: var(--pg-sand); }
.pg-section-paper { background: var(--pg-paper); }

.pg-grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.pg-grid-media-right { grid-template-columns: 1fr 1.05fr; }
.pg-grid-media-right .pg-copy-col { order: 1; }
.pg-grid-media-right .pg-media-col { order: 2; }

@media (max-width: 940px) {
  .pg-grid-2, .pg-grid-media-right { grid-template-columns: 1fr; gap: 36px; }
  .pg-grid-media-right .pg-copy-col, .pg-grid-media-right .pg-media-col { order: initial; }
}

.pg-panel-frame {
  border-radius: var(--pg-radius);
  overflow: hidden;
  box-shadow: var(--pg-shadow);
}
.pg-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.pg-gallery-shot {
  border-radius: var(--pg-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--pg-shadow-sm);
  transition: transform .35s ease;
}
.pg-gallery-shot:hover { transform: translateY(-4px); }
.pg-gallery-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pg-gallery-shot:hover img { transform: scale(1.06); }

.pg-copy-lead { color: var(--pg-muted); font-size: 1.05rem; margin: 18px 0 26px; max-width: 480px; }

.pg-spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin-bottom: 32px; }
.pg-spec-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: var(--pg-text);
}
.pg-spec-list svg { color: var(--pg-azure); }
@media (max-width: 500px) { .pg-spec-list { grid-template-columns: 1fr; } }

.pg-price-row {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.pg-price { display: flex; align-items: baseline; gap: 10px; }
.pg-price-now { font-size: 1.9rem; font-weight: 800; color: var(--pg-ink); font-family: 'Fraunces', serif; }
.pg-price-was { font-size: 1.05rem; color: var(--pg-muted); text-decoration: line-through; }
.pg-microcopy { font-size: .82rem; color: var(--pg-muted); }

/* feature rows (LED collar) */
.pg-feature-rows { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.pg-feature-row { display: flex; gap: 16px; align-items: flex-start; }
.pg-feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--pg-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--pg-azure-dark);
}
.pg-feature-row p { margin: 0; color: var(--pg-muted); font-size: .92rem; max-width: 380px; }

.pg-collar-photo-frame {
  position: relative;
  border-radius: var(--pg-radius);
  overflow: hidden;
  box-shadow: var(--pg-shadow);
  background: #fff;
}
.pg-collar-photo-frame img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pg-color-dots {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex; gap: 8px;
  background: rgba(255,255,255,.9);
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: var(--pg-shadow-sm);
}
.pg-color-dots span {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.pg-night-card {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--pg-ink), #1a2f4d);
  border-radius: var(--pg-radius);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--pg-shadow);
}
.pg-night-card-text p { color: rgba(255,255,255,.75); font-size: .85rem; margin: 0; max-width: 220px; }
.pg-night-collar { display: flex; gap: 9px; }
.pg-night-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--pg-azure-light);
  box-shadow: 0 0 12px 3px var(--pg-azure-light), 0 0 22px 6px rgba(111,193,242,.5);
  animation: pg-twinkle 1.8s ease-in-out infinite;
}
.pg-night-dot:nth-child(2) { animation-delay: .2s; }
.pg-night-dot:nth-child(3) { animation-delay: .4s; }
.pg-night-dot:nth-child(4) { animation-delay: .6s; }
.pg-night-dot:nth-child(5) { animation-delay: .8s; }
@keyframes pg-twinkle {
  0%, 100% { opacity: .4; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@media (max-width: 480px) {
  .pg-night-card { flex-direction: column; text-align: center; }
}

/* ===================== BUNDLE BUILDER ===================== */
.pg-bundle {
  background: linear-gradient(160deg, var(--pg-ink) 0%, #0e2038 100%);
  padding: 96px 0;
}
.pg-bundle-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.pg-bundle-sub { color: rgba(255,255,255,.7); margin-top: 12px; }

.pg-bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .pg-bundle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pg-bundle-grid { grid-template-columns: 1fr; } }

.pg-bundle-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--pg-radius-sm);
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.pg-bundle-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.3); }
.pg-bundle-check { position: absolute; opacity: 0; pointer-events: none; }
.pg-bundle-thumb { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 12px; }
.pg-bundle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pg-bundle-name { color: #fff; font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.pg-bundle-price { color: var(--pg-azure-light); font-weight: 700; font-size: .88rem; }
.pg-bundle-check-mark {
  position: absolute;
  top: 14px; right: 14px;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.pg-bundle-check-mark svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .2s ease; stroke-width: 2.4; }
.pg-bundle-check:checked ~ .pg-bundle-check-mark { background: var(--pg-azure); border-color: var(--pg-azure); }
.pg-bundle-check:checked ~ .pg-bundle-check-mark svg { opacity: 1; }
.pg-bundle-check:checked ~ .pg-bundle-thumb { box-shadow: 0 0 0 2px var(--pg-azure); }
.pg-bundle-card:has(.pg-bundle-check:checked) { background: rgba(46,134,224,.12); border-color: var(--pg-azure); }

.pg-bundle-summary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--pg-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pg-bundle-tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.pg-tier {
  text-align: center;
  padding: 12px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.55);
  transition: background .25s ease, color .25s ease;
}
.pg-tier span { display: block; font-size: .76rem; font-weight: 600; margin-bottom: 4px; }
.pg-tier strong { font-size: 1.1rem; font-family: 'Fraunces', serif; }
.pg-tier.pg-active { background: rgba(46,134,224,.22); color: #fff; }

.pg-bundle-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.pg-bundle-total-label { display: block; color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 600; margin-bottom: 4px; }
.pg-bundle-total-prices { display: flex; align-items: baseline; gap: 10px; }
.pg-bundle-final { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 800; color: #fff; }
.pg-bundle-original { font-size: 1.1rem; color: rgba(255,255,255,.45); text-decoration: line-through; }

/* ===================== TESTIMONIALS ===================== */
.pg-center-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.pg-sample-note { color: var(--pg-muted); font-size: .8rem; margin-top: 10px; font-style: italic; }

.pg-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .pg-review-grid { grid-template-columns: 1fr; } }
.pg-review-card {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pg-review-card:hover { transform: translateY(-4px); box-shadow: var(--pg-shadow); }
.pg-stars { color: #f0a93d; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.pg-review-card p { font-size: .94rem; color: var(--pg-text); margin: 0 0 20px; }
.pg-review-author { display: flex; align-items: center; gap: 12px; }
.pg-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pg-azure), var(--pg-azure-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem;
  flex-shrink: 0;
}
.pg-review-author strong { display: block; font-size: .88rem; }
.pg-review-author small { color: var(--pg-muted); font-size: .78rem; }

/* ===================== TRUST BAND ===================== */
.pg-trustband { background: var(--pg-ink); padding: 34px 0; }
.pg-trustband-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: center;
}
.pg-trustband-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: .84rem; font-weight: 600;
}
.pg-trustband-item svg { color: var(--pg-azure-light); width: 19px; height: 19px; }

/* ===================== FAQ ===================== */
.pg-faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .pg-faq-layout { grid-template-columns: 1fr; gap: 30px; } }
.pg-faq-head .pg-copy-lead { margin: 16px 0 26px; }

.pg-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pg-faq-item {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 16px;
  overflow: hidden;
}
.pg-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 19px 22px;
  font-weight: 700;
  font-size: .96rem;
  text-align: left;
  color: var(--pg-ink);
}
.pg-faq-chevron { color: var(--pg-muted); transition: transform .3s ease; flex-shrink: 0; }
.pg-faq-item.pg-open .pg-faq-chevron { transform: rotate(180deg); color: var(--pg-azure); }
.pg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.pg-faq-a p { margin: 0; padding: 0 22px 20px; color: var(--pg-muted); font-size: .9rem; max-width: 560px; }
.pg-faq-item.pg-open .pg-faq-a { max-height: 200px; }

/* ===================== NEWSLETTER ===================== */
.pg-newsletter { background: linear-gradient(135deg, var(--pg-azure-dark), var(--pg-ink)); padding: 70px 0; }
.pg-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.pg-newsletter-inner h2 { margin-bottom: 8px; }
.pg-newsletter-inner > div:first-child p { color: rgba(255,255,255,.75); margin: 0; max-width: 360px; }
.pg-newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.pg-newsletter-form input {
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .92rem;
  min-width: 230px;
}
.pg-newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.pg-newsletter-form input:focus { outline: 2px solid var(--pg-azure-light); }

/* ===================== FOOTER ===================== */
.pg-footer { background: #081424; padding: 64px 0 0; }
.pg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--pg-line-dark);
}
@media (max-width: 800px) { .pg-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pg-footer-grid { grid-template-columns: 1fr; } }

.pg-footer-brand p { color: rgba(255,255,255,.6); font-size: .88rem; margin: 10px 0 18px; }
.pg-logo-footer .pg-logo-word { color: #fff; }
.pg-wa-pill-footer { display: inline-flex; }

.pg-footer-col h4 {
  color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 700;
}
.pg-footer-col { display: flex; flex-direction: column; gap: 11px; }
.pg-footer-col a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color .2s ease; }
.pg-footer-col a:hover { color: var(--pg-azure-light); }

.pg-footer-bottom {
  max-width: var(--pg-maxw);
  margin: 0 auto;
  padding: 22px 28px 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.pg-footer-bottom p { color: rgba(255,255,255,.45); font-size: .78rem; margin: 0; }

/* ===================== FLOATING WHATSAPP ===================== */
.pg-wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -6px rgba(37,211,102,.55);
  z-index: 70;
  transition: transform .25s ease;
}
.pg-wa-float:hover { transform: scale(1.08); }
.pg-wa-float-icon { width: 30px; height: 30px; fill: #fff; }
.pg-wa-float-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: pg-wa-ping 2.4s ease-out infinite;
}
@keyframes pg-wa-ping {
  0% { transform: scale(.9); opacity: .65; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pg-wa-tooltip {
  position: fixed;
  bottom: 96px; right: 26px;
  width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--pg-shadow);
  z-index: 69;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.pg-wa-tooltip.pg-show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.pg-wa-tooltip strong { display: block; font-size: .88rem; margin-bottom: 4px; color: var(--pg-ink); }
.pg-wa-tooltip p { margin: 0; font-size: .82rem; color: var(--pg-muted); }
.pg-wa-tooltip-close {
  position: absolute; top: 8px; right: 10px;
  font-size: 1.1rem; color: var(--pg-muted); line-height: 1;
}

.pg-totop {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pg-ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--pg-shadow-sm);
  z-index: 65;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.pg-totop.pg-show { opacity: 1; visibility: visible; transform: translateY(0); }
.pg-totop:hover { background: var(--pg-azure-dark); }

@media (max-width: 600px) {
  .pg-wa-float { bottom: 18px; right: 16px; width: 54px; height: 54px; }
  .pg-wa-tooltip { right: 16px; bottom: 84px; width: 220px; }
  .pg-totop { bottom: 18px; left: 16px; width: 42px; height: 42px; }
}

.pg-toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--pg-ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--pg-shadow);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  display: flex; align-items: center; gap: 10px;
}
.pg-toast.pg-show { opacity: 1; transform: translate(-50%, 0); }
.pg-toast::before {
  content: '✓';
  background: #2ecc71;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}

/* ---------- focus visibility for accessibility ---------- */
.pg-root a:focus-visible,
.pg-root button:focus-visible,
.pg-root input:focus-visible {
  outline: 2px solid var(--pg-azure);
  outline-offset: 2px;
}

/* responsive nav: hide links / show burger */
@media (max-width: 860px) {
  .pg-nav-links, .pg-nav-actions { display: none; }
  .pg-burger { display: flex; }
}

/* ===================== PETGO PATCH: LANGUAGE / DETAILS / CART FLOW ===================== */
/* ===================== PETGO PATCH: LANGUAGE / DETAILS / CART FLOW ===================== */
.pg-language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}
.pg-language-toggle {
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--pg-ink);
  font-size: .82rem;
  font-weight: 800;
  padding: 10px 18px;
  cursor: pointer;
  line-height: 1;
}
.pg-language-toggle:hover { border-color: var(--pg-azure); color: var(--pg-azure-dark); }
.pg-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  padding: 8px;
  border: 1px solid var(--pg-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px -24px rgba(11,27,51,.45);
  display: none;
  z-index: 90;
}
.pg-language-menu.pg-open { display: grid; gap: 2px; }
.pg-language-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--pg-text);
  text-align: left;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}
.pg-language-menu button:hover { background: var(--pg-sand); color: var(--pg-azure-dark); }
#google_translate_element {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.goog-logo-link, .goog-te-gadget span { display: none !important; }
body > .skiptranslate, iframe.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

.pg-price-row .added_to_cart.wc-forward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  border: 1.5px solid var(--pg-line);
  color: var(--pg-ink);
  background: #fff;
}
.pg-detail-trigger { cursor: pointer; }

.pg-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,27,51,.58);
  backdrop-filter: blur(7px);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.pg-modal-backdrop.pg-open { opacity: 1; visibility: visible; }
.pg-product-modal {
  position: fixed;
  top: 50%; left: 50%;
  width: min(92vw, 920px);
  max-height: 88vh;
  overflow: auto;
  transform: translate(-50%, -46%) scale(.98);
  background: var(--pg-paper);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  z-index: 121;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.pg-product-modal.pg-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.pg-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--pg-ink);
  border: 1px solid var(--pg-line);
  font-size: 1.7rem;
  line-height: 1;
  z-index: 2;
}
.pg-modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(300px, 1.08fr);
  gap: 28px;
  padding: 28px;
}
.pg-modal-media {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pg-line);
  align-self: stretch;
}
.pg-modal-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.pg-modal-copy { padding: 12px 8px 8px; }
.pg-modal-copy h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--pg-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .98;
  margin: 10px 0 18px;
}
.pg-modal-copy p { color: var(--pg-muted); font-size: 1rem; margin-bottom: 20px; }
.pg-modal-list { display: grid; gap: 10px; margin: 0 0 26px; }
.pg-modal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--pg-text);
  font-size: .94rem;
  font-weight: 600;
}
.pg-modal-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--pg-azure-dark);
  font-weight: 800;
}
.pg-modal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 720px) {
  .pg-modal-grid { grid-template-columns: 1fr; padding: 18px; }
  .pg-modal-media img { min-height: 240px; }
  .pg-modal-copy { padding: 4px; }
  .pg-modal-actions .pg-btn { width: 100%; }
}
@media (max-width: 1040px) {
  .pg-language-toggle { padding: 10px 14px; }
  .pg-language-menu { right: auto; left: 0; }
}


/* ===================== PETGO PATCH v1.4: PRODUCT DETAILS / IMAGE FIT / CART CHECKOUT POLISH ===================== */
/* Show full gallery posters instead of cropping their edges. */
.pg-gallery-shot {
  background: #fff;
  border: 1px solid rgba(11,27,51,.06);
}
.pg-gallery-shot img {
  object-fit: contain !important;
  background: #fff;
}
.pg-gallery-shot:hover img { transform: none; }

/* Hide old product microcopy rows such as free shipping / warranty. */
.pg-microcopy { display: none !important; }

/* Keep Product Details as a real rounded button even after WooCommerce inserts View Cart. */
.pg-price-row { gap: 14px; align-items: center; }
.pg-price-row .pg-detail-trigger,
.pg-price-row button.pg-detail-trigger,
.pg-price-row a.pg-detail-trigger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px !important;
  border-radius: 999px !important;
  border: 1.5px solid var(--pg-line) !important;
  background: #fff !important;
  color: var(--pg-ink) !important;
  font-weight: 800 !important;
  font-size: .92rem !important;
  line-height: 1 !important;
  box-shadow: none !important;
}
.pg-price-row .pg-detail-trigger:hover {
  border-color: var(--pg-azure) !important;
  color: var(--pg-azure-dark) !important;
  transform: translateY(-2px);
}
.pg-price-row .added_to_cart.wc-forward {
  min-height: 50px;
  padding: 13px 24px;
  background: #fff;
  border: 1.5px solid var(--pg-line);
  color: var(--pg-ink);
  box-shadow: none;
}

/* Upgraded product detail modal. */
.pg-modal-backdrop {
  background: rgba(8,20,36,.66) !important;
  backdrop-filter: blur(12px) saturate(1.05);
}
.pg-product-modal {
  width: min(94vw, 1040px) !important;
  background: linear-gradient(180deg, #fffdf8 0%, #f8f2e8 100%) !important;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px !important;
  box-shadow: 0 38px 110px rgba(6,18,34,.38) !important;
}
.pg-product-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
  background: radial-gradient(circle at 12% 10%, rgba(46,134,224,.10), transparent 34%), radial-gradient(circle at 95% 0%, rgba(111,193,242,.18), transparent 30%);
}
.pg-modal-close {
  top: 18px !important;
  right: 18px !important;
  width: 42px !important;
  height: 42px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 10px 24px -18px rgba(11,27,51,.45);
}
.pg-modal-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr) !important;
  gap: 34px !important;
  padding: 34px !important;
}
.pg-modal-media {
  border-radius: 24px !important;
  background: #fff !important;
  border: 1px solid rgba(231,223,208,.9) !important;
  box-shadow: 0 22px 55px -30px rgba(11,27,51,.42);
  padding: 10px;
}
.pg-modal-media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 390px !important;
  object-fit: contain !important;
  background: #fff;
  border-radius: 18px;
}
.pg-modal-copy {
  align-self: center;
  padding: 12px 18px 12px 4px !important;
}
.pg-modal-copy .pg-eyebrow {
  background: rgba(46,134,224,.10);
  border: 1px solid rgba(46,134,224,.16);
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 14px;
}
.pg-modal-copy h3 {
  font-size: clamp(2rem, 4.4vw, 3.65rem) !important;
  line-height: .96 !important;
  margin: 8px 0 18px !important;
  max-width: 520px;
}
.pg-modal-copy p {
  font-size: 1.04rem !important;
  line-height: 1.72;
  max-width: 560px;
  color: #5f6c7d !important;
}
.pg-modal-list {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 12px !important;
  margin: 0 0 28px !important;
}
.pg-modal-list li {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(231,223,208,.86);
  border-radius: 14px;
  padding: 12px 12px 12px 34px !important;
  box-shadow: 0 10px 28px -24px rgba(11,27,51,.34);
}
.pg-modal-list li::before { left: 13px !important; top: 12px !important; }
.pg-modal-actions {
  padding-top: 2px;
  gap: 14px !important;
}
.pg-modal-actions .pg-btn { min-height: 52px; }
@media (max-width: 800px) {
  .pg-product-modal { width: min(94vw, 560px) !important; }
  .pg-modal-grid { grid-template-columns: 1fr !important; padding: 20px !important; gap: 20px !important; }
  .pg-modal-media img { min-height: 260px !important; }
  .pg-modal-list { grid-template-columns: 1fr; }
  .pg-modal-copy { padding: 0 4px 8px !important; }
}

/* WooCommerce cart and checkout pages: wider, cleaner, closer to the homepage style. */
.pg-wc-page {
  background: radial-gradient(circle at 16% 0%, rgba(46,134,224,.08), transparent 26%), var(--pg-paper) !important;
}
.pg-wc-inner {
  max-width: 1120px !important;
}
.pg-wc-page h1 {
  margin-bottom: 30px !important;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}
.pg-wc-page .woocommerce {
  color: var(--pg-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pg-wc-page .woocommerce table.shop_table {
  border: 1px solid var(--pg-line) !important;
  border-radius: 22px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 50px -34px rgba(11,27,51,.45);
}
.pg-wc-page .woocommerce table.shop_table th {
  background: #fbf6ed;
  color: var(--pg-ink);
  font-weight: 800;
  padding: 16px 18px !important;
}
.pg-wc-page .woocommerce table.shop_table td {
  padding: 18px !important;
  border-top: 1px solid var(--pg-line) !important;
}
.pg-wc-page .woocommerce table.shop_table .product-thumbnail img {
  width: 64px;
  border-radius: 12px;
  border: 1px solid var(--pg-line);
  background: #fff;
}
.pg-wc-page .woocommerce table.shop_table .product-name a,
.pg-wc-page .woocommerce table.shop_table .product-name {
  color: var(--pg-ink);
  font-weight: 700;
  text-decoration: none;
}
.pg-wc-page .woocommerce .quantity .qty {
  width: 72px;
  min-height: 36px;
  border: 1px solid var(--pg-line);
  border-radius: 10px;
  text-align: center;
  color: var(--pg-ink);
  background: #fff;
}
.pg-wc-page .woocommerce a.remove {
  color: #b42318 !important;
  font-weight: 800;
}
.pg-wc-page .woocommerce .cart-collaterals .cart_totals,
.pg-wc-page .woocommerce .checkout.woocommerce-checkout,
.pg-wc-page .woocommerce .woocommerce-checkout-review-order,
.pg-wc-page .woocommerce form.checkout_coupon,
.pg-wc-page .woocommerce form.login {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 24px;
  padding: 26px !important;
  box-shadow: 0 22px 50px -34px rgba(11,27,51,.45);
}
.pg-wc-page .woocommerce .cart_totals h2,
.pg-wc-page .woocommerce-checkout h3 {
  color: var(--pg-ink);
  margin-bottom: 18px;
}
.pg-wc-page .woocommerce .cart_totals table {
  border-radius: 16px !important;
  box-shadow: none;
}
.pg-wc-page .woocommerce .button,
.pg-wc-page .woocommerce button.button,
.pg-wc-page .woocommerce a.button,
.pg-wc-page .woocommerce input.button,
.pg-wc-page .woocommerce #respond input#submit,
.pg-wc-page .woocommerce #payment #place_order {
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--pg-azure), var(--pg-azure-dark)) !important;
  color: #fff !important;
  font-weight: 800 !important;
  padding: 14px 24px !important;
  border: 0 !important;
  box-shadow: 0 14px 30px -14px rgba(46,134,224,.66);
}
.pg-wc-page .woocommerce .button[disabled],
.pg-wc-page .woocommerce button.button[disabled] {
  opacity: .55 !important;
}
.pg-wc-page .woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.05rem !important;
  padding: 18px 26px !important;
}
.pg-wc-page .woocommerce form .form-row input.input-text,
.pg-wc-page .woocommerce form .form-row textarea,
.pg-wc-page .woocommerce form .form-row select,
.pg-wc-page .woocommerce .select2-container .select2-selection--single {
  border: 1px solid var(--pg-line) !important;
  border-radius: 14px !important;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
  color: var(--pg-ink);
}
.pg-wc-page .woocommerce form .form-row label {
  color: var(--pg-ink);
  font-weight: 700;
  margin-bottom: 6px;
}
.pg-wc-page .woocommerce .woocommerce-info,
.pg-wc-page .woocommerce .woocommerce-message,
.pg-wc-page .woocommerce .woocommerce-error {
  border-top: 0;
  border-left: 4px solid var(--pg-azure);
  border-radius: 16px;
  background: #fff;
  color: var(--pg-text);
  box-shadow: 0 16px 36px -30px rgba(11,27,51,.4);
}
.pg-wc-page .woocommerce-checkout #payment {
  background: #fbf6ed !important;
  border-radius: 22px !important;
  border: 1px solid var(--pg-line);
}
.pg-wc-page .woocommerce-checkout #payment div.payment_box {
  background: #fff !important;
  color: var(--pg-muted) !important;
  border-radius: 16px;
}
.pg-wc-page .woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #fff !important; }
.pg-wc-page .woocommerce-checkout-review-order-table tfoot th,
.pg-wc-page .woocommerce-checkout-review-order-table tfoot td {
  font-weight: 800;
}
@media (max-width: 768px) {
  .pg-wc-page { padding-top: 58px !important; }
  .pg-wc-page .woocommerce table.shop_table_responsive tr td::before { color: var(--pg-ink); font-weight: 800; }
  .pg-wc-page .woocommerce table.shop_table td { padding: 14px !important; }
}


/* ===================== PETGO PRODUCTION PATCH 2026-07-10: MOBILE + CHECKOUT STABILITY ===================== */
@media (max-width: 640px) {
  .pg-root { overflow-x: hidden; }
  .pg-announce { padding: 8px 14px; font-size: .76rem; line-height: 1.35; }
  .pg-nav-inner { padding: 12px 18px !important; gap: 16px; }
  .pg-logo-mark { width: 32px; height: 32px; }
  .pg-logo-word { font-size: 1.15rem; }

  .pg-hero { padding-top: 0; }
  .pg-hero-inner {
    padding: 42px 20px 66px !important;
    gap: 28px !important;
    text-align: left !important;
  }
  .pg-hero-copy h1 {
    font-size: clamp(2.15rem, 12vw, 2.85rem) !important;
    line-height: 1.03 !important;
    margin-bottom: 16px !important;
  }
  .pg-hero-sub {
    max-width: none !important;
    margin: 0 0 22px !important;
    font-size: .98rem !important;
    line-height: 1.6;
  }
  .pg-hero-cta {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .pg-hero-cta .pg-btn { width: 100%; min-height: 52px; }
  .pg-hero-trust {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px !important;
    justify-content: start !important;
  }
  .pg-hero-visual { margin-top: 6px !important; }
  .pg-hero-card-stage { width: min(82vw, 300px) !important; }
  .pg-hero-card-main { transform: none !important; border-width: 4px !important; }
  .pg-pillbar-wrap { margin-top: -28px !important; }
  .pg-pillbar { width: calc(100% - 28px); justify-content: flex-start; }
  .pg-section { padding: 64px 0; }
  .pg-grid-2 { gap: 28px !important; }
  .pg-price-row { flex-direction: column; align-items: stretch !important; gap: 12px !important; }
  .pg-price-row .add_to_cart_button,
  .pg-price-row .added_to_cart.wc-forward,
  .pg-price-row .pg-detail-trigger { width: 100%; justify-content: center; }
}

.pg-checkout-assurance,
.pg-payment-assurance {
  border: 1px solid rgba(46,134,224,.18);
  background: linear-gradient(135deg, rgba(46,134,224,.08), rgba(255,255,255,.96));
  color: var(--pg-ink, #0b1b33);
  border-radius: 18px;
  padding: 16px 18px;
  margin: 0 0 20px;
  box-shadow: 0 16px 36px -30px rgba(11,27,51,.35);
}
.pg-checkout-assurance strong,
.pg-payment-assurance strong { display: block; font-weight: 800; margin-bottom: 4px; }
.pg-checkout-assurance p,
.pg-payment-assurance p { margin: 0; color: var(--pg-muted, #66707e); font-size: .92rem; line-height: 1.55; }
.pg-payment-assurance { margin: 18px 0 14px; background: #fff; }

@media (max-width: 768px) {
  .pg-wc-page .woocommerce .checkout.woocommerce-checkout,
  .pg-wc-page .woocommerce .woocommerce-checkout-review-order,
  .pg-wc-page .woocommerce form.checkout_coupon { padding: 20px !important; }
  .pg-wc-page .woocommerce form .form-row-first,
  .pg-wc-page .woocommerce form .form-row-last {
    width: 100% !important;
    float: none !important;
  }
  .pg-wc-page .woocommerce #payment #place_order { width: 100%; min-height: 54px; }
  .pg-wc-page .woocommerce-checkout #payment ul.payment_methods { padding: 16px !important; }
  .pg-wc-page .woocommerce-checkout #payment div.form-row { padding: 16px !important; }
}


/* =====================================================================
   PETGO SINGLE PRODUCT PAGE
   ===================================================================== */
.single-product .site-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 22px 76px;
}
.single-product .woocommerce-breadcrumb {
    color: #6f7d8b;
    font-size: 12px;
    letter-spacing: .06em;
    margin: 0 0 22px;
}
.single-product div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 0;
    background: #fff;
    border: 1px solid #e7edf2;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(28, 48, 68, .08);
    overflow: hidden;
}
.single-product div.product div.images,
.single-product div.product div.summary {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.single-product div.product div.images {
    padding: 34px;
    background: linear-gradient(145deg, #f7fbfd 0%, #edf6f8 100%);
}
.single-product div.product div.images img {
    border-radius: 18px;
}
.single-product div.product div.summary {
    padding: 42px 42px 34px;
}
.single-product div.product .product_title {
    color: #193147;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 0 0 14px;
}
.single-product div.product p.price,
.single-product div.product span.price {
    color: #0f8f96;
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 22px;
}
.single-product div.product .woocommerce-product-details__short-description {
    color: #647789;
    font-size: 15px;
    line-height: 1.75;
}
.single-product div.product form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0 16px;
}
.single-product div.product form.cart .quantity {
    margin: 0 !important;
}
.single-product div.product form.cart .button,
.single-product div.product .single_add_to_cart_button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 26px;
    background: #0f8f96;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 9px 22px rgba(15, 143, 150, .22);
    transition: transform .2s ease, background .2s ease;
}
.single-product div.product form.cart .button:hover,
.single-product div.product .single_add_to_cart_button:hover {
    background: #0a7379;
    transform: translateY(-1px);
}
.single-product div.product .product_meta {
    color: #8795a2;
    border-top: 1px solid #e8eef2;
    padding-top: 16px;
    font-size: 12px;
}
.single-product .petgo-product-intro {
    margin: 4px 0 8px;
}
.single-product .petgo-product-eyebrow {
    display: inline-block;
    color: #0f8f96;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}
.single-product .petgo-product-lead {
    color: #566b7b;
    font-size: 16px;
    line-height: 1.7;
    margin: 12px 0 14px;
}
.single-product .petgo-product-highlights {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 0 0 3px;
    padding: 0;
}
.single-product .petgo-product-highlights li {
    color: #314a5e;
    font-size: 13px;
    padding-left: 22px;
    position: relative;
}
.single-product .petgo-product-highlights li::before {
    content: "✓";
    color: #0f8f96;
    font-weight: 800;
    left: 0;
    position: absolute;
}
.single-product .petgo-product-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border-top: 1px solid #e8eef2;
    margin-top: 22px;
    padding-top: 20px;
}
.single-product .petgo-product-trust span {
    display: grid;
    gap: 4px;
}
.single-product .petgo-product-trust strong {
    color: #314a5e;
    font-size: 12px;
}
.single-product .petgo-product-trust small {
    color: #8a98a5;
    font-size: 11px;
    line-height: 1.4;
}
.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .upsells {
    grid-column: 1 / -1;
    border-top: 1px solid #e7edf2;
    padding: 28px 42px 10px;
}
.single-product .woocommerce-tabs ul.tabs {
    margin: 0 0 22px !important;
}
.single-product .woocommerce-tabs ul.tabs li {
    border: 0 !important;
    background: transparent !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
    color: #607384;
    font-weight: 700;
}
.single-product .woocommerce-tabs .panel {
    color: #617486;
    line-height: 1.8;
}
.single-product #secondary,
.single-product .widget-area {
    display: none !important;
}
.single-product .site-content {
    display: block;
}
@media (max-width: 760px) {
    .single-product .site-main {
        padding: 20px 14px 48px;
    }
    .single-product div.product {
        display: block;
        border-radius: 18px;
    }
    .single-product div.product div.images {
        padding: 18px;
    }
    .single-product div.product div.summary {
        padding: 28px 20px 24px;
    }
    .single-product div.product .product_title {
        font-size: 32px;
    }
    .single-product .petgo-product-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .single-product div.product .woocommerce-tabs,
    .single-product div.product .related,
    .single-product div.product .upsells {
        padding: 24px 20px 4px;
    }
}

