/*
Theme Name: Bridge Child — KiKi Meow
Description: KiKi Meow pet store styling on top of Bridge.
Template: bridge
Version: 2.1.1
*/

:root {
  --pv-coral: #FF7A59;
  --pv-coral-dark: #E86946;
  --pv-coral-light: #FFF0EB;
  --pv-teal: #1F8A80;
  --pv-teal-dark: #157269;
  --pv-teal-light: #E6F4F2;
  --pv-ink: #2B2B2B;
  --pv-ink-soft: #5a5a5a;
  --pv-ink-muted: #8a8a8a;
  --pv-cream: #FFF8F0;
  --pv-surface: #F9F7F4;
  --pv-line: #eee6dd;
  --pv-white: #ffffff;
  --pv-radius: 16px;
  --pv-radius-sm: 12px;
  --pv-shadow: 0 8px 30px rgba(43, 43, 43, 0.08);
  --pv-shadow-lg: 0 18px 48px rgba(43, 43, 43, 0.12);
}

/* ============ Global reset / base ============ */
body.pawvoyage,
.pawvoyage body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif !important;
  color: var(--pv-ink) !important;
  background: var(--pv-white) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased !important;
}

body.pawvoyage h1,
body.pawvoyage h2,
body.pawvoyage h3,
body.pawvoyage h4,
body.pawvoyage h5,
body.pawvoyage h6 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
  color: var(--pv-ink) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

body.pawvoyage a {
  color: var(--pv-teal) !important;
}

body.pawvoyage a:hover {
  color: var(--pv-coral) !important;
}

body.pawvoyage .content {
  background: var(--pv-white) !important;
}

body.pawvoyage .content .content_inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.pawvoyage .container_inner,
body.pawvoyage .container {
  max-width: 1240px !important;
}

body.pawvoyage * {
  box-sizing: border-box !important;
}

/* ============ WooCommerce store notice ============ */
body.pawvoyage .woocommerce-store-notice,
body.pawvoyage p.woocommerce-store-notice,
body.pawvoyage .woocommerce-demo-store .woocommerce-store-notice,
body.pawvoyage .demo_store {
  display: none !important;
}

/* ============ Custom promo bar ============ */
body.pawvoyage .header_top {
  background: var(--pv-teal) !important;
  border-bottom: none !important;
}

body.pawvoyage .header_top .header_top_inner {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

body.pawvoyage .header_top .header-widget,
body.pawvoyage .header_top .textwidget {
  color: var(--pv-white) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-align: center !important;
  letter-spacing: 0.02em !important;
}

/* Reliable promo / trust bar injected via wp_body_open (Bridge has no top bar
   without a top-header widget config). */
body.pawvoyage .pv-promo-bar {
  background: var(--pv-teal) !important;
  color: var(--pv-white) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-align: center !important;
  letter-spacing: 0.01em !important;
  padding: 9px 16px !important;
  line-height: 1.3 !important;
}

/* ============ Header / nav ============ */
body.pawvoyage .header_bottom {
  background: var(--pv-white) !important;
  border-bottom: 1px solid var(--pv-line) !important;
  box-shadow: 0 2px 12px rgba(43, 43, 43, 0.04) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

body.pawvoyage .header_bottom .container_inner {
  position: relative !important;
  height: 72px !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Re-order header children so desktop reads: logo | nav | cart/currency.
   Bridge outputs .header_inner_right before .main_menu in the DOM; flex order
   fixes the visual sequence without touching parent templates. */
body.pawvoyage .header_inner_left {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  order: 1 !important;
  flex: 0 0 auto !important;
}

body.pawvoyage .main_menu {
  order: 2 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.pawvoyage .header_inner_right {
  order: 3 !important;
  flex: 0 0 auto !important;
}

body.pawvoyage .mobile_menu {
  order: 4 !important;
  display: none !important;
}

body.pawvoyage .main_menu > ul {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

body.pawvoyage .logo_wrapper {
  height: auto !important;
  float: none !important;
  display: flex !important;
  align-items: center !important;
}

body.pawvoyage .q_logo {
  height: auto !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
}

/* Bridge outputs FOUR KiKi Meow logo variants (normal/dark/sticky/mobile) inside
   one anchor. They are the SAME svg, so stack them at the exact same spot and
   show all at opacity:1 — only one is ever visible. Forcing them static side-by-side
   previously produced the "4 logos" bug. .light is Bridge's white logo for dark
   headers and must stay hidden (our header is always white). */
body.pawvoyage .q_logo a {
  position: relative !important;
  display: block !important;
  height: 50px !important;
  width: 205px !important;
  line-height: 0 !important;
  overflow: visible !important;
  visibility: visible !important;
}

body.pawvoyage .q_logo img.normal,
body.pawvoyage .q_logo img.dark,
body.pawvoyage .q_logo img.sticky,
body.pawvoyage .q_logo img.mobile {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  transform: translateY(-50%) !important;
  display: block !important;
  width: auto !important;
  height: 100% !important;
  max-height: 50px !important;
  max-width: 220px !important;
  opacity: 1 !important;
}

body.pawvoyage .q_logo img.light {
  display: none !important;
}

body.pawvoyage .main_menu > ul > li {
  height: 72px !important;
  display: flex !important;
  align-items: center !important;
}

body.pawvoyage .main_menu > ul > li > a {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--pv-ink) !important;
  padding: 0 12px !important;
  height: 72px !important;
  line-height: 72px !important;
  display: flex !important;
  align-items: center !important;
}

body.pawvoyage .main_menu > ul > li > a .plus {
  display: none !important;
}

body.pawvoyage .main_menu > ul > li.menu-item-has-children > a::after {
  content: "\f107" !important;
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  margin-left: 6px !important;
  opacity: 0.7 !important;
}

body.pawvoyage .main_menu > ul > li > ul {
  background: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 28px rgba(43, 43, 43, 0.1) !important;
  border: 1px solid rgba(43, 43, 43, 0.06) !important;
  padding: 8px 0 !important;
  min-width: 180px !important;
  margin-top: 8px !important;
}

body.pawvoyage .main_menu > ul > li > ul li a {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--pv-ink) !important;
  padding: 8px 18px !important;
}

body.pawvoyage .main_menu > ul > li > ul li a:hover,
body.pawvoyage .main_menu > ul > li > ul li.current-menu-item a {
  color: var(--pv-coral) !important;
  background: var(--pv-cream) !important;
}

body.pawvoyage .main_menu > ul > li > a:hover,
body.pawvoyage .main_menu > ul > li.current-menu-item > a,
body.pawvoyage .main_menu > ul > li.current-menu-parent > a,
body.pawvoyage .main_menu > ul > li.current-menu-ancestor > a {
  color: var(--pv-coral) !important;
}

body.pawvoyage .shopping_cart_header,
body.pawvoyage .side_menu_button {
  margin-left: 12px !important;
}

body.pawvoyage .side_menu_button a {
  color: var(--pv-ink) !important;
  font-size: 20px !important;
}

/* Hide side-menu hamburger on all sizes; mobile uses left hamburger only */
body.pawvoyage .header_inner_right .side_menu_button {
  display: none !important;
}

/* Mobile menu button styling (only when Bridge shows it) */
@media (max-width: 1000px) {
  body.pawvoyage .mobile_menu_button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: var(--pv-radius-sm) !important;
    background: var(--pv-cream) !important;
    color: var(--pv-ink) !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
  }

  body.pawvoyage .mobile_menu_button span,
  body.pawvoyage .mobile_menu_button i {
    color: var(--pv-ink) !important;
    font-size: 18px !important;
  }

  /* Hide Bridge's default white `.light` logo variant (we only use the SVG) */
  body.pawvoyage .q_logo img.light { display: none !important; }

  /* Center the logo and keep it inside the mobile container */
  body.pawvoyage .header_inner_left {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
  }
  body.pawvoyage .logo_wrapper {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 150px !important;
    text-align: center !important;
  }
  body.pawvoyage .q_logo a { width: 150px !important; height: 40px !important; }
  body.pawvoyage .q_logo img.normal,
  body.pawvoyage .q_logo img.dark,
  body.pawvoyage .q_logo img.sticky,
  body.pawvoyage .q_logo img.mobile { width: auto !important; max-height: 40px !important; }

  /* Compact header on mobile so it doesn't take too much vertical space */
  body.pawvoyage .header_bottom { padding: 8px 0 !important; }
  body.pawvoyage .header_bottom .container_inner { min-height: 56px !important; }

  /* Push the cart to the right edge on mobile so the logo can sit centered */
  body.pawvoyage .header_inner_right {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
  body.pawvoyage .shopping_cart_outer {
    display: flex !important;
    align-items: center !important;
  }
}

/* Currency switcher in header right (CURCY layout5: flag + currency code) */
body.pawvoyage .header_bottom_right_widget_holder {
  display: flex !important;
  align-items: center !important;
}
body.pawvoyage .header_bottom_right_widget_holder .widget_text {
  margin: 0 !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency {
  display: inline-flex !important;
  align-items: center !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency .wmc-currency {
  margin: 0 !important;
}

/* Compact flag + code dropdown */
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 {
  position: relative !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-currency-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  cursor: pointer !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-current-currency {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: var(--pv-cream) !important;
  border: 1px solid rgba(43, 43, 43, 0.08) !important;
  border-radius: 8px !important;
  padding: 7px 11px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: var(--pv-ink) !important;
  line-height: 1 !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-current-currency .vi-flag-64 {
  width: 22px !important;
  height: 15px !important;
  background-size: cover !important;
  border-radius: 2px !important;
  transform: none !important;
  margin: 0 !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-open-dropdown-currencies {
  width: 0 !important;
  height: 0 !important;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 4px solid var(--pv-ink) !important;
  margin-left: 2px !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-sub-currency {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  background: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 28px rgba(43, 43, 43, 0.1) !important;
  border: 1px solid rgba(43, 43, 43, 0.06) !important;
  padding: 8px 0 !important;
  min-width: 130px !important;
  display: none !important;
  z-index: 1001 !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5:hover .wmc-sub-currency,
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-currency-wrapper:hover .wmc-sub-currency {
  display: block !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-sub-currency .wmc-currency a {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 14px !important;
  color: var(--pv-ink) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-sub-currency .wmc-currency a:hover {
  background: var(--pv-cream) !important;
  color: var(--pv-coral) !important;
}
body.pawvoyage .header_bottom_right_widget_holder .woo-multi-currency.layout5 .wmc-sub-currency .vi-flag-64 {
  width: 20px !important;
  height: 14px !important;
  background-size: cover !important;
  border-radius: 2px !important;
}

@media (max-width: 1000px) {
  body.pawvoyage .header_bottom_right_widget_holder {
    display: none !important; /* hide currency switcher on mobile header */
  }
}

/* ============ Title bar — hide on commerce pages ============ */
body.pawvoyage.archive .title_outer,
body.pawvoyage.single-product .title_outer,
body.pawvoyage.woocommerce-page .title_outer,
body.pawvoyage.home .title_outer,
body.pawvoyage.page-id-33 .title_outer,
body.pawvoyage .title_outer {
  display: none !important;
}

/* Breadcrumbs re-injected into commerce content (Bridge only shows them in the
   hidden .title_outer). Helps navigation + SEO, mirroring Chewy-style trails. */
body.pawvoyage .pv-breadcrumb,
body.pawvoyage .woocommerce-breadcrumb.pv-breadcrumb {
  font-family: 'Nunito', "Segoe UI", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--pv-ink) !important;
  letter-spacing: 0.01em !important;
  max-width: 1200px !important;
  margin: 22px auto 0 !important;
  padding: 0 28px !important;
}

body.pawvoyage .pv-breadcrumb a,
body.pawvoyage .woocommerce-breadcrumb.pv-breadcrumb a {
  color: var(--pv-ink) !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

body.pawvoyage .pv-breadcrumb a:hover,
body.pawvoyage .woocommerce-breadcrumb.pv-breadcrumb a:hover {
  color: var(--pv-coral) !important;
}

body.pawvoyage .pv-breadcrumb .pv-crumb-sep,
body.pawvoyage .woocommerce-breadcrumb.pv-breadcrumb .pv-crumb-sep {
  color: var(--pv-teal) !important;
  margin: 0 6px !important;
  font-weight: 700 !important;
}

/* ============ Homepage custom sections ============ */
body.pawvoyage .pv-hero {
  padding: 80px 28px 72px;
  background: linear-gradient(135deg, var(--pv-cream) 0%, #FFF1E7 55%, #FFE9DF 100%);
  border-radius: 0 0 var(--pv-radius) var(--pv-radius);
  margin: 0 0 0;
}

body.pawvoyage .pv-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

body.pawvoyage .pv-hero-content {
  text-align: left;
}

body.pawvoyage .pv-hero .pv-kicker {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv-teal);
  font-size: 12px;
  margin-bottom: 18px;
}

body.pawvoyage .pv-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  line-height: 1.08;
  color: var(--pv-ink);
  margin: 0 0 18px;
  font-weight: 800;
}

body.pawvoyage .pv-hero h1 em {
  color: var(--pv-coral);
  font-style: normal;
}

body.pawvoyage .pv-hero p {
  font-size: 18px;
  color: var(--pv-ink-soft);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.6;
}

body.pawvoyage .pv-hero-search {
  position: relative;
  max-width: 480px;
  margin-bottom: 28px;
}

body.pawvoyage .pv-hero-search input[type="search"],
body.pawvoyage .pv-hero-search input[type="text"] {
  width: 100% !important;
  padding: 16px 56px 16px 22px !important;
  border: 2px solid var(--pv-white) !important;
  border-radius: 999px !important;
  background: var(--pv-white) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 15px !important;
  color: var(--pv-ink) !important;
  box-shadow: 0 4px 20px rgba(43,43,43,0.06) !important;
  outline: none !important;
}

body.pawvoyage .pv-hero-search input:focus {
  border-color: var(--pv-coral) !important;
}

body.pawvoyage .pv-hero-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--pv-coral);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.pawvoyage .pv-hero-image {
  position: relative;
  border-radius: var(--pv-radius);
  overflow: hidden;
  min-height: 360px;
  background: var(--pv-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(31, 138, 128, 0.18);
}

body.pawvoyage .pv-hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 89, 0.12), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(31, 138, 128, 0.10), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

body.pawvoyage .pv-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--pv-radius);
}

body.pawvoyage .pv-hero-image .pv-hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--pv-white);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--pv-ink);
  box-shadow: var(--pv-shadow);
  z-index: 2;
}

body.pawvoyage .pv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pv-coral);
  color: #fff !important;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(255,122,89,0.28);
}

body.pawvoyage .pv-cta:hover {
  background: var(--pv-coral-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,122,89,0.35);
}

body.pawvoyage .pv-cta.alt {
  background: var(--pv-white);
  color: var(--pv-ink) !important;
  border: 2px solid var(--pv-line);
  box-shadow: none;
}

body.pawvoyage .pv-cta.alt:hover {
  border-color: var(--pv-teal);
  color: var(--pv-teal) !important;
}

body.pawvoyage .pv-cta svg {
  width: 18px;
  height: 18px;
}

/* Trust strip */
body.pawvoyage .pv-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 24px;
  background: var(--pv-white);
  border-bottom: 1px solid var(--pv-line);
}

body.pawvoyage .pv-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--pv-ink);
}

