/*
Theme Name: Figma Posto Vero
Theme URI: https://example.com/figma-postovero
Author: Antigravity + Codex
Description: Tema WordPress/WooCommerce basato sul design Figma di Posto Vero.
Version: 2.0.0
Text Domain: figma-postovero
*/

@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

@font-face {
  font-family: "Brydan Write";
  src: local("Brydan Write"), url("assets/fonts/BrydanWrite.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pv-bg: #f6f1ea;
  --pv-surface: rgba(255, 255, 255, 0.76);
  --pv-surface-strong: #ffffff;
  --pv-surface-muted: #efe5dd;
  --pv-text: #1f1a17;
  --pv-muted-text: #6d635d;
  --pv-primary: #f07b66;
  --pv-primary-deep: #d95d47;
  --pv-primary-soft: rgba(240, 123, 102, 0.14);
  --pv-secondary: #1f1a17;
  --pv-secondary-soft: #3a312d;
  --pv-border: rgba(31, 26, 23, 0.12);
  --pv-border-strong: rgba(31, 26, 23, 0.18);
  --pv-shadow: 0 30px 90px rgba(31, 26, 23, 0.12);
  --pv-shadow-soft: 0 18px 48px rgba(31, 26, 23, 0.08);
  /* Shared gradients keep title surfaces readable across the theme. */
  --pv-coral-panel-gradient: linear-gradient(135deg, #e86d57 0%, #ee8a73 54%, #f2a692 100%);
  --pv-olive-panel-gradient:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 34%),
    linear-gradient(135deg, #566645 0%, #6f8058 58%, #97a48a 100%);
  --pv-panel-glow: rgba(255, 255, 255, 0.06);
  --pv-panel-glow-strong: rgba(255, 255, 255, 0.1);
  --pv-radius-xl: 38px;
  --pv-radius-lg: 30px;
  --pv-radius-md: 22px;
  --pv-radius-sm: 16px;
  --pv-container: 1260px;
  --pv-header-height: 102px;
}

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

html {
  font-size: 16px;
  scroll-padding-top: calc(var(--pv-header-height) + 24px);
}

body {
  margin: 0;
  color: var(--pv-text);
  background:
    radial-gradient(circle at top left, rgba(240, 123, 102, 0.12), transparent 30%),
    radial-gradient(circle at 100% 10%, rgba(240, 123, 102, 0.08), transparent 26%),
    linear-gradient(180deg, #f8f5f1 0%, #f4eee8 48%, #f8f4ef 100%);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.5;
}

body::before {
  top: -10rem;
  right: -8rem;
  background: rgba(240, 123, 102, 0.16);
}

body::after {
  bottom: -12rem;
  left: -10rem;
  background: rgba(255, 255, 255, 0.42);
}

::selection {
  background: rgba(240, 123, 102, 0.28);
  color: var(--pv-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--pv-text);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

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

h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.pv-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.pv-main {
  flex: 1;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.pv-container {
  width: min(var(--pv-container), calc(100% - 2rem));
  margin-inline: auto;
}

.pv-muted-text {
  color: var(--pv-muted-text);
}

/* Header */

.pv-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 1rem 0 0.5rem;
}

.pv-header__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 244, 239, 0.9), rgba(248, 244, 239, 0));
  pointer-events: none;
}

.pv-header__frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(31, 26, 23, 0.08);
}

.pv-header__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(240, 123, 102, 0.34), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.pv-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  padding: 0.8rem 1rem 0.8rem 1rem;
}

.pv-header__center {
  position: absolute;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 19rem);
  min-width: 0;
}

.pv-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  justify-self: start;
}

.pv-logo .custom-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.12);
}

.pv-logo__mark {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pv-primary), #f7aa99);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  box-shadow: 0 18px 34px rgba(240, 123, 102, 0.32);
}

.pv-logo__text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pv-nav {
  min-width: 0;
}

.pv-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
}

.pv-nav--desktop .pv-nav__list {
  padding: 0.35rem;
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.035);
}

.pv-nav__list li {
  min-width: 0;
}

.pv-nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--pv-muted-text);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.pv-nav__list a:hover,
.pv-nav__list .current-menu-item > a,
.pv-nav__list .current_page_item > a,
.pv-nav__list .current-menu-ancestor > a {
  color: var(--pv-text);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(240, 123, 102, 0.2);
}

.pv-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.pv-cart-link,
.pv-mobile-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--pv-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--pv-text);
  display: grid;
  place-items: center;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    color 0.24s ease;
}

.pv-cart-link:hover,
.pv-mobile-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 123, 102, 0.45);
  background: rgba(240, 123, 102, 0.08);
  box-shadow: 0 14px 28px rgba(240, 123, 102, 0.16);
  color: var(--pv-primary-deep);
}

.pv-cart-link:focus-visible,
.pv-mobile-toggle:focus-visible,
.pv-button:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.woocommerce #respond input#submit:focus-visible,
.woocommerce div.product form.cart .button:focus-visible,
.woocommerce #payment #place_order:focus-visible,
.woocommerce-page #payment #place_order:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(240, 123, 102, 0.24);
  outline-offset: 2px;
}

.pv-cart-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pv-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pv-primary), var(--pv-primary-deep));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(240, 123, 102, 0.3);
}

