/*
Theme Name: PawVoyage
Theme URI: https://wp-test.easytry.shop/
Author: Codex
Author URI: https://wp-test.easytry.shop/
Description: A pet products cross-border ecommerce MVP theme for WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: pawvoyage
*/

:root {
  --pv-ink: #1e2421;
  --pv-moss: #194b38;
  --pv-mint: #e8f3ed;
  --pv-cream: #fbfaf4;
  --pv-coral: #e76f51;
  --pv-sky: #8ecae6;
  --pv-saffron: #f4a261;
  --pv-stone: #59635f;
  --pv-line: rgba(30, 36, 33, 0.14);
  --pv-shadow: 0 20px 45px rgba(25, 75, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pv-ink);
  background: var(--pv-cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.pv-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.pv-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--pv-line);
  background: rgba(251, 250, 244, 0.92);
  backdrop-filter: blur(14px);
}

.pv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.pv-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--pv-moss);
  font-size: 1.2rem;
}

.pv-brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--pv-moss);
  color: var(--pv-cream);
  font-weight: 900;
}

.pv-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--pv-stone);
  font-weight: 700;
}

.pv-nav ul,
.pv-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pv-nav li,
.pv-menu li {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pv-nav li::marker,
.pv-menu li::marker {
  content: "";
}

.pv-nav a:hover,
.pv-nav a:focus {
  color: var(--pv-moss);
}

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

.pv-button,
.pv-wc-scope .button,
.pv-wc-scope button,
.pv-wc-scope input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--pv-coral);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(231, 111, 81, 0.22);
}

.pv-button.secondary {
  border: 1px solid var(--pv-line);
  background: #fff;
  color: var(--pv-moss);
  box-shadow: none;
}

.pv-hero {
  padding: 42px 0 54px;
}

.pv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 42px;
}

.pv-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(25, 75, 56, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--pv-moss);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pv-hero h1 {
  margin: 20px 0 18px;
  color: var(--pv-ink);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.pv-hero p {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--pv-stone);
  font-size: 1.08rem;
}

.pv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pv-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 520px;
  background:
    linear-gradient(155deg, rgba(25, 75, 56, 0.16), rgba(142, 202, 230, 0.22)),
    url("https://placehold.co/980x760/e8f3ed/194b38/png?text=PawVoyage+travel+kit") center / cover;
  box-shadow: var(--pv-shadow);
}

.pv-shipping-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.pv-shipping-label strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pv-moss);
  font-size: 1.1rem;
}

.pv-shipping-label span {
  color: var(--pv-stone);
  font-weight: 650;
}

.pv-section {
  padding: 54px 0;
}

.pv-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.pv-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.pv-section-head p {
  max-width: 420px;
  margin: 0;
  color: var(--pv-stone);
}

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

.pv-category-card {
  min-height: 164px;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 36, 33, 0.05);
}

.pv-category-card span {
  display: inline-flex;
  margin-bottom: 36px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--pv-mint);
  color: var(--pv-moss);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pv-category-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.15;
}

.pv-products {
  background: var(--pv-mint);
}

.pv-product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.pv-product-card,
.woocommerce ul.products li.product {
  overflow: hidden;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 75, 56, 0.08);
}

.pv-product-image,
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f6f1;
}

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

.pv-product-content {
  padding: 16px;
}

.pv-product-card h3 {
  margin: 0 0 8px;
  min-height: 2.7em;
  font-size: 1rem;
  line-height: 1.25;
}

.pv-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.pv-price,
.woocommerce .price {
  color: var(--pv-moss);
  font-weight: 900;
}

.pv-pill {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(142, 202, 230, 0.22);
  color: #24536b;
  font-size: 0.72rem;
  font-weight: 850;
}

.pv-trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.pv-trust-panel {
  border-radius: 8px;
  padding: 30px;
  background: var(--pv-moss);
  color: #fff;
}

.pv-trust-panel h2 {
  color: #fff;
}

.pv-trust-list {
  display: grid;
  gap: 12px;
}

.pv-trust-item {
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.pv-trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.pv-trust-item span {
  color: var(--pv-stone);
}

.pv-newsletter {
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, var(--pv-sky), var(--pv-saffron));
}