body.pawvoyage .pv-trust-item .pv-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pv-coral-light);
  color: var(--pv-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* Sections */
body.pawvoyage .pv-sec {
  padding: 70px 0 30px;
}

body.pawvoyage .pv-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

body.pawvoyage .pv-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 36px;
  flex-wrap: wrap;
  gap: 14px;
}

body.pawvoyage .pv-sec-head-left {
  text-align: left;
}

body.pawvoyage .pv-sec-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--pv-ink);
}

body.pawvoyage .pv-sec-head p {
  color: var(--pv-ink-soft);
  margin: 0;
  font-size: 16px;
}

body.pawvoyage .pv-sec-head a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--pv-coral) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.pawvoyage .pv-sec-head a:hover {
  color: var(--pv-coral-dark) !important;
}

body.pawvoyage .pv-sec.pv-center-head .pv-sec-head {
  justify-content: center !important;
}
body.pawvoyage .pv-sec.pv-center-head .pv-sec-head-left {
  text-align: center !important;
}

/* Shop by pet */
body.pawvoyage .pv-pets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

body.pawvoyage .pv-pet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--pv-radius);
  padding: 30px 16px;
  text-decoration: none;
  color: #fff;
  min-height: 150px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--pv-shadow);
}

body.pawvoyage .pv-pet:hover {
  transform: translateY(-6px);
  box-shadow: var(--pv-shadow-lg);
  color: #fff !important;
}

body.pawvoyage .pv-pet .pv-emoji {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 12px;
}

body.pawvoyage .pv-pet .pv-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
}

body.pawvoyage .pv-pet .pv-count {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 5px;
  font-weight: 600;
}

/* Guarantee band */
body.pawvoyage .pv-guar {
  margin: 56px 0 12px;
  background: var(--pv-ink);
  color: #fff;
  border-radius: var(--pv-radius);
  padding: 52px 32px;
  text-align: center;
}

body.pawvoyage .pv-guar h3 {
  margin: 0 0 12px;
  color: var(--pv-coral);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
}

body.pawvoyage .pv-guar p {
  max-width: 640px;
  margin: 0 auto 26px;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.65;
}

body.pawvoyage .pv-guar-badges {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

body.pawvoyage .pv-guar-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

/* Newsletter */
body.pawvoyage .pv-newsletter {
  background: var(--pv-teal-light);
  border-radius: var(--pv-radius);
  padding: 52px 32px;
  text-align: center;
  margin: 56px 0 0;
}

body.pawvoyage .pv-newsletter h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--pv-ink);
}

body.pawvoyage .pv-newsletter p {
  color: var(--pv-ink-soft);
  margin: 0 auto 24px;
  max-width: 460px;
}

body.pawvoyage .pv-newsletter form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

body.pawvoyage .pv-newsletter input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 22px !important;
  border: 2px solid var(--pv-white) !important;
  border-radius: 999px !important;
  background: var(--pv-white) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 15px !important;
}

body.pawvoyage .pv-newsletter button {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--pv-teal);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