.pv-mobile-toggle {
  display: none;
  cursor: pointer;
  padding: 0;
}

.pv-mobile-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pv-mobile-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.pv-mobile-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.pv-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.pv-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.pv-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.pv-mobile-shell {
  padding-top: 0.9rem;
}

.pv-mobile-shell[hidden] {
  display: none !important;
}

.pv-nav--mobile {
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px rgba(31, 26, 23, 0.12);
}

.pv-nav__list--mobile {
  flex-direction: column;
  align-items: stretch;
}

.pv-nav__list--mobile li {
  width: 100%;
}

.pv-nav__list--mobile a {
  width: 100%;
  justify-content: flex-start;
  padding-inline: 1rem;
}

/* Layout sections */

.pv-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pv-section--narrow-top {
  padding-top: 2rem;
}

.pv-section--muted {
  background: linear-gradient(180deg, rgba(240, 123, 102, 0.14), rgba(240, 123, 102, 0.06));
}

.pv-section--alt {
  background: linear-gradient(180deg, rgba(239, 229, 221, 0.82), rgba(255, 255, 255, 0.28));
}

.pv-hero {
  padding: clamp(4rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.pv-hero__inner,
.pv-page-hero > .pv-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--pv-radius-xl);
  padding: clamp(2.25rem, 6vw, 4.5rem);
  box-shadow: var(--pv-shadow);
  animation: pv-rise 0.72s ease both;
}

.pv-hero__inner::before,
.pv-page-hero > .pv-container::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: var(--pv-panel-glow);
  filter: blur(8px);
}

.pv-hero__inner::after,
.pv-page-hero > .pv-container::after {
  content: "";
  position: absolute;
  top: -28%;
  left: -10%;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: var(--pv-panel-glow-strong);
  filter: blur(16px);
}

.pv-hero__inner {
  background: var(--pv-coral-panel-gradient);
  text-align: center;
  color: #fff;
}

.pv-hero h1,
.pv-hero .pv-hero__subtitle {
  position: relative;
  z-index: 1;
}

.pv-hero h1 {
  margin-bottom: 0.6rem;
  font-family: "Brydan Write", "Fraunces", cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: #fff;
}

.pv-hero .pv-hero__subtitle {
  margin: 0;
  font-family: "Brydan Write", "Fraunces", cursive;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

.pv-page-hero {
  padding: clamp(1rem, 4vw, 2rem) 0 0;
}

.pv-page-hero > .pv-container {
  border: 1px solid var(--pv-border);
}

.pv-page-hero h1,
.pv-page-hero p {
  position: relative;
  z-index: 1;
}

.pv-page-hero p {
  margin: 0;
  max-width: 48rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--pv-muted-text);
}

.pv-page-hero--home-accent > .pv-container,
.pv-page-hero--muted > .pv-container,
.pv-page-hero--gradient-secondary > .pv-container,
.pv-page-hero--gradient-accent > .pv-container {
  background: var(--pv-coral-panel-gradient);
  border-color: rgba(240, 123, 102, 0.24);
}

.pv-page-hero--home-accent h1,
.pv-page-hero--home-accent p,
.pv-page-hero--muted h1,
.pv-page-hero--muted p,
.pv-page-hero--gradient-secondary h1,
.pv-page-hero--gradient-secondary p,
.pv-page-hero--gradient-accent h1,
.pv-page-hero--gradient-accent p {
  color: #fff;
}

.pv-page-hero--home-accent p,
.pv-page-hero--muted p,
.pv-page-hero--gradient-secondary p,
.pv-page-hero--gradient-accent p {
  color: rgba(255, 255, 255, 0.94);
}

/* Homepage */

.pv-home-hero {
  padding: clamp(0.5rem, 1.4vw, 0.95rem) 0 clamp(1rem, 2.4vw, 1.65rem);
}

.pv-home-hero__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(0.85rem, 2vw, 1.45rem);
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgba(240, 123, 102, 0.24);
  border-radius: calc(var(--pv-radius-xl) + 6px);
  background: var(--pv-coral-panel-gradient);
  box-shadow: var(--pv-shadow);
  animation: pv-rise 0.72s ease both;
}

.pv-home-hero__panel::before,
.pv-home-hero__panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.pv-home-hero__panel::before {
  top: -18%;
  left: -6%;
  width: 18rem;
  height: 18rem;
  background: var(--pv-panel-glow);
  filter: blur(10px);
}

.pv-home-hero__panel::after {
  right: -10%;
  bottom: -22%;
  width: 22rem;
  height: 22rem;
  background: var(--pv-panel-glow);
  filter: blur(12px);
}

.pv-home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(0.35rem, 0.8vw, 0.75rem);
}

