/** Shopify CDN: Minification failed

Line 789:0 Unexpected "}"

**/
:root {
  --pp-bg: #f8f5f0;
  --pp-surface: #ffffff;
  --pp-surface-soft: #fcfaf7;
  --pp-border: #e8dfd3;
  --pp-border-strong: #d8c9b7;
  --pp-caramel: #b77943;
  --pp-caramel-soft: #c89566;
  --pp-espresso: #241a14;
  --pp-espresso-soft: #5d4a3b;
  --pp-muted: #746353;
  --pp-success: #5f7655;
  --pp-white: #ffffff;
  --pp-shadow-soft: 0 18px 44px rgba(29, 22, 17, 0.06);
  --pp-shadow-lift: 0 22px 54px rgba(29, 22, 17, 0.1);
  --pp-radius-xl: 34px;
  --pp-radius-lg: 26px;
  --pp-radius-md: 18px;
  --pp-max-width: 1260px;
  --pp-font-display: "Sora", "Avenir Next", "Nunito Sans", sans-serif;
  --pp-font-body: "Manrope", "Avenir Next", "Nunito Sans", sans-serif;
}

.pp-shell {
  color: var(--pp-espresso);
  font-family: var(--pp-font-body);
  background: transparent;
}

.pp-section {
  padding: clamp(64px, 8vw, 108px) 20px;
}

.pp-container {
  width: min(var(--pp-max-width), 100%);
  margin: 0 auto;
}

.pp-eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #856c57;
}

.pp-title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--pp-font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.pp-subtitle {
  margin: 16px 0 0;
  max-width: 58ch;
  color: var(--pp-muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.pp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pp-button--primary {
  color: var(--pp-white);
  background: linear-gradient(135deg, var(--pp-caramel) 0%, var(--pp-caramel-soft) 100%);
  box-shadow: 0 12px 28px rgba(183, 121, 67, 0.22);
}

.pp-button--secondary {
  color: var(--pp-espresso);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--pp-border-strong);
}

.pp-button:hover {
  transform: translateY(-2px);
}

.pp-button--primary:hover {
  box-shadow: 0 16px 34px rgba(183, 121, 67, 0.28);
}

.pp-button--secondary:hover {
  border-color: #c8b299;
}

.pp-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--pp-radius-xl);
  border: 1px solid var(--pp-border);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(183, 121, 67, 0.07) 0%, rgba(183, 121, 67, 0) 65%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  box-shadow: var(--pp-shadow-soft);
}

.pp-hero__layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
}

.pp-hero__media {
  position: relative;
}

.pp-hero__image-wrap {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 4.3;
  background: #f0e8dd;
  border: 1px solid var(--pp-border);
}

.pp-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pp-paw {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #8a6f57;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--pp-border);
  box-shadow: 0 8px 24px rgba(29, 22, 17, 0.08);
}

.pp-paw--one {
  top: 14px;
  right: 14px;
}

.pp-paw--two {
  left: 14px;
  bottom: 14px;
}

.pp-chip-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pp-chip {
  position: relative;
  padding-left: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7d6a58;
}

.pp-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #b4885d;
  transform: translateY(-50%);
}

.pp-kpi {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--pp-border);
  border-bottom: 1px solid var(--pp-border);
}

.pp-kpi__item {
  padding: 16px 14px;
  border-right: 1px solid var(--pp-border);
}

.pp-kpi__item:last-child {
  border-right: 0;
}

.pp-kpi__value {
  display: block;
  font-family: var(--pp-font-display);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pp-kpi__label {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--pp-muted);
}

.pp-trust {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pp-trust__item {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--pp-border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--pp-espresso-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.pp-trust__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--pp-success);
}

.pp-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pp-split-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--pp-radius-lg);
  border: 1px solid var(--pp-border);
  background: #ece1d1;
  box-shadow: var(--pp-shadow-soft);
}

.pp-split-card__image {
  position: absolute;
  inset: 0;
}

.pp-split-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-split-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 13, 10, 0.08) 20%, rgba(20, 13, 10, 0.66) 100%);
}

.pp-split-card__content {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--pp-white);
}