/* ============ Hero search button + trust rating ============ */
/* WooCommerce product search form rendered in the hero (Amazon/Taobao pattern). */
body.pawvoyage .pv-hero-search form {
  position: relative;
  max-width: 480px;
}
body.pawvoyage .pv-hero-search label {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
body.pawvoyage .pv-hero-search input[type="search"] {
  width: 100% !important;
  padding: 16px 56px 16px 22px !important;
  border: 2px solid var(--pv-white) !important;
  border-radius: 999px !important;
  background: var(--pv-white) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 15px !important;
  color: var(--pv-ink) !important;
  box-shadow: 0 4px 20px rgba(43,43,43,0.06) !important;
  outline: none !important;
}
body.pawvoyage .pv-hero-search input[type="search"]:focus {
  border-color: var(--pv-coral) !important;
}
body.pawvoyage .pv-hero-search button[type="submit"] {
  position: absolute !important;
  right: 6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: none !important;
  background: var(--pv-coral) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") no-repeat center center !important;
  background-size: 20px 20px !important;
  font-size: 0 !important;
  cursor: pointer !important;
}

body.pawvoyage .pv-hero-rating {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 26px !important;
}
body.pawvoyage .pv-hero-rating .pv-stars {
  color: #FFC043 !important;
  font-size: 18px !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
}
body.pawvoyage .pv-hero-rating .pv-rating-text {
  font-family: 'Nunito', sans-serif !important;
  font-size: 14px !important;
  color: var(--pv-ink-soft) !important;
}
body.pawvoyage .pv-hero-rating .pv-rating-text strong {
  color: var(--pv-ink) !important;
}

/* ============ Deal of the Day (Taobao 秒杀 / Pinduoduo / Amazon) ============ */
body.pawvoyage .pv-deal {
  background: linear-gradient(135deg, #FFF0EB 0%, #FFE3D6 100%);
  padding: 42px 0;
}
body.pawvoyage .pv-deal-inner {
  display: grid !important;
  grid-template-columns: 300px 1fr !important;
  gap: 36px !important;
  align-items: center !important;
  background: #fff !important;
  border-radius: var(--pv-radius) !important;
  padding: 28px !important;
  box-shadow: var(--pv-shadow) !important;
}
body.pawvoyage .pv-deal-media {
  position: relative !important;
}
/* Product image only — keep WordPress emoji-replacement flag icon small. */
body.pawvoyage .pv-deal-media > a > img {
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  display: block !important;
}
body.pawvoyage .pv-deal-flag img {
  width: 1em !important;
  height: 1em !important;
  display: inline !important;
  vertical-align: -0.1em !important;
  border-radius: 0 !important;
}
body.pawvoyage .pv-deal-flag {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: var(--pv-coral) !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 16px rgba(255,122,89,0.35) !important;
}
body.pawvoyage .pv-deal-eyebrow {
  display: block !important;
  color: var(--pv-teal) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 6px !important;
}
body.pawvoyage .pv-deal-body h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
}
body.pawvoyage .pv-deal-body h2 a {
  color: var(--pv-ink) !important;
  text-decoration: none !important;
}
body.pawvoyage .pv-deal-body h2 a:hover {
  color: var(--pv-coral) !important;
}
body.pawvoyage .pv-deal-price {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  font-family: 'Poppins', sans-serif !important;
}
body.pawvoyage .pv-deal-price .price {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--pv-coral) !important;
  margin: 0 !important;
}
body.pawvoyage .pv-deal-price del {
  color: var(--pv-ink-muted) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}
body.pawvoyage .pv-deal-save {
  background: var(--pv-teal-light) !important;
  color: var(--pv-teal) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
}
body.pawvoyage .pv-countdown {
  display: flex !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}
body.pawvoyage .pv-cd-box {
  background: var(--pv-ink) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  text-align: center !important;
  min-width: 64px !important;
}
body.pawvoyage .pv-cd-num {
  display: block !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  line-height: 1 !important;
}
body.pawvoyage .pv-cd-lbl {
  display: block !important;
  font-size: 11px !important;
  opacity: 0.85 !important;
  margin-top: 4px !important;
}
body.pawvoyage .pv-deal-cta {
  margin-top: 4px !important;
}

/* ============ Trending rail ============ */
body.pawvoyage .pv-trending {
  background: var(--pv-white);
}

/* ============ Reviews / social proof (Chewy / Amazon) ============ */
body.pawvoyage .pv-reviews {
  background: var(--pv-cream);
  padding: 64px 0 12px;
}
body.pawvoyage .pv-review-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  margin-top: 8px !important;
}
body.pawvoyage .pv-review {
  background: #fff !important;
  border-radius: var(--pv-radius) !important;
  padding: 26px !important;
  box-shadow: var(--pv-shadow) !important;
  border: 1px solid var(--pv-line) !important;
  text-align: left !important;
}
body.pawvoyage .pv-review-stars {
  color: #FFC043 !important;
  font-size: 18px !important;
  letter-spacing: 2px !important;
  margin-bottom: 12px !important;
}
body.pawvoyage .pv-review-stars .pv-review-dim {
  color: #E2DCCF !important;
}
body.pawvoyage .pv-review-text {
  font-size: 15px !important;
  color: var(--pv-ink-soft) !important;
  line-height: 1.6 !important;
  margin: 0 0 18px !important;
}
body.pawvoyage .pv-review-by {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
body.pawvoyage .pv-review-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: var(--pv-coral) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  flex: none !important;
}
body.pawvoyage .pv-review-by strong {
  display: block !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: var(--pv-ink) !important;
}
body.pawvoyage .pv-review-pet {
  display: block !important;
  font-size: 12px !important;
  color: var(--pv-ink-muted) !important;
}

/* ============ Responsive for new landing sections ============ */
@media (max-width: 980px) {
  body.pawvoyage .pv-deal-inner { grid-template-columns: 1fr !important; }
  body.pawvoyage .pv-deal-media { max-width: 320px !important; margin: 0 auto !important; }
  body.pawvoyage .pv-review-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  body.pawvoyage .pv-hero-search { max-width: 100% !important; }
  body.pawvoyage .pv-deal { padding: 28px 0 !important; }
  body.pawvoyage .pv-deal-inner { padding: 20px !important; }
}

/* ============ Elementor homepage (pv- section classes) ============ */
/* These sections are built in Elementor. Elementor's own style generation is not
   triggered by raw _elementor_data injection, so the Wild One palette is applied here.
   The section classes (pv-hero / pv-trust / pv-best / pv-pet / pv-guarantee) are set
   via Elementor's "css_classes" so this stays editable in the Elementor editor. */
body.pawvoyage .elementor-section.pv-hero {
  background: var(--pv-cream) !important;
  padding: 72px 0 !important;
}
body.pawvoyage .elementor-section.pv-trust {
  background: var(--pv-teal) !important;
  padding: 28px 0 !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-title,
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-description,
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon {
  color: #fff !important;
}
body.pawvoyage .elementor-section.pv-best {
  background: #fff !important;
  padding: 56px 0 !important;
}
body.pawvoyage .elementor-section.pv-pet {
  background: var(--pv-cream) !important;
  padding: 56px 0 !important;
}
body.pawvoyage .elementor-section.pv-guarantee {
  background: var(--pv-ink) !important;
  padding: 48px 0 !important;
}
body.pawvoyage .elementor-section.pv-guarantee .elementor-heading-title,
body.pawvoyage .elementor-section.pv-guarantee .elementor-widget-text-editor {
  color: #fff !important;
}
body.pawvoyage .pv-hero .elementor-heading-title {
  font-size: 44px !important;
  font-weight: 800 !important;
  color: var(--pv-ink) !important;
  line-height: 1.1 !important;
}
body.pawvoyage .pv-hero .elementor-widget-text-editor { font-size: 17px !important; color: #5a5a5a !important; }
body.pawvoyage .pv-hero .elementor-button,
body.pawvoyage .pv-pet .elementor-button {
  background-color: var(--pv-coral) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
body.pawvoyage .pv-best .elementor-heading-title,
body.pawvoyage .pv-pet .elementor-heading-title { color: var(--pv-ink) !important; }

/* Trust band icons — Bridge's FA5 CSS gates the glyph rules behind a .fa5
   class prefix (.fa5.fa-shipping-fast::before) that Elementor's icons don't
   carry, so the <i> falls back to Nunito and renders no glyph. Force the FA5
   font + the correct ::before content for the 4 trust icons. */
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon i {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  font-size: 30px !important;
  color: #fff !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon i::before {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon i.fa-shipping-fast::before { content: "\f48b"; }
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon i.fa-clock::before { content: "\f017"; }
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon i.fa-shield-alt::before { content: "\f3ed"; }
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon i.fa-paw::before { content: "\f1b0"; }

/* Trust band alignment: icon above, everything centered and evenly sized */
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-icon {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 38px !important;
  margin-bottom: 10px !important;
  margin-right: 0 !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-content {
  flex: 0 0 auto !important;
  text-align: center !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
  line-height: 1.2 !important;
}
body.pawvoyage .elementor-section.pv-trust .elementor-icon-box-description {
  font-size: 13px !important;
  line-height: 1.35 !important;
  opacity: 0.92 !important;
}

/* ============ Shop archive ============ */
body.pawvoyage.archive.woocommerce .content .content_inner,
body.pawvoyage.woocommerce-page .content .content_inner {
  padding-top: 40px !important;
  padding-bottom: 60px !important;
}

/* Wild One-style shop hero */
body.pawvoyage .pv-shop-hero {
  background: var(--pv-cream);
  border-radius: 14px;
  padding: 44px 24px 38px;
  text-align: center;
  margin: 0 0 30px;
}
body.pawvoyage .pv-shop-hero-title {
  font-family: 'Poppins', 'Nunito', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--pv-ink);
  margin: 0 0 8px;
  line-height: 1.15;
}
body.pawvoyage .pv-shop-hero-sub {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
}

body.pawvoyage .woocommerce-products-header {
  margin-bottom: 28px !important;
}

body.pawvoyage .woocommerce-products-header h1.page-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--pv-ink) !important;
  text-transform: none !important;
  margin: 0 0 8px !important;
}

body.pawvoyage .woocommerce-products-header .term-description {
  color: var(--pv-ink-soft) !important;
  font-size: 16px !important;
}

/* Category filter pills */
body.pawvoyage .pv-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

body.pawvoyage .pv-filter-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pv-surface);
  color: var(--pv-ink) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

body.pawvoyage .pv-filter-bar a:hover,
body.pawvoyage .pv-filter-bar a.active {
  background: var(--pv-coral);
  color: #fff !important;
}

/* Sort / result toolbar */
body.pawvoyage .woocommerce-ordering,
body.pawvoyage .woocommerce-result-count {
  margin-bottom: 24px !important;
}

body.pawvoyage .woocommerce-ordering select {
  padding: 10px 36px 10px 16px !important;
  border: 1px solid var(--pv-line) !important;
  border-radius: 999px !important;
  background: var(--pv-white) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 14px !important;
  color: var(--pv-ink) !important;
  appearance: none !important;
}

body.pawvoyage .woocommerce-result-count {
  font-family: 'Nunito', sans-serif !important;
  font-size: 14px !important;
  color: var(--pv-ink-muted) !important;
}

/* Product grid */
body.pawvoyage ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.pawvoyage ul.products li.product {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  border-radius: var(--pv-radius) !important;
  background: var(--pv-white) !important;
  overflow: hidden !important;
  text-align: left !important;
  border: 1px solid var(--pv-line) !important;
  box-shadow: var(--pv-shadow) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

body.pawvoyage ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--pv-shadow-lg) !important;
}