.pv-home-hero__content h1 {
  margin-bottom: 0.55rem;
  max-width: none;
  color: #fff;
  font-family: "Brydan Write", "Fraunces", cursive;
  font-size: clamp(3rem, 7.2vw, 6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.pv-home-hero__subtitle {
  margin: 0;
  max-width: 12ch;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Brydan Write", "Fraunces", cursive;
  font-size: clamp(1.65rem, 3.6vw, 3.15rem);
  line-height: 0.98;
}

.pv-home-hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 0.7rem;
  min-height: 400px;
}

.pv-home-hero__tile {
  overflow: hidden;
  min-height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.pv-home-hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pv-home-hero__panel:hover .pv-home-hero__tile img {
  transform: scale(1.05);
}

.pv-home-hero__tile--1 {
  grid-row: 1 / span 2;
  transform: translateY(1.35rem);
}

.pv-home-hero__tile--2 {
  transform: translateY(-0.35rem) rotate(3deg);
}

.pv-home-hero__tile--3 {
  transform: translateX(-0.65rem);
}

.pv-home-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1rem, 2.4vw, 1.7rem);
  align-items: stretch;
}

.pv-home-story {
  padding-top: clamp(0.35rem, 1vw, 0.75rem);
  padding-bottom: clamp(2rem, 3.4vw, 2.9rem);
}

.pv-home-story__image,
.pv-home-story__content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--pv-radius-xl);
  box-shadow: var(--pv-shadow-soft);
}

.pv-home-story__image {
  min-height: 100%;
}

.pv-home-story__image img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pv-home-story__image:hover img {
  transform: scale(1.04);
}

.pv-home-story__content {
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.84);
}

.pv-home-story__content h2 {
  margin-bottom: 0.8rem;
}

.pv-home-story__copy {
  display: grid;
  gap: 0.7rem;
}

.pv-home-story__copy p {
  margin: 0;
  color: var(--pv-muted-text);
  font-size: 0.98rem;
}

.pv-home-proposals__header {
  margin-bottom: 1.15rem;
}

.pv-home-proposals__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.pv-home-proposals {
  padding-top: clamp(2rem, 3.6vw, 2.8rem);
  padding-bottom: clamp(2.2rem, 3.8vw, 3rem);
}

.pv-home-card {
  grid-column: span 3;
}

.pv-home-card .pv-card__media {
  aspect-ratio: 4 / 2.65;
}

.pv-home-card:nth-child(1) {
  grid-column: span 6;
}

.pv-home-card:nth-child(1) .pv-card__media {
  aspect-ratio: 16 / 8.7;
}

.pv-home-card .pv-card__content {
  gap: 0.8rem;
  padding: 1.05rem;
}

.pv-home-card:nth-child(1) .pv-card__content {
  padding: 1.2rem;
}

.pv-home-card .pv-card__bottom {
  justify-content: flex-start;
  border-top: 0;
  padding-top: 0.2rem;
}

/* Catalog */

.pv-catalog-hero > .pv-container {
  min-height: 0;
}

.pv-catalog-landing {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.pv-catalog-landing__grid {
  display: grid;
  gap: 1.75rem;
}

.pv-catalog-collection {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: calc(var(--pv-radius-xl) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--pv-shadow-soft);
}

.pv-catalog-collection:nth-child(even) {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.pv-catalog-collection:nth-child(even) .pv-catalog-collection__image {
  order: 2;
}

.pv-catalog-collection:nth-child(even) .pv-catalog-collection__content {
  order: 1;
}

.pv-catalog-collection__image {
  display: block;
  overflow: hidden;
  min-height: 100%;
  border-radius: 30px;
  background: #dfd8d2;
}

.pv-catalog-collection__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pv-catalog-collection:hover .pv-catalog-collection__image img {
  transform: scale(1.04);
}

.pv-catalog-collection__content {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.pv-catalog-collection__content p {
  color: var(--pv-muted-text);
  max-width: 36rem;
}

.pv-catalog-collection__content h2 a:hover {
  color: var(--pv-primary-deep);
}

.pv-catalog-page {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.pv-catalog-page__toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.8rem;
}

.pv-catalog-grid {
  gap: 1.6rem;
}

.pv-catalog-empty {
  margin: 0;
  padding: 2rem 1.25rem;
  border: 1px solid var(--pv-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.78);
  color: var(--pv-muted-text);
  text-align: center;
}

.pv-product-card {
  overflow: hidden;
}

.pv-product-card__media {
  aspect-ratio: 16 / 11;
}

.pv-product-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(31, 26, 23, 0.14));
  pointer-events: none;
}

.pv-product-card__content {
  gap: 1rem;
}

.pv-product-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pv-product-card__header .pv-price {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.pv-product-card__summary {
  min-height: 4.8rem;
}

.pv-product-card__meta {
  margin-top: 0.15rem;
}

.pv-product-card__bottom {
  justify-content: flex-start;
}

.pv-product-card__bottom .pv-button {
  width: 100%;
}

.pv-pagination {
  margin-top: 2rem;
}

.pv-pagination .woocommerce-pagination {
  display: flex;
  justify-content: center;
}

.pv-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0.45rem;
  border: 1px solid var(--pv-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 30px rgba(31, 26, 23, 0.08);
}

.pv-pagination .page-numbers li {
  list-style: none;
}

.pv-pagination .page-numbers a,
.pv-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--pv-muted-text);
  font-weight: 800;
}

.pv-pagination .page-numbers a:hover,
.pv-pagination .page-numbers .current {
  background: rgba(240, 123, 102, 0.1);
  color: var(--pv-primary-deep);
}

/* Collaborations */

.pv-collaboration-hero > .pv-container {
  background: var(--pv-olive-panel-gradient);
  border-color: rgba(86, 102, 69, 0.22);
}