.pv-newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.pv-newsletter input {
  min-width: 0;
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
}

.pv-form-notice {
  border: 1px solid rgba(25, 75, 56, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--pv-mint);
  color: var(--pv-moss);
  font-weight: 800;
}

.pv-form-notice--error {
  border-color: rgba(231, 111, 81, 0.45);
  background: #fff0ea;
  color: #9f3f25;
}

.pv-site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--pv-line);
  color: var(--pv-stone);
}

.pv-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.pv-page,
.pv-wc-scope {
  padding: 48px 0 72px;
}

.pv-wc-scope .woocommerce {
  max-width: 1180px;
  margin: 0 auto;
}

.pv-wc-scope .woocommerce-products-header__title,
.pv-page h1 {
  margin-top: 0;
  color: var(--pv-moss);
  font-size: clamp(2rem, 4vw, 4rem);
}

.pv-wc-scope .woocommerce ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding-bottom: 16px;
}

.pv-wc-scope .woocommerce ul.products::before,
.pv-wc-scope .woocommerce ul.products::after {
  display: none;
}

.pv-wc-scope .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

@media (max-width: 900px) {
  .pv-header-inner,
  .pv-section-head,
  .pv-footer-grid {
    align-items: start;
    flex-direction: column;
  }

  .pv-nav {
    flex-wrap: wrap;
  }

  .pv-hero-grid,
  .pv-trust-grid,
  .pv-wc-scope .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .pv-hero-card {
    min-height: 360px;
  }

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

@media (max-width: 560px) {
  .pv-container {
    width: min(100% - 24px, 1180px);
  }

  .pv-header-actions {
    width: 100%;
  }

  .pv-header-actions .pv-button {
    flex: 1;
  }

  .pv-category-grid,
  .pv-product-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .pv-newsletter form {
    flex-direction: column;
  }
}

/* Ecommerce UX pass */
.pv-topbar {
  background: var(--pv-moss);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.pv-topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.pv-search {
  flex: 1;
  max-width: 390px;
}

.pv-search input[type="search"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--pv-ink);
  font: inherit;
}

.pv-featured-buy {
  overflow: hidden;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--pv-shadow);
}

.pv-deal-label {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--pv-moss);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pv-featured-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  background: var(--pv-mint);
}

.pv-featured-copy {
  padding: 22px;
}

.pv-featured-copy h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.pv-featured-copy p {
  margin: 0 0 16px;
  color: var(--pv-stone);
}

.pv-rating,
.pv-card-rating {
  color: #9a6a05;
  font-size: 0.82rem;
  font-weight: 900;
}

.pv-card-rating span {
  color: var(--pv-stone);
  font-weight: 750;
}

.pv-featured-row,
.pv-shipping-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pv-featured-row strong {
  color: var(--pv-moss);
  font-size: 1.35rem;
}

.pv-shipping-strip {
  padding: 14px 22px;
  border-top: 1px solid var(--pv-line);
  background: var(--pv-mint);
  color: var(--pv-moss);
  font-size: 0.86rem;
  font-weight: 850;
}

.pv-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pv-hero-proof span,
.pv-filter-chip {
  border: 1px solid var(--pv-line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--pv-stone);
  font-size: 0.82rem;
  font-weight: 800;
}

.pv-shop-tools {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.pv-shop-tools .pv-filter-chip:hover,
.pv-shop-tools .pv-filter-chip:focus {
  border-color: var(--pv-moss);
  background: var(--pv-mint);
  color: var(--pv-moss);
}

.pv-trust-strip {
  border-block: 1px solid var(--pv-line);
  background: #fff;
}

.pv-trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.pv-trust-strip-grid div {
  padding: 18px 16px;
  border-right: 1px solid var(--pv-line);
}

.pv-trust-strip-grid div:last-child {
  border-right: 0;
}

.pv-trust-strip-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pv-moss);
}

.pv-trust-strip-grid span {
  color: var(--pv-stone);
  font-size: 0.9rem;
}

.pv-wc-scope .woocommerce-result-count {
  margin: 0 0 20px;
  color: var(--pv-stone);
  font-weight: 800;
}