body.pawvoyage ul.products li.product .top-product-section {
  margin: 0 !important;
  position: relative !important;
}

body.pawvoyage ul.products li.product .top-product-section a.product-category {
  display: block !important;
  margin: 0 !important;
}

body.pawvoyage ul.products li.product .image-wrapper {
  display: block !important;
  background: var(--pv-cream) !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

body.pawvoyage ul.products li.product .image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  padding: 18px !important;
  transition: transform 0.45s ease !important;
}

body.pawvoyage ul.products li.product:hover .image-wrapper img {
  transform: scale(1.05) !important;
}

body.pawvoyage ul.products li.product .add-to-cart-button-outer {
  position: absolute !important;
  bottom: 14px !important;
  left: 14px !important;
  right: 14px !important;
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.25s ease, transform 0.25s ease !important;
}

body.pawvoyage ul.products li.product .add-to-cart-button-inner {
  display: block !important;
}

body.pawvoyage ul.products li.product a.add-to-cart-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 14px !important;
  padding: 12px !important;
  background: var(--pv-teal) !important;
  color: #fff !important;
  border-radius: 999px !important;
  border: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  text-transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: 0 4px 14px rgba(31,138,128,0.28) !important;
}

body.pawvoyage ul.products li.product a.add-to-cart-button:hover {
  background: var(--pv-coral) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(255,122,89,0.32) !important;
}

body.pawvoyage ul.products li.product .product-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  padding: 18px 18px 16px !important;
  color: var(--pv-ink) !important;
  text-align: left !important;
}

body.pawvoyage ul.products li.product .product-info h6 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
  color: var(--pv-ink) !important;
  text-transform: none !important;
  text-align: left !important;
  min-height: 41px !important;
}

body.pawvoyage ul.products li.product .price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--pv-coral) !important;
  margin: 0 0 8px !important;
  order: 2 !important;
  margin-top: auto !important;
}

body.pawvoyage ul.products li.product .price del {
  color: var(--pv-ink-muted) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  margin-right: 6px !important;
}

body.pawvoyage ul.products li.product .price ins {
  text-decoration: none !important;
}

body.pawvoyage ul.products li.product .pv-shipping-tag {
  font-size: 12px !important;
  color: var(--pv-teal) !important;
  font-weight: 700 !important;
  margin-top: 4px !important;
  order: 3 !important;
}

body.pawvoyage ul.products li.product .onsale,
body.pawvoyage span.onsale {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: var(--pv-coral) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  z-index: 5 !important;
}

/* ============ Single product ============ */
body.pawvoyage.single-product .content .content_inner {
  padding-top: 40px !important;
  padding-bottom: 60px !important;
}

body.pawvoyage.woocommerce div.product .product_title.entry-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: var(--pv-ink) !important;
  text-transform: none !important;
  margin: 0 0 14px !important;
}

body.pawvoyage.woocommerce div.product .summary .price {
  color: var(--pv-coral) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  margin: 0 0 18px !important;
}

body.pawvoyage.woocommerce div.product .summary .price del {
  color: var(--pv-ink-muted) !important;
  font-weight: 500 !important;
  font-size: 20px !important;
}

body.pawvoyage.woocommerce div.product p.stock {
  color: var(--pv-teal) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin-bottom: 18px !important;
}

/* Quantity stepper */
body.pawvoyage.woocommerce div.product form.cart div.quantity {
  border: 1px solid var(--pv-line) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  margin-right: 14px !important;
}

body.pawvoyage.woocommerce div.product form.cart div.quantity .minus,
body.pawvoyage.woocommerce div.product form.cart div.quantity .plus {
  background: var(--pv-surface) !important;
  color: var(--pv-ink) !important;
  border: none !important;
  font-weight: 700 !important;
  width: 36px !important;
}

body.pawvoyage.woocommerce div.product form.cart div.quantity .input-text.qty {
  border: none !important;
  font-weight: 700 !important;
  color: var(--pv-ink) !important;
}

body.pawvoyage.woocommerce div.product form.cart .single_add_to_cart_button {
  background: var(--pv-coral) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 16px 36px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: none !important;
  box-shadow: 0 8px 24px rgba(255,122,89,0.28) !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

body.pawvoyage.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--pv-coral-dark) !important;
  transform: translateY(-2px) !important;
}

/* Trust badges on product page */
body.pawvoyage .pv-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pv-line);
}

body.pawvoyage .pv-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pv-ink-soft);
  font-weight: 600;
}

body.pawvoyage .pv-trust-badges svg {
  width: 20px;
  height: 20px;
  color: var(--pv-teal);
}

/* Product meta */
body.pawvoyage.woocommerce div.product .product_meta {
  border-top: 1px solid var(--pv-line) !important;
  padding-top: 18px !important;
  margin-top: 22px !important;
  color: var(--pv-ink-soft) !important;
  font-size: 14px !important;
}

body.pawvoyage.woocommerce div.product .product_meta a {
  color: var(--pv-teal) !important;
  font-weight: 700 !important;
}

/* Tabs / accordion */
body.pawvoyage.woocommerce div.product .q_accordion_holder.woocommerce-accordion {
  border: none !important;
  margin-top: 34px !important;
}

body.pawvoyage.woocommerce div.product .q_accordion_holder.woocommerce-accordion .title-holder {
  background: var(--pv-surface) !important;
  border: 1px solid var(--pv-line) !important;
  border-radius: var(--pv-radius-sm) !important;
  padding: 16px 20px !important;
  margin-bottom: 10px !important;
}

body.pawvoyage.woocommerce div.product .q_accordion_holder.woocommerce-accordion .title-holder .tab-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: var(--pv-ink) !important;
}

body.pawvoyage.woocommerce div.product .q_accordion_holder.woocommerce-accordion .accordion_content {
  border: 1px solid var(--pv-line) !important;
  border-top: none !important;
  border-radius: 0 0 var(--pv-radius-sm) var(--pv-radius-sm) !important;
  padding: 20px !important;
  background: var(--pv-white) !important;
  color: var(--pv-ink-soft) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

body.pawvoyage.woocommerce div.product .q_accordion_holder.woocommerce-accordion .accordion_content p {
  margin-bottom: 12px !important;
}

/* Related / upsells heading */
body.pawvoyage .related.products > h2,
body.pawvoyage .upsells.products > h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  margin: 56px 0 28px !important;
  text-transform: none !important;
}

/* ============ Buttons (global) ============ */
body.pawvoyage .button,
body.pawvoyage button,
body.pawvoyage input[type="submit"],
body.pawvoyage.woocommerce a.button,
body.pawvoyage.woocommerce button.button {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  background: var(--pv-coral) !important;
  color: #fff !important;
  border: none !important;
  text-transform: none !important;
}

body.pawvoyage .button:hover,
body.pawvoyage button:hover,
body.pawvoyage.woocommerce a.button:hover,
body.pawvoyage.woocommerce button.button:hover {
  background: var(--pv-coral-dark) !important;
  color: #fff !important;
}