.pp-split-card__title {
  margin: 0;
  font-family: var(--pp-font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pp-split-card__copy {
  margin: 10px 0 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.pp-split-card .pp-button {
  margin-top: 16px;
  align-self: flex-start;
}

.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pp-card {
  padding: 26px;
  border-radius: var(--pp-radius-md);
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  box-shadow: 0 10px 28px rgba(29, 22, 17, 0.04);
}

.pp-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: #f2e8dc;
  color: #7f6247;
}

.pp-card__title {
  margin: 14px 0 0;
  font-family: var(--pp-font-display);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.pp-card__copy {
  margin: 8px 0 0;
  color: var(--pp-muted);
  line-height: 1.64;
}

.pp-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pp-product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--pp-border);
  background: var(--pp-surface);
  box-shadow: 0 10px 28px rgba(29, 22, 17, 0.04);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.pp-product:hover {
  transform: translateY(-2px);
  box-shadow: var(--pp-shadow-lift);
  border-color: #d8c6b1;
}

.pp-product__media {
  aspect-ratio: 1 / 1;
  background: #efe6db;
}

.pp-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-product__body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.pp-product__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.pp-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.pp-price {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pp-rating {
  color: #8a6848;
  font-weight: 600;
}

.pp-product__button {
  justify-content: center;
  margin-top: 2px;
}

.pp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pp-quote {
  position: relative;
  padding: 26px;
  border-radius: var(--pp-radius-md);
  border: 1px solid var(--pp-border);
  background: var(--pp-surface);
  box-shadow: 0 10px 24px rgba(29, 22, 17, 0.04);
}

.pp-quote::before {
  content: "\201C";
  position: absolute;
  left: 14px;
  top: 2px;
  font-family: Georgia, serif;
  font-size: 56px;
  opacity: 0.12;
}

.pp-quote__text {
  margin: 0;
  color: #554535;
  line-height: 1.68;
}

.pp-quote__author {
  margin: 16px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3f3126;
}

.pp-faq {
  display: grid;
  gap: 10px;
}

.pp-faq details {
  border-radius: 14px;
  border: 1px solid var(--pp-border);
  background: var(--pp-surface);
  overflow: hidden;
}

.pp-faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 17px 52px 17px 18px;
  font-size: 1.12rem;
  font-weight: 700;
  color: #3f3126;
}

.pp-faq summary::-webkit-details-marker {
  display: none;
}

.pp-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a6f57;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.pp-faq details[open] summary::after {
  content: "\2212";
}

.pp-faq__body {
  padding: 0 18px 18px;
  color: var(--pp-muted);
  line-height: 1.65;
  font-size: 1.05rem;


}

.pp-cta-final {
  position: relative;
  overflow: hidden;
  border-radius: var(--pp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, #2a1f18 0%, #3a2b22 52%, #4a372b 100%);
  color: var(--pp-white);
  padding: clamp(34px, 5vw, 62px);
  box-shadow: 0 18px 46px rgba(29, 22, 17, 0.18);
}

.pp-cta-final::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  top: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 72%);
}

.pp-cta-final .pp-title,
.pp-cta-final .pp-subtitle {
  color: var(--pp-white);
}

.pp-cta-final .pp-title {
  max-width: 20ch;
}

.pp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.62s ease;
}

.pp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pp-delay-1 { transition-delay: 0.06s; }
.pp-delay-2 { transition-delay: 0.12s; }
.pp-delay-3 { transition-delay: 0.18s; }
.pp-delay-4 { transition-delay: 0.24s; }
.pp-delay-5 { transition-delay: 0.3s; }
.pp-delay-6 { transition-delay: 0.36s; }