.pv-wc-scope .woocommerce-ordering {
  margin: 0 0 22px;
}

.pv-wc-scope .woocommerce-ordering select,
.pv-wc-scope select,
.pv-wc-scope input,
.pv-wc-scope textarea,
.pv-page input,
.pv-page textarea,
.pv-page select {
  min-height: 44px;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--pv-ink);
  font: inherit;
}

.pv-page textarea,
.pv-wc-scope textarea {
  min-height: 120px;
  padding-top: 10px;
}

.pv-wc-scope ul.products {
  clear: both;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 24px !important;
  margin: 24px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.pv-wc-scope ul.products::before,
.pv-wc-scope ul.products::after {
  display: none !important;
}

.pv-wc-scope ul.products li.product {
  float: none !important;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 0 18px !important;
  text-align: left !important;
}

.pv-wc-scope ul.products li.product a img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 0 14px !important;
  background: var(--pv-mint);
}

.pv-wc-scope .woocommerce-loop-product__title {
  min-height: 2.8em;
  padding: 0 !important;
  color: var(--pv-ink);
  font-size: 1.08rem !important;
  line-height: 1.25;
}

.pv-wc-scope ul.products li.product .price {
  display: block;
  margin-top: 8px;
  color: var(--pv-moss) !important;
  font-size: 1.05rem;
}

.pv-wc-scope .woocommerce a.button,
.pv-wc-scope .woocommerce button.button,
.pv-wc-scope .woocommerce input.button,
.pv-wc-scope .woocommerce #respond input#submit,
.pv-wc-scope .wc-block-components-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 8px !important;
  background: var(--pv-coral) !important;
  color: #fff !important;
  font-weight: 900 !important;
  box-shadow: 0 10px 24px rgba(231, 111, 81, 0.18);
}

.pv-wc-scope .woocommerce div.product {
  align-items: start;
  margin-top: 18px;
}

.pv-wc-scope .woocommerce div.product div.images,
.pv-wc-scope .woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
}

.pv-wc-scope .woocommerce div.product div.images img {
  border-radius: 8px;
  background: var(--pv-mint);
}

.pv-wc-scope .woocommerce div.product .product_title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.pv-wc-scope .woocommerce div.product p.price {
  margin: 12px 0;
  color: var(--pv-moss);
  font-size: 1.6rem;
}

.pv-wc-scope .woocommerce .quantity .qty {
  width: 82px;
  min-height: 46px;
  text-align: center;
}

.pv-wc-scope .product_meta {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.pv-product-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.pv-product-assurance div,
.pv-checkout-note {
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 14px;
  background: var(--pv-mint);
}

.pv-product-assurance strong,
.pv-product-assurance span,
.pv-checkout-note strong,
.pv-checkout-note span {
  display: block;
}

.pv-product-assurance strong,
.pv-checkout-note strong {
  color: var(--pv-moss);
}

.pv-product-assurance span,
.pv-checkout-note span {
  margin-top: 4px;
  color: var(--pv-stone);
  font-size: 0.9rem;
}

.pv-checkout-note {
  margin-bottom: 18px;
}

.pv-wc-scope .woocommerce-tabs {
  margin-top: 34px;
}

.pv-wc-scope .woocommerce-tabs ul.tabs {
  padding: 0 !important;
}

.pv-wc-scope .woocommerce-tabs ul.tabs li {
  border-radius: 8px 8px 0 0 !important;
}

.pv-wc-scope .woocommerce-cart-form,
.pv-wc-scope .cart_totals,
.pv-wc-scope form.checkout,
.pv-wc-scope .woocommerce-form-login,
.pv-wc-scope .woocommerce-form-register,
.pv-wc-scope .woocommerce-MyAccount-content,
.pv-wc-scope .woocommerce-MyAccount-navigation {
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 75, 56, 0.06);
}

.pv-wc-scope table.shop_table {
  overflow: hidden;
  border: 1px solid var(--pv-line) !important;
  border-radius: 8px;
  background: #fff;
}

.pv-wc-scope table.shop_table th,
.pv-wc-scope table.shop_table td {
  border-color: var(--pv-line) !important;
  padding: 16px !important;
}