/* ============ Pagination / messages ============ */
body.pawvoyage.woocommerce nav.woocommerce-pagination ul li a,
body.pawvoyage.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 999px !important;
  border: 1px solid var(--pv-line) !important;
  color: var(--pv-ink) !important;
  font-weight: 700 !important;
}

body.pawvoyage.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--pv-coral) !important;
  color: #fff !important;
  border-color: var(--pv-coral) !important;
}

body.pawvoyage .woocommerce-message,
body.pawvoyage .woocommerce-info,
body.pawvoyage .woocommerce-error {
  border-radius: var(--pv-radius-sm) !important;
  font-size: 15px !important;
  border-left-width: 4px !important;
}

/* ============ Responsive ============ */
@media (max-width: 1200px) {
  body.pawvoyage ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  body.pawvoyage .pv-hero-inner { grid-template-columns: 1fr; text-align: center; }
  body.pawvoyage .pv-hero-content { text-align: center; }
  body.pawvoyage .pv-hero p { margin-left: auto; margin-right: auto; }
  body.pawvoyage .pv-hero-search { margin-left: auto; margin-right: auto; }
  body.pawvoyage .pv-hero-image { min-height: 280px; }
  body.pawvoyage .pv-pets { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  body.pawvoyage .pv-hero { padding: 56px 20px 48px; }
  body.pawvoyage .pv-hero h1 { font-size: 36px; }
  body.pawvoyage .pv-trust { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 22px 16px; }
  body.pawvoyage .pv-trust-item { justify-content: flex-start; font-size: 13px; }
  body.pawvoyage .pv-pets { grid-template-columns: repeat(2, 1fr); }
  body.pawvoyage .pv-sec-head { flex-direction: column; align-items: flex-start; }
  body.pawvoyage .pv-guar { padding: 36px 22px; }
  body.pawvoyage .pv-guar-badges { gap: 18px; }
}

@media (max-width: 680px) {
  body.pawvoyage ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  body.pawvoyage ul.products li.product .product-info { padding: 14px !important; }
  body.pawvoyage ul.products li.product .product-info h6 { font-size: 14px !important; min-height: 38px !important; }
  body.pawvoyage ul.products li.product .price { font-size: 15px !important; }
  body.pawvoyage ul.products li.product a.add-to-cart-button { padding: 10px !important; font-size: 13px !important; }
  body.pawvoyage .woocommerce-products-header h1.page-title { font-size: 28px !important; }
  body.pawvoyage.woocommerce div.product .product_title.entry-title { font-size: 24px !important; }
  body.pawvoyage .q_logo a { width: 150px !important; height: 40px !important; }
  body.pawvoyage .q_logo img.normal,
  body.pawvoyage .q_logo img.dark,
  body.pawvoyage .q_logo img.sticky,
  body.pawvoyage .q_logo img.mobile { width: auto !important; max-height: 40px !important; }
  body.pawvoyage .woocommerce-ordering,
  body.pawvoyage .woocommerce-result-count {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  body.pawvoyage .woocommerce-ordering { margin-bottom: 8px !important; }
  body.pawvoyage .woocommerce-ordering select { width: 100% !important; }
  body.pawvoyage .woocommerce-result-count { text-align: left !important; }
}

/* ============ KiKi Meow footer ============ */
body.pawvoyage .pv-footer { background: var(--pv-ink); color: #fff; font-family: 'Nunito', sans-serif; }
body.pawvoyage .pv-footer * { box-sizing: border-box; }
body.pawvoyage .pv-footer-newsletter { background: var(--pv-coral); color: #fff; padding: 34px 0; }
body.pawvoyage .pv-footer-newsletter-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
body.pawvoyage .pv-nl-copy h3 { margin: 0 0 4px; font-size: 22px; font-weight: 800; font-family: 'Poppins', sans-serif; }
body.pawvoyage .pv-nl-copy p { margin: 0; font-size: 15px; opacity: .95; }
body.pawvoyage .pv-nl-form { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 280px; max-width: 480px; }
body.pawvoyage .pv-nl-form input[type=email] { flex: 1; padding: 13px 16px; border: none; border-radius: 8px; font-size: 15px; color: var(--pv-ink); }
body.pawvoyage .pv-nl-form button { background: var(--pv-ink); color: #fff; border: none; border-radius: 8px; padding: 13px 20px; font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap; }
body.pawvoyage .pv-nl-form button:hover { background: #000; }
body.pawvoyage .pv-nl-msg { font-size: 13px; margin-left: 4px; }
body.pawvoyage .pv-nl-msg.pv-nl-ok { color: #fff; }
body.pawvoyage .pv-nl-msg.pv-nl-err { color: #ffe0d6; }

body.pawvoyage .pv-footer-main { padding: 52px 0 40px; }
body.pawvoyage .pv-footer-cols { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
body.pawvoyage .pv-footer-logo { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: #FF7A59 !important; text-decoration: none; margin-bottom: 12px; }
body.pawvoyage .pv-footer-brand p { font-size: 14px; line-height: 1.6; color: #c9c9c9; margin: 0 0 14px; max-width: 320px; }
body.pawvoyage .pv-footer-social { display: flex; gap: 16px; }
body.pawvoyage .pv-footer-social a { color: #dcdcdc; font-size: 14px; text-decoration: none; }
body.pawvoyage .pv-footer-social a:hover { color: var(--pv-coral); }
body.pawvoyage .pv-footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 14px; }
body.pawvoyage .pv-footer-col ul { list-style: none; margin: 0; padding: 0; }
body.pawvoyage .pv-footer-col li { margin-bottom: 9px; }
body.pawvoyage .pv-footer-col li a { color: #c9c9c9; font-size: 14px; text-decoration: none; }
body.pawvoyage .pv-footer-col li a:hover { color: var(--pv-coral); }

body.pawvoyage .pv-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 8px; padding: 18px 0; }
body.pawvoyage .pv-footer-bottom-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
body.pawvoyage .pv-footer-bottom-inner span { font-size: 13px; color: #a9a9a9; }
body.pawvoyage .pv-footer-pay { display: flex; gap: 8px; }
body.pawvoyage .pv-pay { font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: #dcdcdc; border: 1px solid rgba(255,255,255,.28); border-radius: 4px; padding: 4px 8px; }

/* ============ KiKi Meow shop + product cards ============ */
body.pawvoyage .pv-shop-hero { text-align: center; padding: 56px 24px 28px; background: var(--pv-cream); }
body.pawvoyage .pv-shop-hero-title { font-family: 'Poppins', sans-serif; font-size: 38px; font-weight: 800; color: var(--pv-ink); margin: 0 0 10px; }
body.pawvoyage .pv-shop-hero-sub { font-size: 17px; color: var(--pv-ink-soft); max-width: 640px; margin: 0 auto; }

body.pawvoyage .pv-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 18px 24px 28px; background: var(--pv-cream); border-bottom: 1px solid #eee; }
body.pawvoyage .pv-filter-bar a { display: inline-block; padding: 8px 16px; border-radius: 999px; background: #fff; color: var(--pv-ink-soft); font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid #e5e5e5; transition: all .15s ease; }
body.pawvoyage .pv-filter-bar a:hover { border-color: var(--pv-teal); color: var(--pv-teal); }
body.pawvoyage .pv-filter-bar a.active { background: var(--pv-teal); border-color: var(--pv-teal); color: #fff; }

body.pawvoyage.woocommerce ul.products,
body.pawvoyage .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 28px; list-style: none; margin: 0; padding: 36px 0; border: none; }
body.pawvoyage.woocommerce ul.products::before,
body.pawvoyage.woocommerce ul.products::after { display: none; }
body.pawvoyage.woocommerce ul.products li.product,
body.pawvoyage .woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; clear: none !important; float: none !important; }

body.pawvoyage .pv-product-card .pv-card-inner { background: #fff; border: 1px solid #eee; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.04); transition: transform .2s ease, box-shadow .2s ease; height: 100%; display: flex; flex-direction: column; }
body.pawvoyage .pv-product-card .pv-card-inner:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.08); }

body.pawvoyage .pv-card-media { position: relative; display: block; aspect-ratio: 1 / 1; background: #f8f8f8; overflow: hidden; }
body.pawvoyage .pv-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
body.pawvoyage .pv-card-inner:hover .pv-card-media img { transform: scale(1.05); }
body.pawvoyage .pv-card-badge { position: absolute; top: 12px; left: 12px; background: var(--pv-coral); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 20px; z-index: 2; }

body.pawvoyage .pv-card-body { padding: 16px 16px 8px; flex: 1; display: flex; flex-direction: column; }
body.pawvoyage .pv-product-card a.pv-card-title { display: -webkit-box; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--pv-ink) !important; line-height: 21px; text-decoration: none; margin: 0 0 8px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 42px; }
body.pawvoyage .pv-product-card a.pv-card-title:hover { color: var(--pv-teal) !important; }
body.pawvoyage .pv-card-price { font-size: 16px; font-weight: 700; color: var(--pv-ink); margin-top: auto; }
body.pawvoyage .pv-card-price del { font-size: 13px; color: #999; font-weight: 400; margin-right: 6px; }
body.pawvoyage .pv-card-price ins { text-decoration: none; color: var(--pv-coral); }

body.pawvoyage .pv-card-actions { padding: 0 16px 16px; margin-top: auto; }
body.pawvoyage a.pv-card-atc { display: flex; align-items: center; justify-content: center; width: 100%; height: 40px; text-align: center; background: var(--pv-ink); color: #fff; border-radius: 10px; padding: 0; font-size: 14px; font-weight: 700; line-height: 1; text-decoration: none; transition: background .2s ease; border: none; }
body.pawvoyage a.pv-card-atc:hover { background: var(--pv-coral); color: #fff; }
body.pawvoyage a.pv-card-atc.added { background: var(--pv-teal); }
body.pawvoyage .pv-card-oos { display: flex; align-items: center; justify-content: center; width: 100%; height: 40px; text-align: center; background: #e5e5e5; color: #777; border-radius: 10px; padding: 0; font-size: 14px; font-weight: 700; }

/* Hide Bridge's loop overlay button artifacts */
body.pawvoyage .add-to-cart-button-outer,
body.pawvoyage .add-to-cart-button-inner,
body.pawvoyage .top-product-section .qbutton,
body.pawvoyage ul.products li.product .product-info h6 { display: none !important; }

body.pawvoyage .woocommerce-result-count { color: var(--pv-ink-soft); font-size: 14px; }
body.pawvoyage .woocommerce-ordering select { padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; background: #fff; }

body.pawvoyage .woocommerce nav.woocommerce-pagination { margin: 24px 0 60px; }
body.pawvoyage .woocommerce nav.woocommerce-pagination ul { border: none; }
body.pawvoyage .woocommerce nav.woocommerce-pagination ul li { border: none; margin: 0 4px; }
body.pawvoyage .woocommerce nav.woocommerce-pagination ul li a,
body.pawvoyage .woocommerce nav.woocommerce-pagination ul li span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--pv-ink-soft); background: #fff; border: 1px solid #e5e5e5; }
body.pawvoyage .woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--pv-cream); color: var(--pv-teal); border-color: var(--pv-teal); }
body.pawvoyage .woocommerce nav.woocommerce-pagination ul li span.current { background: var(--pv-teal); color: #fff; border-color: var(--pv-teal); }

@media (max-width: 991px) {
  body.pawvoyage.woocommerce ul.products,
  body.pawvoyage .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 767px) {
  body.pawvoyage.woocommerce ul.products,
  body.pawvoyage .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  body.pawvoyage .pv-shop-hero-title { font-size: 30px; }
  body.pawvoyage .pv-filter-bar { gap: 8px; }
  body.pawvoyage .pv-filter-bar a { padding: 6px 12px; font-size: 13px; }
}

/* Mobile: footer stacks, hero scales down */
@media (max-width: 767px) {
  body.pawvoyage .pv-footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  body.pawvoyage .pv-nl-form { max-width: 100%; width: 100%; }
  body.pawvoyage .pv-footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  body.pawvoyage .pv-footer-brand { grid-column: 1 / -1; }
  body.pawvoyage .pv-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  body.pawvoyage .pv-hero .elementor-heading-title { font-size: 32px !important; }
}

/* ============ Enhanced single-product page ============ */
body.pawvoyage .pv-size-care h3 { font-size: 18px; margin: 18px 0 8px; font-family: 'Poppins', sans-serif; }
body.pawvoyage .pv-size-care p { font-size: 15px; color: var(--pv-ink-soft); margin: 0 0 10px; }
body.pawvoyage .pv-size-care ul { margin: 0 0 10px; padding-left: 20px; }
body.pawvoyage .pv-size-care li { font-size: 15px; color: var(--pv-ink-soft); margin-bottom: 4px; }
body.pawvoyage .pv-size-care-note { font-size: 14px; color: var(--pv-teal); font-weight: 600; margin-top: 6px; }

/* ============ Clean content page template ============ */
body.pawvoyage .pv-clean-main { font-family: 'Nunito', sans-serif; color: var(--pv-ink); }
body.pawvoyage .pv-clean-hero { background: var(--pv-cream); padding: 72px 24px 54px; text-align: center; }
body.pawvoyage .pv-clean-hero-inner { max-width: 900px; margin: 0 auto; }
body.pawvoyage .pv-clean-hero h1 { font-family: 'Poppins', sans-serif; font-size: 42px; font-weight: 800; color: var(--pv-ink); margin: 0 0 14px; line-height: 1.15; }
body.pawvoyage .pv-clean-subtitle { font-size: 18px; color: var(--pv-ink-soft); margin: 0; max-width: 720px; margin-left: auto; margin-right: auto; line-height: 1.55; }
body.pawvoyage .pv-clean-content { padding: 60px 24px 80px; background: #fff; }
body.pawvoyage .pv-clean-wrap { max-width: 920px; margin: 0 auto; }
body.pawvoyage .pv-clean-wrap h2 { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: var(--pv-ink); margin: 48px 0 16px; }
body.pawvoyage .pv-clean-wrap h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--pv-ink); margin: 30px 0 10px; }
body.pawvoyage .pv-clean-wrap p { font-size: 16px; line-height: 1.7; color: var(--pv-ink-soft); margin: 0 0 16px; }
body.pawvoyage .pv-clean-wrap ul,
body.pawvoyage .pv-clean-wrap ol { margin: 0 0 20px; padding-left: 22px; }
body.pawvoyage .pv-clean-wrap li { font-size: 16px; line-height: 1.7; color: var(--pv-ink-soft); margin-bottom: 8px; }
body.pawvoyage .pv-clean-wrap a { color: var(--pv-teal); text-decoration: underline; }
body.pawvoyage .pv-clean-wrap a:hover { color: var(--pv-coral); }
body.pawvoyage .pv-clean-updated { font-size: 14px; color: #999; margin-top: 40px; font-style: italic; }

body.pawvoyage .pv-clean-lead { font-size: 18px; line-height: 1.7; color: var(--pv-ink); margin-bottom: 28px; }
body.pawvoyage .pv-clean-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
body.pawvoyage .pv-clean-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 32px 0; }
body.pawvoyage .pv-clean-card { background: #fff; border: 1px solid #eee; border-radius: 16px; padding: 28px; box-shadow: 0 4px 18px rgba(0,0,0,.04); }
body.pawvoyage .pv-clean-card h3 { margin-top: 0 !important; }
body.pawvoyage .pv-clean-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--pv-cream); color: var(--pv-teal); font-size: 22px; margin-bottom: 14px; }
body.pawvoyage .pv-clean-card p { margin-bottom: 0; }
body.pawvoyage .pv-clean-highlight { background: var(--pv-cream); border-left: 4px solid var(--pv-coral); padding: 22px 26px; border-radius: 0 12px 12px 0; margin: 28px 0; }
body.pawvoyage .pv-clean-highlight p { margin: 0; font-size: 17px; color: var(--pv-ink); }

/* Contact page */
body.pawvoyage .pv-clean-contact { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
body.pawvoyage .pv-clean-contact-info { display: flex; flex-direction: column; gap: 18px; }
body.pawvoyage .pv-clean-contact-info .pv-clean-card { padding: 22px 24px; }
body.pawvoyage .pv-clean-contact-info h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; margin: 0 0 6px; }
body.pawvoyage .pv-clean-contact-info p { font-size: 15px; margin: 0; }
body.pawvoyage .pv-clean-wrap .wpcf7 { background: var(--pv-cream); padding: 32px; border-radius: 16px; }
body.pawvoyage .pv-clean-wrap .wpcf7-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--pv-ink); }
body.pawvoyage .pv-clean-wrap .wpcf7-form input[type=text],
body.pawvoyage .pv-clean-wrap .wpcf7-form input[type=email],
body.pawvoyage .pv-clean-wrap .wpcf7-form textarea { width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: 'Nunito', sans-serif; margin-bottom: 14px; background: #fff; }
body.pawvoyage .pv-clean-wrap .wpcf7-form input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pv-coral);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 28px;
  height: 46px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
body.pawvoyage .pv-clean-wrap .wpcf7-form input[type=submit]:hover { background: var(--pv-coral-dark); }
body.pawvoyage .pv-clean-wrap .wpcf7-not-valid-tip { font-size: 13px; color: #c0392b; }

@media (max-width: 767px) {
  body.pawvoyage .pv-clean-hero { padding: 52px 20px 38px; }
  body.pawvoyage .pv-clean-hero h1 { font-size: 32px; }
  body.pawvoyage .pv-clean-grid,
  body.pawvoyage .pv-clean-grid-2,
  body.pawvoyage .pv-clean-contact { grid-template-columns: 1fr; }
  body.pawvoyage .pv-clean-wrap .wpcf7 { padding: 22px; }
}

body.pawvoyage .pv-specs { margin: 14px 0 4px; padding: 14px 16px; background: var(--pv-surface); border: 1px solid var(--pv-line); border-radius: var(--pv-radius-sm); }
body.pawvoyage .pv-specs-label { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--pv-ink-muted); margin-bottom: 8px; }
body.pawvoyage .pv-specs ul { list-style: none; margin: 0; padding: 0; }
body.pawvoyage .pv-specs li { font-size: 14px; color: var(--pv-ink-soft); padding: 3px 0; }
body.pawvoyage .pv-specs li strong { color: var(--pv-ink); }

body.pawvoyage .pv-related-rail { background: var(--pv-cream); margin-top: 8px; clear: both; width: 100%; display: block; }
body.pawvoyage .pv-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Force Elementor icon-box (and any Elementor) FA5 icons to render with Bridge's bundled font */
body.pawvoyage .elementor-icon-box-icon i.fas,
body.pawvoyage .elementor-icon-box-icon i.fa,
body.pawvoyage .elementor-view-default i.fas,
body.pawvoyage .elementor-icon i.fas {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  font-style: normal !important;
}

body.pawvoyage .pv-related-card { display: block; background: var(--pv-white); border: 1px solid var(--pv-line); border-radius: var(--pv-radius); overflow: hidden; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
body.pawvoyage .pv-related-card:hover { transform: translateY(-4px); box-shadow: var(--pv-shadow); }
body.pawvoyage .pv-related-thumb { display: block; height: 130px; background-size: cover; background-position: center; background-color: var(--pv-surface); }
body.pawvoyage .pv-related-title { display: block; font-size: 13px; font-weight: 600; color: var(--pv-ink); padding: 12px 12px 4px; line-height: 1.35; }
body.pawvoyage .pv-related-price { display: block; padding: 0 12px 14px; font-weight: 700; color: var(--pv-coral); font-size: 15px; }

body.pawvoyage .pv-sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  background: var(--pv-white); border-top: 1px solid var(--pv-line);
  box-shadow: 0 -8px 30px rgba(43,43,43,.12);
  transform: translateY(110%); transition: transform .25s ease;
}
body.pawvoyage .pv-sticky-bar.show { transform: translateY(0); }
body.pawvoyage .pv-sticky-bar.flash { background: var(--pv-coral-light); }
body.pawvoyage .pv-sticky-inner { max-width: 1140px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 16px; }
body.pawvoyage .pv-sticky-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--pv-ink); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body.pawvoyage .pv-sticky-price { font-weight: 700; color: var(--pv-coral); font-size: 17px; }
body.pawvoyage .pv-sticky-btn { background: var(--pv-coral); color: #fff; border: none; border-radius: 10px; padding: 13px 26px; font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap; }
body.pawvoyage .pv-sticky-btn:hover { background: var(--pv-coral-dark); }

@media (max-width: 767px) {
  body.pawvoyage .pv-related-grid { grid-template-columns: repeat(2, 1fr); }
  body.pawvoyage .pv-sticky-title { font-size: 13px; }
  body.pawvoyage .pv-sticky-price { font-size: 15px; }
  body.pawvoyage .pv-sticky-btn { padding: 11px 18px; font-size: 14px; }
}

/* ============ Elementor home engagement block (countdown / testimonials / pricing) ============ */
body.pawvoyage .pv-engagement { background: var(--pv-cream); }
body.pawvoyage .pv-engagement .elementor-section .elementor-container { max-width: 1140px !important; }
body.pawvoyage .pv-engagement .elementor-widget-heading .elementor-heading-title { font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; }

/* Countdown */
body.pawvoyage .pv-engagement .qodef-qi-countdown { justify-content: center !important; }
body.pawvoyage .pv-engagement .qodef-qi-countdown .qodef-digit-wrapper { background: var(--pv-white) !important; border: 1px solid var(--pv-line) !important; border-radius: 12px !important; box-shadow: var(--pv-shadow) !important; }
body.pawvoyage .pv-engagement .qodef-qi-countdown .qodef-digit { color: var(--pv-coral) !important; font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; }
body.pawvoyage .pv-engagement .qodef-qi-countdown .qodef-label { color: var(--pv-ink) !important; font-size: 12px !important; text-transform: uppercase !important; letter-spacing: .5px !important; }

/* Testimonials carousel */
body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_testimonials_slider .qodef-qi-testimonials-slider .swiper-slide {
  background: var(--pv-white) !important; border: 1px solid var(--pv-line) !important; border-radius: var(--pv-radius) !important;
  padding: 28px 26px !important; box-shadow: var(--pv-shadow) !important;
}
body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_testimonials_slider .qodef-e-text { color: var(--pv-ink) !important; font-size: 15px !important; line-height: 1.6 !important; }
body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_testimonials_slider .qodef-e-author-name { color: var(--pv-ink) !important; font-weight: 700 !important; }
body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_testimonials_slider .qodef-e-author-job { color: var(--pv-teal) !important; }

/* Pricing tables ("ways to save") */
body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_pricing_table .qodef-qi-pricing-table {
  background: var(--pv-white) !important; border: 1px solid var(--pv-line) !important; border-radius: var(--pv-radius) !important; box-shadow: var(--pv-shadow) !important;
}
body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_pricing_table .qodef-qi-pricing-table.qodef-status--featured { border: 2px solid var(--pv-coral) !important; }
body.pawvoyage .pv-engagement .qodef-qi-pricing-table .qodef-m-title { color: var(--pv-ink) !important; font-weight: 700 !important; }
body.pawvoyage .pv-engagement .qodef-qi-pricing-table .qodef-m-price-value { color: var(--pv-coral) !important; font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; }
body.pawvoyage .pv-engagement .qodef-qi-pricing-table .qodef-m-label { background: var(--pv-coral) !important; color: #fff !important; }
body.pawvoyage .pv-engagement .qodef-qi-pricing-table .qodef-m-button a { background: var(--pv-coral) !important; color: #fff !important; border-radius: 10px !important; font-weight: 700 !important; }
body.pawvoyage .pv-engagement .qodef-qi-pricing-table .qodef-m-button a:hover { background: var(--pv-coral-dark) !important; }

@media (max-width: 767px) {
  body.pawvoyage .pv-engagement .elementor-widget-qi_addons_for_elementor_pricing_table { margin-bottom: 16px !important; }
}

/* Product page custom tabs (Specs / Shipping & Returns) */
body.pawvoyage .pv-tab-specs table { width: 100%; max-width: 520px; border-collapse: collapse; margin-bottom: 12px; }
body.pawvoyage .pv-tab-specs th, body.pawvoyage .pv-tab-specs td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--pv-line); font-size: 14px; }
body.pawvoyage .pv-tab-specs th { color: var(--pv-ink); font-weight: 600; width: 38%; background: var(--pv-cream); }
body.pawvoyage .pv-tab-specs td { color: var(--pv-ink); }
body.pawvoyage .pv-tab-specs .pv-tab-note { color: var(--pv-teal); font-size: 14px; margin-top: 6px; }
body.pawvoyage .pv-tab-shipping h4 { margin: 0 0 6px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--pv-ink); }
body.pawvoyage .pv-tab-shipping p { margin: 0 0 12px; color: var(--pv-ink); font-size: 14px; line-height: 1.6; }
body.pawvoyage .pv-tab-shipping a { color: var(--pv-coral); font-weight: 600; }

/* ============ v2.0.18 — vertical centering normalizer ============ */
/* Root cause of "text sits too low" buttons: the element sizes itself with
   padding + line-height (or a fixed height + padding under border-box), so the
   text's ink box is pushed down by the half-leading. Anything that renders a
   single line of centered text is converted to flex centering + line-height:1,
   which is independent of font metrics and of any inherited line-height. */
body.pawvoyage .pv-hero-badge,
body.pawvoyage .pv-card-badge,
body.pawvoyage .pv-filter-bar a,
body.pawvoyage .pv-card-atc,
body.pawvoyage .pv-nl-form button,
body.pawvoyage .wpcf7-form input[type="submit"],
body.pawvoyage .wpcf7-form input[type="button"],
body.pawvoyage.woocommerce .woocommerce-Button,
body.pawvoyage.woocommerce a.button,
body.pawvoyage.woocommerce button.button,
body.pawvoyage .button,
body.pawvoyage .qbutton {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* Buttons that must stay full width keep their block/inline-block behaviour
   but still center their label on both axes. */
body.pawvoyage .pv-card-atc,
body.pawvoyage.woocommerce a.button.alt,
body.pawvoyage.woocommerce button.button.alt { line-height: 1 !important; }

/* Product page Add to cart: Bridge sets height:38px + line-height:35px while our
   rule adds 16px vertical padding (border-box) => content box 6px and the label
   spilled 6px below the pill. Release the fixed height and center with flex. */
body.pawvoyage.woocommerce div.product form.cart .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  line-height: 1 !important;
  padding: 14px 36px !important;
  min-height: 46px !important;
}

/* Keep the quantity field the same height as the Add to cart button */
body.pawvoyage.woocommerce div.product form.cart div.quantity { height: 46px !important; }
body.pawvoyage.woocommerce div.product form.cart div.quantity .qty { height: 46px !important; line-height: 1 !important; }
body.pawvoyage.woocommerce div.product form.cart .quantity .qty { display: inline-flex; align-items: center; }

/* WooCommerce blocks (cart / checkout) — labels use their own text wrapper */
body.pawvoyage .wc-block-components-button__text { line-height: 1 !important; }
body.pawvoyage .wc-block-components-button { align-items: center !important; justify-content: center !important; }


/* ============ v2.0.19 — homepage modelled on Tuft + Paw ============ */
/* Module order: promo bar -> hero -> trust strip -> deal -> most-loved rail
   -> category squares -> brand story -> why-us -> new-in rail -> guarantee. */

/* Hero facts line (replaces the old fabricated rating) */
body.pawvoyage .pv-hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pv-ink-soft);
}
body.pawvoyage .pv-hero-facts .pv-dot { color: var(--pv-coral); }

/* ---- Product rail (Most-loved / New in) ---- */
body.pawvoyage .pv-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
body.pawvoyage .pv-sec-head-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--pv-ink);
  text-transform: none;
}
body.pawvoyage .pv-sec-head-left p {
  margin: 0;
  color: var(--pv-ink-soft);
  font-size: 15px;
}
body.pawvoyage .pv-rail-nav { display: flex; align-items: center; gap: 10px; }
body.pawvoyage .pv-sec-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--pv-teal);
  text-decoration: none;
  white-space: nowrap;
}
body.pawvoyage .pv-sec-link:hover { color: var(--pv-teal-dark); }
body.pawvoyage .pv-rail-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--pv-line);
  background: var(--pv-white);
  color: var(--pv-ink);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease;
}
body.pawvoyage .pv-rail-btn:hover { background: var(--pv-cream); border-color: var(--pv-coral); }

body.pawvoyage .pv-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body.pawvoyage .pv-rail::-webkit-scrollbar { display: none; }

body.pawvoyage .pv-loved {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
  background: var(--pv-white);
  border: 1px solid var(--pv-line);
  border-radius: var(--pv-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
body.pawvoyage .pv-loved:hover { transform: translateY(-4px); box-shadow: var(--pv-shadow-lg); }

body.pawvoyage .pv-loved-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--pv-surface);
  overflow: hidden;
}
body.pawvoyage .pv-loved-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
body.pawvoyage .pv-loved:hover .pv-loved-media img { transform: scale(1.04); }

body.pawvoyage .pv-loved-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body.pawvoyage .pv-loved-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.pawvoyage .pv-loved-title a { color: var(--pv-ink); text-decoration: none; }
body.pawvoyage .pv-loved-title a:hover { color: var(--pv-teal); }

body.pawvoyage .pv-loved-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--pv-ink-muted);
}
body.pawvoyage .pv-loved-rating .pv-stars { color: #F4B400; letter-spacing: 1px; }

body.pawvoyage .pv-loved-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--pv-ink);
  margin-top: auto;
  margin-bottom: 12px;
}
body.pawvoyage .pv-loved-price del { color: var(--pv-ink-muted); font-weight: 600; font-size: 14px; }
body.pawvoyage .pv-loved-price ins { text-decoration: none; color: var(--pv-coral); }