.pv-collaboration-landing,
.pv-collaboration-page {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.pv-collaboration-landing__grid {
  display: grid;
  gap: 1.6rem;
}

.pv-collaboration-collection {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.25rem);
}

.pv-collaboration-collection:nth-child(even) {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.pv-collaboration-collection:nth-child(even) .pv-collaboration-collection__media {
  order: 2;
}

.pv-collaboration-collection:nth-child(even) .pv-collaboration-collection__content {
  order: 1;
}

.pv-collaboration-collection__media {
  display: block;
  overflow: hidden;
  min-height: 100%;
  border-radius: 30px;
  background: #dfd8d2;
}

.pv-collaboration-collection__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pv-collaboration-collection:hover .pv-collaboration-collection__media img {
  transform: scale(1.04);
}

.pv-collaboration-collection__content {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pv-collaboration-collection__content p {
  color: var(--pv-muted-text);
  max-width: 34rem;
}

.pv-collaboration-collection__content h2 a:hover {
  color: var(--pv-primary-deep);
}

.pv-collaboration-page__toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.8rem;
}

.pv-collaboration-grid {
  gap: 1.6rem;
}

.pv-collaboration-card__media {
  aspect-ratio: 4 / 3;
}

.pv-collaboration-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(31, 26, 23, 0.18));
  pointer-events: none;
}

.pv-collaboration-card__content {
  gap: 1rem;
}

.pv-collaboration-card__content h3 a:hover {
  color: var(--pv-primary-deep);
}

.pv-collaboration-card__bottom {
  justify-content: flex-start;
}

.pv-collaboration-card__bottom .pv-button {
  width: 100%;
}

/* Bespoke */

.pv-bespoke-hero > .pv-container {
  background: var(--pv-coral-panel-gradient);
}

.pv-bespoke-services {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.pv-bespoke-services__grid {
  gap: 1.6rem;
}

.pv-bespoke-card__media {
  aspect-ratio: 16 / 11;
}

.pv-bespoke-card__content {
  gap: 0.85rem;
}

.pv-bespoke-form-section {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.pv-bespoke-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.pv-bespoke-form-copy {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--pv-radius-xl);
  background: var(--pv-olive-panel-gradient);
  box-shadow: var(--pv-shadow);
}

.pv-bespoke-form-copy h2,
.pv-bespoke-form-copy p {
  color: #fff;
}

.pv-bespoke-form-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.pv-bespoke-form-wrap {
  max-width: none;
}

.pv-bespoke-form-wrap .pv-form {
  margin-top: 0;
}

/* Buttons */

.pv-button,
.pv-newsletter button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.pv-button::after,
.pv-newsletter button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.26) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.pv-button:hover,
.pv-newsletter button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
  transform: translateY(-2px);
}

.pv-button:hover::after,
.pv-newsletter button:hover::after {
  transform: translateX(120%);
}

.pv-button--primary,
.pv-newsletter button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce div.product form.cart .button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, var(--pv-primary) 0%, var(--pv-primary-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(240, 123, 102, 0.28);
}

.pv-button--primary:hover,
.pv-newsletter button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: #fff;
  box-shadow: 0 22px 36px rgba(240, 123, 102, 0.24);
}

.pv-button--secondary {
  background: var(--pv-olive-panel-gradient);
  color: #fff;
  box-shadow: 0 18px 30px rgba(86, 102, 69, 0.2);
}

.pv-button--secondary:hover {
  color: #fff;
  box-shadow: 0 22px 36px rgba(86, 102, 69, 0.24);
}

.pv-button--ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--pv-border);
  color: var(--pv-text);
  box-shadow: 0 10px 24px rgba(31, 26, 23, 0.06);
}

.pv-button--ghost:hover {
  border-color: rgba(240, 123, 102, 0.36);
  background: rgba(240, 123, 102, 0.08);
  color: var(--pv-primary-deep);
}

.woocommerce a.button:disabled,
.woocommerce a.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  opacity: 0.55;
}

/* About blocks */

.pv-about {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.pv-about--home {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.pv-about__image-wrap,
.pv-product-media,
.pv-card,
.pv-form,
.pv-wc-box,
.pv-page-content article,
.pv-blog-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--pv-shadow-soft);
}

.pv-about__image-wrap {
  overflow: hidden;
  border-radius: var(--pv-radius-xl);
  background: var(--pv-surface-strong);
}

.pv-about__image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(31, 26, 23, 0.16));
  pointer-events: none;
}

.pv-about__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.pv-about__image-wrap:hover img {
  transform: scale(1.05);
}

.pv-about--home .pv-about__image-wrap {
  justify-self: start;
  max-width: 520px;
}

.pv-about--home .pv-about__image-wrap img {
  min-height: unset;
  max-height: 560px;
}

.pv-about--compact .pv-about__image-wrap img {
  min-height: unset;
  height: 100%;
}

.pv-about__text {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--pv-shadow-soft);
}

.pv-about__text p {
  color: var(--pv-muted-text);
  max-width: 42rem;
}

.pv-about__actions {
  margin-top: 1.5rem;
}

.pv-centered-title {
  margin-bottom: 2rem;
  text-align: center;
}

/* Cards */