@media (max-width: 1200px) {
  .pp-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .pp-title {
    max-width: 18ch;
  }

  .pp-hero__layout {
    grid-template-columns: 1fr;
  }

  .pp-hero__media {
    order: -1;
  }

  .pp-kpi,
  .pp-trust,
  .pp-grid,
  .pp-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pp-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pp-section {
    padding: 56px 16px;
  }

  .pp-title {
    max-width: 100%;
    font-size: clamp(1.86rem, 8vw, 2.45rem);
  }

  .pp-kpi,
  .pp-trust,
  .pp-grid,
  .pp-products,
  .pp-testimonials {
    grid-template-columns: 1fr;
  }

  .pp-kpi__item {
    border-right: 0;
    border-bottom: 1px solid var(--pp-border);
  }

  .pp-kpi__item:last-child {
    border-bottom: 0;
  }

  .pp-split-card,
  .pp-split-card__content {
    min-height: 340px;
  }

  .pp-paw {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pp-button,
  .pp-product,
  .pp-reveal {
    transition: none !important;
    transform: none !important;
  }
}
/* CTA Final - Hover Animation */
.pp-cta-final {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.pp-cta-final:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 28px 64px rgba(29, 22, 17, 0.32), 0 0 0 1px rgba(255,255,255,0.13);
}

.pp-cta-final::after {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.pp-cta-final:hover::after {
  transform: scale(1.15);
}
/* Intestazione - Smooth hover effect */
#shopify-section-template--29554234982743__section_YUr4d4 .group-block {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

#shopify-section-template--29554234982743__section_YUr4d4 .group-block:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}
/* FAQ Title - Smooth hover effect */
#shopify-section-template--29554234982743__pixepet_faq_cta_BBP9Ut .pp-title {
  transition: transform 0.45s ease, opacity 0.45s ease;
  display: inline-block;
}

#shopify-section-template--29554234982743__pixepet_faq_cta_BBP9Ut .pp-title:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}
/* Best Seller - Product Card hover lift */
.pp-product {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.pp-product:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 24px 56px rgba(29, 22, 17, 0.18);
}

/* Titolo prodotto - smooth on hover */
.pp-product:hover .pp-product__title {
  transition: opacity 0.45s ease;
  opacity: 0.85;
}

/* Prezzo - leggero highlight */
.pp-product:hover .pp-price {
  transition: transform 0.45s ease;
  transform: translateY(-2px);
}

/* Stelle/rating - leggero highlight */
.pp-product:hover .pp-rating {
  transition: transform 0.45s ease, opacity 0.45s ease;
  transform: translateY(-2px);
  opacity: 0.9;
}
/* Testo block - Smooth hover effect */
#shopify-section-template--29554234982743__section_YzAD4f .text-block--template--29554234982743__section_YzAD4f__text_46GKiB {
  transition: transform 0.45s ease, opacity 0.45s ease;
  display: inline-block;
}
/* Best Seller - Titolo smooth hover */
#shopify-section-template--29554234982743__pixepet_bestseller_wTMq4m .pp-title {
  transition: transform 0.45s ease, opacity 0.45s ease;
  display: inline-block;
}

#shopify-section-template--29554234982743__pixepet_bestseller_wTMq4m .pp-title:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}
/* CTA Eyebrow - rimuovi rettangolo e ingrandisci testo */
.pp-cta-final .pp-eyebrow {
  background: transparent !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.08em;
  padding: 0 !important;
}
/* CTA Eyebrow - rettangolo solo attorno alla scritta */
.pp-cta-final .pp-eyebrow {
  background: rgba(255, 255, 255, 0.16) !important;
  width: fit-content !important;
  padding: 6px 14px !important;
}
/* Hero - Testo smooth hover */
#shopify-section-template--29554234982743__hero_jVaWmY .text-block--template--29554234982743__hero_jVaWmY__text_wReRjH {
  transition: transform 0.45s ease, opacity 0.45s ease;
  will-change: transform;
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

#shopify-section-template--29554234982743__hero_jVaWmY .text-block--template--29554234982743__hero_jVaWmY__text_wReRjH:hover {
  transform: translateY(-4px) !important;
  opacity: 0.88;
}
/* 9. Recensioni - card hover lift */
.pp-quote {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.pp-quote:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 24px 56px rgba(29, 22, 17, 0.18);
}
.pp-quote:hover .pp-quote__text {
  opacity: 0.85;
  transition: opacity 0.45s ease;
}
.pp-quote:hover .pp-quote__author {
  transform: translateY(-2px);
  transition: transform 0.45s ease;
}

/* 10. Recensioni - titolo sezione smooth hover */
#shopify-section-template--29554234982743__pixepet_reviews_feppXD .pp-title {
  transition: transform 0.45s ease, opacity 0.45s ease;
  display: inline-block;
}
#shopify-section-template--29554234982743__pixepet_reviews_feppXD .pp-title:hover {
  transform: translateY(-4px);
  opacity: 0.88;
}

}