body.pawvoyage .pv-loved-atc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 40px;
  padding: 0 18px;
  width: 100%;
  background: var(--pv-ink);
  color: var(--pv-white);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s ease;
}
body.pawvoyage .pv-loved-atc:hover { background: var(--pv-coral); color: var(--pv-white); }

/* ---- Category squares ---- */
body.pawvoyage .pv-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body.pawvoyage .pv-cat {
  display: block;
  text-decoration: none;
  border-radius: var(--pv-radius);
  overflow: hidden;
  background: var(--pv-white);
  border: 1px solid var(--pv-line);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.pawvoyage .pv-cat:hover { transform: translateY(-4px); box-shadow: var(--pv-shadow-lg); }
body.pawvoyage .pv-cat-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pv-surface);
}
body.pawvoyage .pv-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
body.pawvoyage .pv-cat:hover .pv-cat-img img { transform: scale(1.05); }
body.pawvoyage .pv-cat-name {
  display: block;
  padding: 14px 16px 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--pv-ink);
}
body.pawvoyage .pv-cat-count {
  display: block;
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--pv-ink-muted);
}

/* ---- Brand story ---- */
body.pawvoyage .pv-story { background: var(--pv-cream); padding: 64px 0; }
body.pawvoyage .pv-story-inner { max-width: 760px; text-align: center; }
body.pawvoyage .pv-story h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--pv-ink);
  margin: 0 0 18px;
  text-transform: none;
}
body.pawvoyage .pv-story p {
  color: var(--pv-ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 14px;
}
body.pawvoyage .pv-story-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--pv-teal);
  text-decoration: none;
}
body.pawvoyage .pv-story-link:hover { color: var(--pv-teal-dark); }