.pv-card-grid {
  display: grid;
  gap: 1.5rem;
}

.pv-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pv-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--pv-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    rgba(255, 255, 255, 0.82);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease;
}

.pv-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 123, 102, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 123, 102, 0.24);
  box-shadow: 0 28px 46px rgba(31, 26, 23, 0.12);
}

.pv-card:hover::before {
  opacity: 1;
}

.pv-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dfd8d2;
}

.pv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.45s ease;
}

.pv-card:hover .pv-card__media img {
  transform: scale(1.06);
  filter: saturate(1.02);
}

.pv-card__media--badge .pv-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.pv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.78);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pv-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.9rem;
  padding: 1.45rem;
}

.pv-card__content > * {
  margin: 0;
}

.pv-card__content p {
  color: var(--pv-muted-text);
}

.pv-card__content h3 a:hover {
  color: var(--pv-primary-deep);
}

.pv-card h3,
.pv-card h3 a,
.pv-card .pv-meta-list,
.pv-card .pv-price {
  color: var(--pv-text);
}

.pv-card__bottom {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pv-meta-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  color: var(--pv-muted-text);
  font-size: 0.95rem;
}

.pv-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.pv-meta-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.42rem;
  flex: 0 0 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pv-primary), #f5a18f);
  box-shadow: 0 0 0 5px rgba(240, 123, 102, 0.12);
}

.pv-meta-list--secondary li::before {
  background: linear-gradient(135deg, #1f1a17, #4b413b);
  box-shadow: 0 0 0 5px rgba(31, 26, 23, 0.08);
}

.pv-card .pv-meta-list li::before {
  background: linear-gradient(135deg, var(--pv-primary), #f5a18f);
  box-shadow: 0 0 0 5px rgba(240, 123, 102, 0.12);
}

.pv-meta-list--large {
  margin: 1.4rem 0 1.6rem;
  font-size: 1rem;
}

.pv-price,
.pv-product-price {
  color: var(--pv-primary);
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pv-price small,
.pv-product-price small {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pv-muted-text);
  letter-spacing: 0;
}

.pv-card .pv-price small {
  color: var(--pv-muted-text);
}

.pv-price--secondary {
  color: var(--pv-secondary);
}

/* Single product */

.pv-breadcrumb {
  margin-bottom: 1.2rem;
}

.pv-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pv-muted-text);
  font-weight: 700;
}

.pv-breadcrumb a:hover {
  color: var(--pv-primary-deep);
}

.pv-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: end;
  margin-bottom: 1.5rem;
}

.pv-product-hero__content {
  min-width: 0;
}

.pv-product-hero__content h1 {
  margin-bottom: 0;
  max-width: 12ch;
}

.pv-product-hero__meta {
  margin: 0;
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--pv-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 34px rgba(31, 26, 23, 0.08);
}

.pv-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.pv-product-main {
  display: grid;
  gap: 1.5rem;
}

.pv-product-media {
  overflow: hidden;
  border-radius: var(--pv-radius-xl);
  background: var(--pv-surface-strong);
}

.pv-product-media img {
  min-height: 620px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pv-product-media:hover img {
  transform: scale(1.04);
}

.pv-product-aside {
  position: sticky;
  top: calc(var(--pv-header-height) + 1.25rem);
}

.pv-product-purchase,
.pv-product-section {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--pv-shadow-soft);
}

.pv-product-purchase {
  overflow: hidden;
}

.pv-product-purchase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 123, 102, 0.6), transparent);
}

.pv-subtitle {
  color: var(--pv-muted-text);
  font-size: 1.06rem;
}

.pv-product-section h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}

.pv-product-section--story .pv-prose {
  font-size: 1.02rem;
}

.pv-add-to-cart {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.pv-add-to-cart form.cart {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
}

.pv-add-to-cart form.cart .quantity {
  margin: 0;
}

.pv-add-to-cart .single_add_to_cart_button,
.pv-add-to-cart .button {
  width: 100%;
}

.pv-add-to-cart .variations {
  width: 100%;
  margin-bottom: 0.5rem;
}

.pv-add-to-cart .variations td,
.pv-add-to-cart .variations th {
  display: block;
  width: 100%;
  padding: 0 0 0.6rem;
  text-align: left;
}

.pv-add-to-cart .reset_variations {
  display: inline-flex;
  margin-top: 0.3rem;
  color: var(--pv-muted-text);
  font-weight: 700;
}

.pv-add-to-cart .reset_variations:hover {
  color: var(--pv-primary-deep);
}

.pv-check-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  color: var(--pv-muted-text);
}

.pv-check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.pv-check-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pv-primary), #f7aa99);
  box-shadow: 0 0 0 5px rgba(240, 123, 102, 0.1);
}

/* Generic content */

.pv-section-nav {
  margin-bottom: 2rem;
}

.pv-info-box {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(240, 123, 102, 0.16);
  border-radius: var(--pv-radius-md);
  background: linear-gradient(180deg, rgba(240, 123, 102, 0.08), rgba(255, 255, 255, 0.7));
}

.pv-page-header,
.pv-page-content {
  max-width: 900px;
}

.pv-page-content article,
.pv-blog-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.78);
}

.pv-page-header {
  margin-bottom: 1.4rem;
}