.pv-wc-scope table.shop_table .product-thumbnail img {
  width: 84px;
  border-radius: 8px;
  background: var(--pv-mint);
}

.pv-wc-scope table.shop_table .product-name a {
  color: var(--pv-ink);
  font-weight: 900;
}

.pv-wc-scope .cart-collaterals .cart_totals {
  width: min(420px, 100%) !important;
}

.pv-wc-scope .checkout_coupon,
.pv-wc-scope .woocommerce-info,
.pv-wc-scope .woocommerce-message,
.pv-wc-scope .woocommerce-error {
  border-radius: 8px;
  background: #fff !important;
}

.pv-page-shell {
  display: grid;
  gap: 28px;
}

.pv-page-intro {
  max-width: 720px;
}

.pv-page-content {
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 75, 56, 0.06);
}

.pv-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pv-info-grid div {
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 16px;
  background: var(--pv-mint);
}

.pv-info-grid strong,
.pv-info-grid span {
  display: block;
}

.pv-info-grid strong {
  color: var(--pv-moss);
}

.pv-info-grid span {
  margin-top: 6px;
  color: var(--pv-stone);
}

.pv-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 28px;
  align-items: start;
}

.pv-contact-form {
  display: grid;
  gap: 14px;
}

.pv-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--pv-stone);
  font-weight: 800;
}

.pv-wc-scope .woocommerce-form-login label,
.pv-wc-scope .woocommerce-form label,
.pv-wc-scope .checkout label {
  color: var(--pv-ink);
  font-weight: 800;
}

.pv-wc-scope .woocommerce-privacy-policy-text,
.pv-wc-scope .woocommerce-LostPassword,
.pv-wc-scope .woocommerce-form__label-for-checkbox {
  color: var(--pv-stone);
}

.pv-wc-scope .woocommerce-account .woocommerce {
  display: grid;
  gap: 20px;
}

.pv-wc-scope .woocommerce .u-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pv-wc-scope .woocommerce .u-columns::before,
.pv-wc-scope .woocommerce .u-columns::after {
  display: none !important;
}

.pv-wc-scope .woocommerce .u-column1,
.pv-wc-scope .woocommerce .u-column2 {
  float: none !important;
  width: 100% !important;
}

.pv-policy-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.pv-policy-list p {
  margin: 0;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 16px;
  background: var(--pv-mint);
}

.pv-wc-scope .woocommerce form .form-row {
  margin-bottom: 14px;
}

.pv-wc-scope .woocommerce form .form-row input.input-text,
.pv-wc-scope .woocommerce form .form-row textarea,
.pv-wc-scope .select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  padding: 8px 12px;
}

.pv-wc-scope #payment {
  border: 1px solid var(--pv-line);
  border-radius: 8px;
  background: #fff !important;
}

.pv-wc-scope .woocommerce-checkout-review-order-table {
  box-shadow: 0 12px 32px rgba(25, 75, 56, 0.06);
}

@media (max-width: 980px) {
  .pv-topbar-inner,
  .pv-header-inner {
    flex-wrap: wrap;
  }

  .pv-search {
    order: 3;
    max-width: none;
    flex-basis: 100%;
  }

  .pv-trust-strip-grid,
  .pv-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pv-topbar-inner {
    display: grid;
    gap: 4px;
    justify-items: start;
    padding: 8px 0;
    font-size: 0.78rem;
  }

  .pv-header-inner {
    gap: 14px;
    padding: 12px 0;
  }

  .pv-nav,
  .pv-menu {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 16px;
    padding-bottom: 2px;
    white-space: normal;
  }

  .pv-header-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .pv-search {
    width: 100%;
    flex: 0 0 100%;
  }

  .pv-topbar-inner,
  .pv-featured-row,
  .pv-shipping-strip {
    align-items: start;
    flex-direction: column;
  }

  .pv-trust-strip-grid,
  .pv-info-grid,
  .pv-contact-layout,
  .pv-wc-scope .woocommerce .u-columns {
    grid-template-columns: 1fr;
  }

  .pv-product-assurance {
    grid-template-columns: 1fr;
  }
}