/* ---- Why us ---- */
body.pawvoyage .pv-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
body.pawvoyage .pv-why-card {
  background: var(--pv-surface);
  border: 1px solid var(--pv-line);
  border-radius: var(--pv-radius);
  padding: 24px 22px;
}
body.pawvoyage .pv-why-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--pv-coral);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
body.pawvoyage .pv-why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--pv-ink);
  margin: 0 0 8px;
  text-transform: none;
}
body.pawvoyage .pv-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--pv-ink-soft);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  body.pawvoyage .pv-loved { flex: 0 0 calc((100% - 40px) / 3); }
  body.pawvoyage .pv-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.pawvoyage .pv-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.pawvoyage .pv-sec-head-left h2 { font-size: 26px; }
}

@media (max-width: 767px) {
  body.pawvoyage .pv-sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  body.pawvoyage .pv-sec-head-left h2 { font-size: 23px; }
  body.pawvoyage .pv-rail { gap: 14px; padding: 4px 4px 12px; }
  body.pawvoyage .pv-loved { flex: 0 0 68%; }
  body.pawvoyage .pv-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  body.pawvoyage .pv-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  body.pawvoyage .pv-story { padding: 44px 0; }
  body.pawvoyage .pv-story h2 { font-size: 25px; }
  body.pawvoyage .pv-rail-nav { width: 100%; justify-content: space-between; }
}