.pv-prose {
  color: var(--pv-muted-text);
}

.pv-prose > * + * {
  margin-top: 0.95rem;
}

.pv-prose ul,
.pv-prose ol {
  padding-left: 1.25rem;
}

.pv-prose li + li {
  margin-top: 0.4rem;
}

.pv-blog-list {
  display: grid;
  gap: 1.25rem;
}

.pv-blog-card h2 {
  margin-bottom: 0.6rem;
}

.pv-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(31, 26, 23, 0.12);
}

/* Forms */

.pv-form-wrap {
  max-width: 860px;
}

.pv-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: clamp(1.3rem, 4vw, 2rem);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.8);
}

.pv-form p {
  margin: 0;
}

.pv-form label,
.woocommerce form .form-row label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--pv-text);
}

.pv-form input,
.pv-form textarea,
.pv-form select,
.pv-newsletter input,
.woocommerce form .input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pv-text);
  padding: 0.9rem 1rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pv-form input:focus,
.pv-form textarea:focus,
.pv-form select:focus,
.pv-newsletter input:focus,
.woocommerce form .input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: rgba(240, 123, 102, 0.44);
  box-shadow: 0 0 0 4px rgba(240, 123, 102, 0.12);
  background: #fff;
  outline: none;
}

.pv-form textarea,
.woocommerce textarea {
  min-height: 140px;
  resize: vertical;
}

.pv-form-feedback {
  padding: 0.9rem 1rem;
  border-radius: 18px;
}

.pv-form-feedback--ok {
  border: 1px solid rgba(122, 173, 111, 0.42);
  background: rgba(122, 173, 111, 0.16);
}

.pv-form-feedback--error {
  border: 1px solid rgba(240, 123, 102, 0.38);
  background: rgba(240, 123, 102, 0.12);
}

.pv-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pv-newsletter button {
  min-width: 150px;
}

::placeholder {
  color: rgba(109, 99, 93, 0.78);
}

/* Footer */

.pv-footer {
  padding: 1rem 0 2rem;
}

.pv-footer__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 123, 102, 0.24);
  border-radius: 34px;
  background: var(--pv-coral-panel-gradient);
  color: var(--pv-text);
  box-shadow: var(--pv-shadow);
}

.pv-footer__panel::before,
.pv-footer__panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.pv-footer__panel::before {
  top: -8rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: var(--pv-panel-glow);
}

.pv-footer__panel::after {
  bottom: -10rem;
  left: -5rem;
  width: 15rem;
  height: 15rem;
  background: var(--pv-panel-glow);
}

.pv-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 0.9fr 1.15fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.pv-footer__section {
  min-width: 0;
}

.pv-footer__heading {
  margin-bottom: 0.95rem;
  font-size: 1.05rem;
  color: var(--pv-text);
  letter-spacing: 0.01em;
}

.pv-footer__section p,
.pv-footer__links {
  color: rgba(31, 26, 23, 0.72);
}

.pv-footer__links {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.pv-footer__links a {
  color: inherit;
}

.pv-footer__links a:hover {
  color: var(--pv-text);
}

.pv-footer__meta {
  position: relative;
  z-index: 1;
  padding: 1rem clamp(1.75rem, 4vw, 2.5rem) 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(31, 26, 23, 0.72);
}

.pv-footer__meta p {
  margin: 0;
}

.pv-footer__panel .pv-newsletter input {
  background: rgba(255, 255, 255, 0.9);
}

.pv-footer__panel .pv-newsletter button {
  background: var(--pv-olive-panel-gradient);
  box-shadow: 0 18px 28px rgba(86, 102, 69, 0.2);
}

/* WooCommerce shared */

.woocommerce .quantity .qty {
  min-height: 52px;
  min-width: 86px;
  border-radius: 16px;
  border: 1px solid var(--pv-border);
  padding-inline: 0.8rem;
  background: rgba(255, 255, 255, 0.96);
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  position: relative;
  margin: 0 0 1rem;
  padding: 1rem 1.15rem 1rem 3rem;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.06);
}

.woocommerce-message {
  background: rgba(122, 173, 111, 0.18);
}

.woocommerce-error {
  background: rgba(240, 123, 102, 0.14);
}

.woocommerce-info {
  background: rgba(240, 123, 102, 0.1);
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  top: 1rem;
  left: 1rem;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--pv-border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 1rem;
  border-color: rgba(31, 26, 23, 0.08);
}

.woocommerce table.shop_table th,
.woocommerce-checkout-review-order-table th {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pv-muted-text);
}

.woocommerce table.shop_table td.product-name a,
.woocommerce table.shop_table td.product-name {
  font-weight: 700;
  color: var(--pv-text);
}

.woocommerce a.remove {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  line-height: 32px;
  color: var(--pv-primary) !important;
  background: rgba(240, 123, 102, 0.08);
}

.woocommerce a.remove:hover {
  color: #fff !important;
  background: var(--pv-primary);
}

.woocommerce-cart table.cart img {
  width: 82px;
  border-radius: 16px;
}

.woocommerce .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.woocommerce .coupon .input-text {
  flex: 1 1 220px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details,
.woocommerce-checkout-payment,
.woocommerce-MyAccount-content {
  border: 1px solid var(--pv-border);
  border-radius: 24px;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.8);
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  top: 1rem;
}