/* ============================================================
   v2.1.0 — product description accordion opens by default
   (see js/product-tabs.js; Bridge hides every panel inline)
   ============================================================ */
.q_accordion_holder.woocommerce-accordion > .title-holder.pv-acc-open {
  background: var(--pv-coral-light, #FFF0EB);
  color: var(--pv-ink, #1A1A1A);
}
.q_accordion_holder.woocommerce-accordion > .title-holder.pv-acc-open .tab-title {
  color: var(--pv-ink, #1A1A1A);
}
.q_accordion_holder.woocommerce-accordion > .title-holder.pv-acc-open::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pv-coral, #FF7A59);
}

/* Long-form product copy: readable measure + real headings */
.pv-pd { max-width: 78ch; }
.pv-pd .pv-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--pv-ink, #1A1A1A);
  margin: 0 0 22px;
}
.pv-pd h2 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 30px 0 12px;
  color: var(--pv-ink, #1A1A1A);
}
.pv-pd ul { margin: 0 0 8px; padding-left: 20px; }
.pv-pd li { line-height: 1.7; margin-bottom: 8px; }
.pv-pd p { line-height: 1.75; }
.pv-pd table.pv-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 8px;
  font-size: 0.9375rem;
}
.pv-pd table.pv-specs th,
.pv-pd table.pv-specs td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #ECECEC;
  vertical-align: top;
}
.pv-pd table.pv-specs th {
  width: 34%;
  font-weight: 600;
  color: #5A5A5A;
  background: #FAFAFA;
}
@media (max-width: 680px) {
  .pv-pd .pv-lead { font-size: 1rem; }
  .pv-pd table.pv-specs th { width: 42%; }
}
/* ============ v2.1.1 — "View cart" link was sliced off the card ============ */
/* After a successful AJAX add-to-cart WooCommerce appends
   <a class="added_to_cart wc-forward">View cart</a> right after the button.
   Both are inline-level boxes: the button is `display:flex; width:100%` (220px)
   and the link is `inline-block` at 118px. They fought over one line, 338px of
   content overflowed the 220px box, and the link landed at x = -22px — outside
   the card — where .pv-card-inner's `overflow:hidden` sliced it to a sliver.
   The button also jumped 26px taller. Force a column so the link always stacks
   underneath the pill, and give it its own visible affordance. */
body.pawvoyage .pv-product-card .pv-card-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 8px;
}
body.pawvoyage .pv-product-card .pv-card-actions > a.pv-card-atc {
  width: 100% !important;
  flex: 0 0 auto;
}

/* The link itself: a solid coral pill with a tick, so it reads as the clear
   next step and cannot be mistaken for a stray box. */
body.pawvoyage .pv-product-card .pv-card-actions a.added_to_cart {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 36px;
  min-height: 36px;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  border: 0;
  border-radius: 999px;
  background: var(--pv-coral);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1 !important;
  text-decoration: none !important;
  /* WooCommerce core uppercases .added_to_cart; the pill above it is sentence
     case, so two stacked buttons would disagree. Match the button. */
  text-transform: none !important;
  letter-spacing: normal !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.pawvoyage .pv-product-card .pv-card-actions a.added_to_cart::before {
  content: "\2713\00a0";
  font-weight: 700;
}
body.pawvoyage .pv-product-card .pv-card-actions a.added_to_cart:hover,
body.pawvoyage .pv-product-card .pv-card-actions a.added_to_cart:focus {
  background: var(--pv-coral-dark);
  color: #fff !important;
}

/* The button keeps its teal "added" state, but must not stretch to fill the
   column now that there are two children. */
body.pawvoyage .pv-product-card a.pv-card-atc.added { background: var(--pv-teal); }

/* Related-products rail uses its own anchor; same stacking contract. */
body.pawvoyage .pv-loved-card .pv-loved-actions,
body.pawvoyage .pv-loved-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px;
}