.woocommerce form .form-row {
  margin-bottom: 1rem;
}

.woocommerce-checkout .col2-set,
.woocommerce-page.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
}

.woocommerce-checkout #payment {
  border-radius: 24px;
  background: rgba(31, 26, 23, 0.03);
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: rgba(31, 26, 23, 0.08);
}

.woocommerce ul.order_details {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

.woocommerce ul.order_details li {
  float: none;
  width: auto;
  margin: 0;
  padding: 1rem 1.25rem;
  border-right: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

/* Woo utility pages */

.pv-wc-page {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.pv-wc-hero--cart > .pv-container {
  background: var(--pv-coral-panel-gradient);
}

.pv-wc-hero--checkout > .pv-container {
  background: var(--pv-coral-panel-gradient);
}

.pv-wc-hero--account > .pv-container {
  background: var(--pv-olive-panel-gradient);
}

.pv-wc-hero--account h1,
.pv-wc-hero--account p {
  color: #fff;
}

.pv-wc-hero--account p {
  color: rgba(255, 255, 255, 0.82);
}

.pv-wc-shell {
  position: relative;
}

.pv-wc-shell::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(240, 123, 102, 0.06);
  filter: blur(14px);
  pointer-events: none;
}

.pv-wc-box {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--pv-shadow-soft);
}

.pv-wc-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 123, 102, 0.5), transparent);
}

.pv-wc-box .woocommerce {
  width: 100%;
}

.pv-wc-box--cart .woocommerce-cart-form {
  margin-bottom: 1.4rem;
}

.woocommerce-cart table.cart td.actions {
  padding-bottom: 0.4rem;
}

.woocommerce-cart .cart-collaterals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 1.25rem;
  align-items: start;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  position: sticky;
  top: calc(var(--pv-header-height) + 1.25rem);
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout #order_review_heading {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.pv-wc-box--checkout .woocommerce-checkout {
  display: grid;
  gap: 1rem;
}

.pv-wc-box--checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 1.5rem;
  align-items: start;
}

.pv-wc-box--checkout #customer_details {
  display: grid;
  gap: 1.1rem;
}

.pv-wc-box--checkout #order_review_heading {
  margin: 0;
}

.pv-wc-box--checkout #order_review,
.pv-wc-box--checkout #order_review_heading {
  grid-column: 2;
}

.pv-wc-box--checkout #order_review {
  position: sticky;
  top: calc(var(--pv-header-height) + 1.25rem);
}

.pv-wc-box--account .woocommerce {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: 1.25rem;
}

.woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--pv-header-height) + 1.25rem);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  border: 1px solid var(--pv-border);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.84);
}

.woocommerce-MyAccount-navigation ul li + li {
  border-top: 1px solid rgba(31, 26, 23, 0.08);
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.95rem 1rem;
  color: var(--pv-muted-text);
  font-weight: 700;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--pv-primary-deep);
  background: rgba(240, 123, 102, 0.08);
}

.woocommerce-MyAccount-content {
  min-height: 360px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-width: 180px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--pv-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.woocommerce #payment .place-order {
  padding-bottom: 0;
}

.woocommerce #payment ul.payment_methods li label {
  font-weight: 700;
}

.woocommerce .cart-empty {
  border: 0;
  background: transparent;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  color: var(--pv-text);
  padding: 3rem 1rem 0.8rem;
}

.woocommerce .return-to-shop {
  text-align: center;
  padding-bottom: 3rem;
}

.woocommerce .return-to-shop .button {
  display: inline-flex;
  min-width: 260px;
}

/* Motion */

.pv-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.pv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pv-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 1180px) {
  .pv-card-grid--3,
  .pv-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pv-home-hero__panel,
  .pv-home-story__grid,
  .pv-catalog-collection,
  .pv-catalog-collection:nth-child(even),
  .pv-collaboration-collection,
  .pv-collaboration-collection:nth-child(even),
  .pv-bespoke-form-layout {
    grid-template-columns: 1fr;
  }

  .pv-home-hero__visual {
    min-height: 360px;
  }

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

  .pv-home-card,
  .pv-home-card:nth-child(1) {
    grid-column: auto;
  }

  .pv-catalog-collection:nth-child(even) .pv-catalog-collection__image,
  .pv-catalog-collection:nth-child(even) .pv-catalog-collection__content,
  .pv-collaboration-collection:nth-child(even) .pv-collaboration-collection__media,
  .pv-collaboration-collection:nth-child(even) .pv-collaboration-collection__content {
    order: initial;
  }

  .pv-footer__grid .pv-footer__section:last-child {
    grid-column: 1 / -1;
  }

  .pv-product-hero,
  .pv-product-layout,
  .pv-about,
  .pv-about--home {
    grid-template-columns: 1fr;
  }

  .pv-about--home .pv-about__image-wrap {
    max-width: none;
  }

  .pv-product-aside {
    position: static;
  }

  .pv-product-media img {
    min-height: 460px;
  }

  .woocommerce-cart .cart-collaterals,
  .pv-wc-box--checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .woocommerce-cart .cart-collaterals .cart_totals,
  .pv-wc-box--checkout #order_review,
  .woocommerce-MyAccount-navigation {
    position: static;
  }

  .pv-wc-box--checkout #order_review,
  .pv-wc-box--checkout #order_review_heading {
    grid-column: auto;
  }
}

@media (max-width: 960px) {
  :root {
    --pv-header-height: 92px;
  }

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

  .pv-header {
    padding-top: 0.75rem;
  }

  .pv-header__frame {
    border-radius: 28px;
  }

  .pv-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .pv-header__center,
  .pv-nav--desktop {
    display: none;
  }

  .pv-mobile-toggle {
    display: grid;
  }

  .pv-logo__text {
    font-size: 0.95rem;
  }

  .pv-card-grid--3,
  .pv-footer__grid,
  .pv-wc-box--account .woocommerce {
    grid-template-columns: 1fr;
  }

  .pv-home-hero__panel {
    padding: 1rem;
  }

  .pv-home-hero__content {
    padding: 0.5rem;
  }

  .pv-home-hero__content h1,
  .pv-home-hero__subtitle {
    max-width: none;
  }

  .pv-home-hero__visual {
    display: none;
  }

  .pv-catalog-collection__content {
    padding: 0.4rem;
  }

  .pv-collaboration-collection__content {
    padding: 0.4rem;
  }

  .pv-wc-shell::before {
    display: none;
  }

  .pv-product-hero__content h1 {
    max-width: none;
  }

  .pv-footer__grid .pv-footer__section:last-child {
    grid-column: auto;
  }

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

  .pv-newsletter button {
    width: 100%;
  }

  .woocommerce .coupon {
    flex-direction: column;
  }

  .woocommerce .coupon .input-text,
  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .pv-main {
    padding-top: 0.6rem;
  }

  .pv-container {
    width: min(var(--pv-container), calc(100% - 1.25rem));
  }

  .pv-hero__inner,
  .pv-page-hero > .pv-container,
  .pv-home-hero__panel,
  .pv-about__image-wrap,
  .pv-about__text,
  .pv-home-story__image,
  .pv-home-story__content,
  .pv-product-hero__meta,
  .pv-card,
  .pv-product-media,
  .pv-product-purchase,
  .pv-product-section,
  .pv-bespoke-form-copy,
  .pv-form,
  .pv-wc-box,
  .pv-footer__panel,
  .pv-page-content article,
  .pv-blog-card {
    border-radius: 24px;
  }

  .pv-section {
    padding: 3.5rem 0;
  }

  .pv-card__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .pv-card__bottom .pv-button {
    width: 100%;
  }

  .pv-catalog-collection__image img {
    min-height: 280px;
  }

  .pv-collaboration-collection__media img {
    min-height: 280px;
  }

  .pv-home-hero__visual,
  .pv-home-proposals__grid {
    grid-template-columns: 1fr;
  }

  .pv-home-hero__visual {
    grid-template-rows: repeat(3, minmax(180px, 1fr));
  }

  .pv-home-hero__tile--1,
  .pv-home-hero__tile--2,
  .pv-home-hero__tile--3 {
    transform: none;
  }

  .pv-home-hero__tile--1 {
    grid-row: auto;
  }

  .pv-add-to-cart form.cart {
    align-items: stretch;
  }

  .pv-add-to-cart form.cart .button,
  .woocommerce div.product form.cart .button {
    width: 100%;
  }

  .woocommerce table.shop_table,
  .woocommerce-checkout-review-order-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .pv-header__inner {
    min-height: 74px;
    padding-inline: 0.8rem;
  }

  .pv-logo {
    gap: 0.65rem;
  }

  .pv-logo .custom-logo,
  .pv-logo__mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .pv-logo__text {
    max-width: 8.5rem;
    white-space: normal;
    line-height: 1.1;
  }

  .pv-hero h1 {
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

  .pv-home-hero__content h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .pv-home-hero__subtitle {
    font-size: clamp(1.75rem, 9vw, 2.8rem);
  }

  .pv-hero .pv-hero__subtitle {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .pv-about__image-wrap img,
  .pv-card__media {
    min-height: unset;
    aspect-ratio: 16 / 10;
  }

  .pv-card__content,
  .pv-product-purchase,
  .pv-product-section,
  .pv-form,
  .pv-wc-box,
  .pv-page-content article,
  .pv-blog-card {
    padding: 1.2rem;
  }

  .pv-bespoke-form-copy {
    padding: 1.2rem;
  }

  .pv-product-hero__meta {
    padding: 1.15rem 1.2rem;
  }

  .pv-pagination .page-numbers {
    gap: 0.35rem;
    padding: 0.35rem;
  }

  .pv-pagination .page-numbers a,
  .pv-pagination .page-numbers span {
    min-width: 38px;
    min-height: 38px;
    padding: 0.5rem 0.75rem;
  }

  .pv-product-media img {
    min-height: 320px;
  }

  .pv-home-story__image img {
    min-height: 320px;
  }

  .pv-collaboration-collection__media img,
  .pv-bespoke-card__media img {
    min-height: 320px;
  }

  .pv-footer__grid,
  .pv-footer__meta {
    padding-inline: 1.2rem;
  }

  .woocommerce .return-to-shop .button {
    min-width: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .pv-reveal {
    opacity: 1;
    transform: none;
  }
}
