/* ============================================================================
   PETYC · identidade visual (custom)
   Carrega DEPOIS do CSS do tema (ver layout.tpl). Só acabamento visual —
   formas, sombras, espaçamento, tipografia e acentos em superfícies claras.
   NUNCA renomear .js-*, data-store, Swiper. Cores de seção vêm dos settings.
   Paleta: cream #fbf6ec · verde #255046 · teal #36b49a/#2a9a82 · laranja #f4a371
   ============================================================================ */

:root {
  --petyc-green: #255046;
  --petyc-teal: #36b49a;
  --petyc-teal-ink: #2a9a82;
  --petyc-orange: #f4a371;
  --petyc-cream: #fbf6ec;
  --petyc-sand: #eee2cc;
  --petyc-mint: #eafaf5;
  --petyc-peach: #fdeede;
  --petyc-radius: 22px;
  --petyc-radius-sm: 14px;
  --petyc-radius-lg: 28px;
  --petyc-shadow: 0 8px 24px rgba(37, 80, 70, .08);
  --petyc-shadow-hover: 0 16px 34px rgba(37, 80, 70, .14);

  /* Forçar fontes Petyc (sobrepõe os tokens do tema, hoje Open Sans) */
  --heading-font: "Capriola", sans-serif;
  --body-font: "Nunito", sans-serif;
}

/* Rede de segurança das fontes (caso algum seletor não use as variáveis) */
body, .body-font, input, textarea, select, button, .btn, .form-control {
  font-family: "Nunito", sans-serif;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6, .h1-huge,
.heading-font, .js-products-featured-title {
  font-family: "Capriola", sans-serif;
}

/* --------------------------------------------------------------------------
   Tipografia
   -------------------------------------------------------------------------- */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

h1, h2, h3, .h1, .h2, .h3, .h1-huge,
.js-products-featured-title, .section-title {
  letter-spacing: -.02em;
  line-height: 1.1;
}

::selection { background: var(--petyc-orange); color: #fff; }

/* --------------------------------------------------------------------------
   Botões — formato "pílula", peso e brilho suave
   -------------------------------------------------------------------------- */
.btn {
  border-radius: 999px !important;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary,
.js-addtocart.btn {
  box-shadow: 0 10px 22px rgba(54, 180, 154, .32);
}
.btn-primary:hover,
.js-addtocart.btn:hover { transform: translateY(-2px); box-shadow: var(--petyc-shadow-hover); }

.btn-secondary {
  border-radius: 999px !important;
}

/* Campos de formulário arredondados (busca, newsletter, CEP) */
.form-control,
.form-control-rounded,
.form-control-big,
.search-input {
  border-radius: 999px !important;
}
.input-append .form-control { border-radius: 999px 0 0 999px !important; }

/* --------------------------------------------------------------------------
   Barra de anúncio (adbar) — verde com texto cream, garrida
   -------------------------------------------------------------------------- */
.section-adbar {
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 13px;
}
.section-adbar .slide-container { padding-top: 9px; padding-bottom: 9px; }

/* --------------------------------------------------------------------------
   Header — base cream limpa, logo e busca suaves
   -------------------------------------------------------------------------- */
.head-main { border-bottom: 2px solid var(--petyc-sand); }
.head-main .search-container .search-input { box-shadow: 0 2px 10px rgba(37, 80, 70, .06); }

/* Links de navegação com leve respiro */
.nav-list-link, .nav-item-desktop .nav-list-link { font-weight: 800; }

/* Selo do carrinho em laranja */
.js-cart-widget-amount.badge {
  background: var(--petyc-orange) !important;
  color: #fff !important;
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   Seções da home — respiro
   -------------------------------------------------------------------------- */
.section-categories-home,
.section-featured-home,
.section-testimonials-home,
.section-newsletter-home,
.section-informative-banners { padding-top: 2.2rem; padding-bottom: 2.2rem; }

/* --------------------------------------------------------------------------
   Faixa de benefícios (banner_services)
   -------------------------------------------------------------------------- */
.service-item {
  background: #fff;
  border-radius: var(--petyc-radius);
  padding: 16px 18px;
  box-shadow: var(--petyc-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-item-image {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--petyc-radius-sm);
  background: var(--petyc-mint);
  display: flex; align-items: center; justify-content: center;
}

/* --------------------------------------------------------------------------
   Categorias (home-categories)
   -------------------------------------------------------------------------- */
.home-category {
  border-radius: var(--petyc-radius-lg);
  overflow: hidden;
  box-shadow: var(--petyc-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  background: #fff;
}
.home-category:hover { transform: translateY(-6px); box-shadow: var(--petyc-shadow-hover); }
.home-category-image { border-radius: var(--petyc-radius-lg) var(--petyc-radius-lg) 0 0; }
.home-category-name { font-weight: 800; }

/* --------------------------------------------------------------------------
   Card de produto (grid/item.tpl) — branco, arredondado, hover sobe
   -------------------------------------------------------------------------- */
.item-product .item,
.js-item-info-container {
  background: #fff;
  border-radius: var(--petyc-radius);
  overflow: hidden;
  box-shadow: var(--petyc-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
  height: 100%;
}
.item-product:hover .item,
.item-product:hover .js-item-info-container {
  transform: translateY(-6px);
  box-shadow: var(--petyc-shadow-hover);
}
.item-product .js-item-image-padding { border-radius: var(--petyc-radius) var(--petyc-radius) 0 0; overflow: hidden; }
.item-product .item-name { font-weight: 800; line-height: 1.25; }
.item-product .item-price,
.item-product .js-price-display {
  color: var(--petyc-teal) !important;
  font-weight: 900;
}
.item-product .price-compare,
.item-product .js-compare-price-display {
  color: #aab5af !important;
  text-decoration: line-through;
}

/* Etiqueta de desconto (label) em laranja já vem do setting; reforço de forma */
.item-product .item-tag,
.product-item-discount,
.label-offer { border-radius: 999px; font-weight: 900; }

/* --------------------------------------------------------------------------
   Depoimentos (home-testimonials) — sobre fundo bege
   -------------------------------------------------------------------------- */
.section-testimonials-home .testimonials-image { border-radius: 50%; }
.section-testimonials-home .subtitle { font-weight: 800; }

/* --------------------------------------------------------------------------
   Newsletter (home-newsletter)
   -------------------------------------------------------------------------- */
.section-newsletter-home .newsletter { border-radius: var(--petyc-radius-lg); }
.section-newsletter-home .btn-block { box-shadow: 0 10px 22px rgba(244, 163, 113, .35); }

/* --------------------------------------------------------------------------
   HERO customizada (snipplet home-petyc-hero.tpl) — substitui o slider nativo
   -------------------------------------------------------------------------- */
/* Esconde o slider nativo do Lima: a hero de código toma o lugar dele.
   Para voltar ao slider, remova esta regra e o include no home.tpl. */
.section-slider-home { display: none !important; }

@keyframes petyc-floaty  { 0%, 100% { transform: translateY(0); }              50% { transform: translateY(-14px); } }
@keyframes petyc-floaty2 { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(-4deg); } }

.petyc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eafaf5 0%, var(--petyc-cream) 70%);
}
.petyc-hero-blob-bg  { position: absolute; top: -120px; right: -140px; width: 560px; max-width: 70%; opacity: .5; z-index: 0; }
.petyc-hero-paw-deco { position: absolute; bottom: 60px; left: 40px; width: 54px; opacity: .35; z-index: 1; animation: petyc-floaty 6s ease-in-out infinite; }

.petyc-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 40px;
}
.petyc-hero-copy { flex: 1 1 380px; min-width: 300px; }

.petyc-hero-badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--petyc-teal-ink);
  font-weight: 900; font-size: 13px; padding: 7px 15px;
  border-radius: 30px; box-shadow: 0 4px 14px rgba(37, 80, 70, .08);
}
.petyc-hero-title {
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.04;
  color: var(--petyc-green); margin: 18px 0 0; letter-spacing: -.02em;
}
.petyc-hero-title span { color: var(--petyc-teal); }
.petyc-hero-sub {
  font-size: clamp(16px, 2vw, 20px); line-height: 1.5; color: #557066;
  max-width: 460px; margin: 18px 0 0; font-weight: 600;
}
.petyc-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.petyc-hero-cta-primary,
.petyc-hero-cta-secondary {
  display: inline-block; font-weight: 900; font-size: 16px; border-radius: 999px;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.petyc-hero-cta-primary {
  background: var(--petyc-teal); color: #fff; border: none; padding: 16px 30px;
  box-shadow: 0 10px 24px rgba(54, 180, 154, .4);
}
.petyc-hero-cta-primary:hover { transform: translateY(-2px); box-shadow: var(--petyc-shadow-hover); color: #fff; }
.petyc-hero-cta-secondary {
  background: transparent; color: var(--petyc-green);
  border: 2px solid var(--petyc-green); padding: 14px 26px;
}
.petyc-hero-cta-secondary:hover { background: var(--petyc-green); color: #fff; }

.petyc-hero-stats { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.petyc-hero-stat-num { font-family: "Capriola", sans-serif; font-size: 24px; color: var(--petyc-green); }
.petyc-hero-stat-lbl { font-size: 13px; font-weight: 700; color: #7a8f86; }
.petyc-hero-stat-div { width: 1px; align-self: stretch; min-height: 36px; background: #dce8e2; }

.petyc-hero-art {
  flex: 1 1 360px; min-width: 300px; min-height: 320px;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.petyc-hero-blob {
  position: relative; width: min(380px, 78vw); aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--petyc-orange), #e89461);
  border-radius: 42% 58% 56% 44% / 52% 44% 56% 48%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 50px rgba(244, 163, 113, .35);
}
.petyc-hero-blob-paw { width: 46%; opacity: .92; }
.petyc-hero-fcard {
  position: absolute; z-index: 3; background: #fff; border-radius: 18px;
  padding: 11px 15px; box-shadow: 0 12px 30px rgba(37, 80, 70, .18);
  display: flex; align-items: center; gap: 10px;
}
.petyc-hero-fcard-1 { top: 8px; left: 0; animation: petyc-floaty 5s ease-in-out infinite; }
.petyc-hero-fcard-2 { bottom: 18px; right: 0; animation: petyc-floaty2 6s ease-in-out infinite; }
.petyc-hero-fcard-ico { width: 34px; height: 34px; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.petyc-hero-fcard-t { font-weight: 900; font-size: 13px; color: var(--petyc-green); }
.petyc-hero-fcard-s { font-size: 11px; color: #7a8f86; font-weight: 700; }

.petyc-hero-wave { display: block; width: 100%; height: 54px; margin-top: -2px; position: relative; z-index: 2; }

@media (max-width: 768px) {
  .petyc-hero-inner { gap: 26px; }
  .petyc-hero-art { min-height: 280px; }
  .petyc-hero-stats { gap: 16px; margin-top: 26px; }
  .petyc-hero-blob-bg { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .petyc-hero-paw-deco, .petyc-hero-fcard-1, .petyc-hero-fcard-2 { animation: none; }
}

/* --------------------------------------------------------------------------
   Categorias customizadas (snipplet home-petyc-categorias.tpl)
   -------------------------------------------------------------------------- */
/* Esconde a "Categorias principais" nativa (vazia); a custom toma o lugar. */
.section-categories-home { display: none !important; }

.petyc-cats { background: var(--petyc-cream); }
.petyc-cats-inner { max-width: 1200px; margin: 0 auto; padding: clamp(36px, 6vw, 64px) 22px 10px; }
.petyc-cats-head { text-align: center; margin-bottom: 30px; }
.petyc-cats-eyebrow { font-weight: 900; color: var(--petyc-orange); font-size: 14px; letter-spacing: .08em; }
.petyc-cats-title { font-size: clamp(28px, 4vw, 42px); color: var(--petyc-green); margin-top: 6px; }
.petyc-cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }

.petyc-cat-card {
  position: relative; display: block; aspect-ratio: 1 / 1;
  border-radius: var(--petyc-radius-lg); overflow: hidden;
  box-shadow: var(--petyc-shadow); text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.petyc-cat-card:hover { transform: translateY(-6px); box-shadow: var(--petyc-shadow-hover); }
.petyc-cat-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.petyc-cat-card:hover .petyc-cat-img { transform: scale(1.05); }
.petyc-cat-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(37, 80, 70, .85) 0%, rgba(37, 80, 70, .45) 45%, rgba(37, 80, 70, 0) 78%);
}
.petyc-cat-name { color: #fff; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.1; margin: 0; }
.petyc-cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-weight: 900; font-size: 13.5px; color: #fff; }
.petyc-cat-link span { transition: transform .15s ease; }
.petyc-cat-card:hover .petyc-cat-link span { transform: translateX(4px); }

@media (max-width: 768px) {
  .petyc-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* --------------------------------------------------------------------------
   Banner do Kit (snipplet home-petyc-kit.tpl)
   -------------------------------------------------------------------------- */
.petyc-kit { max-width: 1200px; margin: 0 auto; padding: 14px 22px clamp(36px, 6vw, 56px); }
.petyc-kit-inner {
  position: relative; overflow: hidden; border-radius: 32px;
  background: linear-gradient(120deg, var(--petyc-teal), var(--petyc-teal-ink));
  padding: clamp(28px, 5vw, 48px); display: flex; flex-wrap: wrap; align-items: center; gap: 30px;
}
.petyc-kit-paws { position: absolute; top: -10px; right: 28%; width: 84px; opacity: .18; z-index: 1; }
.petyc-kit-copy { flex: 1 1 320px; position: relative; z-index: 2; }
.petyc-kit-badge { display: inline-block; background: var(--petyc-orange); color: #fff; font-weight: 900; font-size: 13px; padding: 6px 14px; border-radius: 20px; }
.petyc-kit-title { font-size: clamp(26px, 4vw, 40px); color: #fff; margin-top: 14px; line-height: 1.08; }
.petyc-kit-sub { color: #dff5ee; font-weight: 700; font-size: 16px; margin-top: 12px; }
.petyc-kit-sub strong { color: #fff; }
.petyc-kit-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; background: #fff; color: var(--petyc-green); font-weight: 900; font-size: 16px; padding: 15px 28px; border-radius: 999px; text-decoration: none; box-shadow: 0 10px 24px rgba(37, 80, 70, .18); transition: transform .15s ease, box-shadow .15s ease; }
.petyc-kit-cta:hover { transform: translateY(-2px); box-shadow: var(--petyc-shadow-hover); color: var(--petyc-green); }
.petyc-kit-cta span { transition: transform .15s ease; }
.petyc-kit-cta:hover span { transform: translateX(4px); }
.petyc-kit-art { flex: 0 1 280px; display: flex; justify-content: center; position: relative; z-index: 2; }
.petyc-kit-img { width: min(260px, 72vw); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; border: 6px solid rgba(255, 255, 255, .5); box-shadow: 0 16px 40px rgba(37, 80, 70, .25); }

/* --------------------------------------------------------------------------
   PDP — galeria, preço, quantidade, comprar
   -------------------------------------------------------------------------- */
#single-product .js-swiper-product,
#single-product .product-slider-image { border-radius: var(--petyc-radius-lg); overflow: hidden; }
#single-product .product-thumb { border-radius: var(--petyc-radius-sm); overflow: hidden; }
#single-product .product-thumb.selected { outline: 2px solid var(--petyc-teal); outline-offset: 1px; }

#single-product #price_display,
#single-product .js-price-display {
  color: var(--petyc-teal) !important;
  font-weight: 900;
}
#single-product .price-compare,
#single-product .js-compare-price-display { color: #aab5af !important; }

/* Caixa de preço/compra com cara de cartão */
#single-product .price-container {
  background: #fff;
  border-radius: var(--petyc-radius);
  box-shadow: var(--petyc-shadow);
  padding: 20px;
}

/* Stepper de quantidade arredondado */
.form-quantity { border-radius: var(--petyc-radius-sm); background: #f4efe2; }
.js-quantity-input { font-weight: 900; color: var(--petyc-green); background: transparent; border: none; }
.js-quantity-up, .js-quantity-down { border-radius: 12px; }

/* Bullets de variação (kit) */
.btn-variant { border-radius: 14px !important; font-weight: 800; }
.btn-variant.selected { border-color: var(--petyc-teal) !important; }

/* Mensagem de frete grátis em verde-teal */
.free-shipping-message,
.js-free-shipping-minimum-message { color: var(--petyc-teal-ink) !important; font-weight: 800; }

/* --------------------------------------------------------------------------
   Footer — verde escuro acolhedor (cor de fundo vem do setting)
   -------------------------------------------------------------------------- */
.footer h4, .footer .footer-title { font-weight: 800; }

/* --------------------------------------------------------------------------
   Responsivo — ajustes finos mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .service-item { padding: 13px 14px; }
  .item-product .item-name { font-size: 13.5px; }
  #single-product .price-container { padding: 16px; }
}

/* --------------------------------------------------------------------------
   Espaçamento entre cards de produto (grid) — respiro vertical + horizontal
   (colunas Lima vinham com margin-bottom:0 → linhas grudadas)
   -------------------------------------------------------------------------- */
.item-product { padding-left: 12px; padding-right: 12px; margin-bottom: 26px; }
.row-grid { margin-left: -12px; margin-right: -12px; }
@media (max-width: 768px) {
  .item-product { padding-left: 7px; padding-right: 7px; margin-bottom: 18px; }
  .row-grid { margin-left: -7px; margin-right: -7px; }
}

/* ============================================================================
   PDP REIMAGINADA — selos de confiança + descrição repaginada + polimento
   ============================================================================ */

/* Preço em destaque + comparação */
#single-product #price_display,
#single-product .js-price-display { color: var(--petyc-teal); font-weight: 900; letter-spacing: -.01em; }
#single-product .price-compare,
#single-product .js-compare-price-display { color: #aab5af !important; text-decoration: line-through; }
#single-product .free-shipping-message,
#single-product .js-free-shipping-minimum-message,
#single-product .js-product-form-free-shipping-message { color: var(--petyc-teal-ink) !important; font-weight: 800; }

/* Botão comprar com respiro e brilho (reforça o já existente) */
#single-product .js-addtocart.btn-primary { padding-top: 15px; padding-bottom: 15px; font-size: 16px; }

/* Acordeões (meios de pagamento / frete) como cartões suaves */
#single-product .accordion {
  background: #fff; border: 1px solid var(--petyc-sand);
  border-radius: var(--petyc-radius-sm); margin-bottom: 12px; padding: 0 16px !important;
}

/* --- Faixa de selos de confiança --- */
.petyc-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 8px 0 20px; }
.petyc-trust-item {
  display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--petyc-sand); border-radius: var(--petyc-radius-sm); padding: 10px 12px;
}
.petyc-trust-ico {
  width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--petyc-mint);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.petyc-trust-item b { display: block; font-size: 13.5px; color: var(--petyc-green); font-weight: 900; line-height: 1.15; }
.petyc-trust-item small { font-size: 12px; color: #7a8f86; font-weight: 700; }

/* --- Descrição repaginada (só na PDP: #single-product .user-content) --- */
#single-product .user-content { color: #3c5b50; font-size: 15px; line-height: 1.65; }
#single-product .user-content h5 { font-family: "Capriola", sans-serif; color: var(--petyc-green); font-size: 22px; margin: 4px 0 16px; }
/* Subtítulos: <p> FILHO DIRETO do user-content com só um <strong> vira título
   de seção. (o ">" evita pegar os <p><strong> aninhados dentro dos <li>,
   já que :only-child ignora nós de texto) */
#single-product .user-content > p > strong:only-child {
  display: block; font-family: "Capriola", sans-serif; font-weight: 400;
  color: var(--petyc-green); font-size: 19px; line-height: 1.2; margin: 28px 0 8px;
}
/* Listas de benefícios com check em círculo */
#single-product .user-content ul { list-style: none; padding-left: 0; margin: 12px 0; }
#single-product .user-content ul li {
  position: relative; padding: 9px 0 9px 34px; line-height: 1.5;
  border-bottom: 1px solid var(--petyc-sand);
}
#single-product .user-content ul li:last-child { border-bottom: none; }
#single-product .user-content ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--petyc-mint); color: var(--petyc-teal-ink);
  font-weight: 900; font-size: 12px; display: flex; align-items: center; justify-content: center;
}
#single-product .user-content ul li strong { color: var(--petyc-green); }
/* Modo de uso: passos numerados com badge */
#single-product .user-content ol { list-style: none; padding-left: 0; counter-reset: petyc-step; margin: 14px 0; }
#single-product .user-content ol li {
  position: relative; padding: 4px 0 16px 48px; line-height: 1.5; counter-increment: petyc-step;
}
#single-product .user-content ol li::before {
  content: counter(petyc-step); position: absolute; left: 0; top: 0; width: 32px; height: 32px;
  border-radius: 50%; background: var(--petyc-teal); color: #fff; font-family: "Capriola", sans-serif;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(54, 180, 154, .35);
}

@media (min-width: 992px) { .petyc-trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .petyc-trust { grid-template-columns: 1fr; } }

/* Selo de economia ao lado do preço */
.petyc-save {
  display: inline-block; margin-left: 10px; vertical-align: middle;
  background: var(--petyc-mint); color: var(--petyc-teal-ink);
  font-weight: 900; font-size: 13px; padding: 5px 11px; border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Barra de compra fixa (mobile)
   -------------------------------------------------------------------------- */
.petyc-stickybar { display: none; }
@media (max-width: 768px) {
  .petyc-stickybar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    align-items: center; gap: 12px; background: #fff;
    border-top: 1px solid var(--petyc-sand); box-shadow: 0 -6px 20px rgba(37, 80, 70, .12);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    transform: translateY(115%); transition: transform .25s ease; will-change: transform;
  }
  .petyc-stickybar.is-visible { transform: translateY(0); }
  .petyc-stickybar-info { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.1; }
  .petyc-stickybar-name { font-weight: 800; font-size: 12.5px; color: var(--petyc-green); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .petyc-stickybar-price { font-family: "Capriola", sans-serif; font-size: 18px; color: var(--petyc-teal); margin-top: 2px; }
  .petyc-stickybar-btn {
    flex: none; border: none; background: var(--petyc-teal); color: #fff; font-weight: 900;
    font-size: 15px; padding: 12px 22px; border-radius: 999px; cursor: pointer;
    box-shadow: 0 8px 18px rgba(54, 180, 154, .4);
  }
  body.petyc-sticky-on { padding-bottom: 76px; }
  body.petyc-sticky-on .btn-whatsapp.js-btn-fixed-bottom { bottom: 90px !important; transition: bottom .25s ease; }
}

/* Selo de vendas (prova social) */
.petyc-sales {
  display: inline-flex; align-items: center; gap: 6px; vertical-align: middle;
  background: var(--petyc-peach); color: #c2611f;
  font-weight: 800; font-size: 13px; padding: 6px 12px; border-radius: 999px;
  margin: 2px 0 10px;
}
.petyc-sales strong { font-weight: 900; }
.petyc-sales-ico { font-size: 14px; line-height: 1; }

/* --------------------------------------------------------------------------
   PDP · Meios de pagamento e Meios de envio SEMPRE abertos (sem atrito no frete)
   Vira seção nativa: mostra o conteúdo, esconde o +/- e trava o toggle.
   -------------------------------------------------------------------------- */
#single-product .js-accordion-content { display: block !important; }
#single-product .js-accordion-toggle .js-accordion-toggle-inactive,
#single-product .js-accordion-toggle .js-accordion-toggle-active { display: none !important; }
#single-product .js-accordion-toggle { cursor: default; pointer-events: none; }

/* --------------------------------------------------------------------------
   PDP · Bloco de preço Pix-first (esconde o nativo, mostra o custom)
   -------------------------------------------------------------------------- */
#single-product [data-store^="product-price-"] { display: none !important; }
.petyc-price { margin: 2px 0 18px; }
.petyc-price-pix { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.petyc-price-pix-val { font-family: "Capriola", sans-serif; font-size: clamp(30px, 5vw, 38px); color: var(--petyc-teal); line-height: 1; }
.petyc-price-pix-lbl { font-size: 18px; color: var(--petyc-teal-ink); font-weight: 800; }
.petyc-price-pix-sub { color: var(--petyc-teal-ink); font-weight: 800; font-size: 15px; margin-top: 3px; }
.petyc-price-card { margin-top: 12px; font-size: 17px; }
.petyc-price-compare { text-decoration: line-through; color: #aab5af; font-weight: 700; }
.petyc-price-sale { color: var(--petyc-green); font-weight: 900; }
.petyc-price-cardlbl { color: #557066; font-weight: 700; }
.petyc-price-inst { color: #557066; font-weight: 600; font-size: 14.5px; margin-top: 4px; }

/* PDP · remove "Meios de pagamento" (redundante com o bloco de preço) */
#single-product .js-accordion-container:has(.js-product-payments-container) { display: none !important; }

/* PDP · "Meios de envio" mais compacto */
#single-product #product-shipping-container { padding-top: 0 !important; padding-bottom: 6px !important; }
#single-product #product-shipping-container .js-accordion-toggle { padding-top: 12px !important; padding-bottom: 2px !important; }
#single-product #product-shipping-container .js-accordion-content { padding-top: 2px !important; }
#single-product #product-shipping-container .mb-4 { margin-bottom: .6rem !important; }
#single-product .js-shipping-calculator-response { margin-bottom: .3rem !important; }

/* --------------------------------------------------------------------------
   Selo "Mais vendido" (Curva A) — PDP (pill) e card do grid (badge na imagem)
   -------------------------------------------------------------------------- */
.petyc-bestseller {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff4d6; color: #a86a12; font-weight: 900; font-size: 12.5px;
  padding: 5px 11px; border-radius: 999px; border: 1px solid #f2d999; vertical-align: middle;
}
/* Flags na lateral da foto: empilha "Mais vendido" (verde) + "-% OFF" (laranja),
   coladas na borda direita da imagem */
.petyc-flags {
  position: absolute; top: 14px; right: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  pointer-events: none;
}
.petyc-bestseller-grid, .petyc-discount-flag-grid {
  position: static; display: inline-flex; align-items: center; gap: 6px;
  color: #fff; border: none; font-weight: 900;
  border-radius: 999px 0 0 999px;
}
.petyc-bestseller-grid {
  background: var(--petyc-green); font-size: 13px; padding: 8px 15px 8px 16px;
  box-shadow: 0 4px 12px rgba(37, 80, 70, .25), 0 2px 4px rgba(37, 80, 70, .16);
}
.petyc-discount-flag-grid {
  background: var(--petyc-orange); font-size: 14.5px; padding: 7px 15px 7px 17px;
  box-shadow: 0 4px 12px rgba(196, 110, 42, .30), 0 2px 4px rgba(0, 0, 0, .10);
}
/* contexto de posicionamento das flags na foto da PDP */
#single-product .product-image-container { position: relative; }

/* PDP · remove o breadcrumb (categoria) do topo */
#single-product .breadcrumbs { display: none !important; }

/* --------------------------------------------------------------------------
   PDP · Alta conversão: prazo junto do CTA + upsell de kit
   -------------------------------------------------------------------------- */
.petyc-prazo {
  margin: -6px 0 14px; font-size: 14.5px; font-weight: 700; color: var(--petyc-green);
  background: var(--petyc-mint); border-radius: 12px; padding: 9px 14px;
}
.petyc-prazo b { color: var(--petyc-teal-ink); }

.petyc-kitup {
  display: block; background: #fff; border: 2px dashed var(--petyc-orange);
  border-radius: var(--petyc-radius-sm); padding: 13px 15px; margin: 0 0 18px;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.petyc-kitup:hover { transform: translateY(-2px); box-shadow: var(--petyc-shadow-hover); }
.petyc-kitup-badge {
  display: inline-block; background: var(--petyc-orange); color: #fff;
  font-weight: 900; font-size: 10.5px; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 9px;
}
.petyc-kitup-main { display: block; min-width: 0; }
.petyc-kitup-info { display: block; }
.petyc-kitup-formwrap { display: none !important; }
.petyc-kitup-namelink { text-decoration: none; color: inherit; }
.petyc-kitup-namelink:hover b { text-decoration: underline; }
.petyc-kitup-cta { cursor: pointer; }
.petyc-kitup-info b { display: block; color: var(--petyc-green); font-size: 15px; font-weight: 900; line-height: 1.2; }
.petyc-kitup-info small { color: #7a8f86; font-weight: 700; font-size: 12.5px; }
.petyc-kitup-price { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; margin-top: 6px; }
.petyc-kitup-price s { color: #aab5af; font-weight: 700; font-size: 13px; }
.petyc-kitup-price b { font-family: "Capriola", sans-serif; color: var(--petyc-teal); font-size: 20px; }
.petyc-kitup-price em { font-style: normal; background: var(--petyc-peach); color: #c2611f; font-weight: 900; font-size: 11.5px; padding: 3px 8px; border-radius: 999px; }
.petyc-kitup-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--petyc-teal-ink); font-weight: 900; font-size: 13.5px; }
.petyc-kitup-cta span { transition: transform .15s ease; }
.petyc-kitup:hover .petyc-kitup-cta span { transform: translateX(4px); }

/* Variante banner com foto (desktop, abaixo da galeria — preenche o vão) */
.petyc-kitup-wide { display: flex; align-items: center; gap: 20px; margin: 16px 0 0; padding: 16px 20px; }
.petyc-kitup-img {
  width: 116px; height: 116px; flex: none; object-fit: cover;
  border-radius: 14px; background: #f4efe2;
}
.petyc-kitup-wide .petyc-kitup-main { flex: 1; }
.petyc-kitup-wide .petyc-kitup-info b { font-size: 17px; }
.petyc-kitup-wide .petyc-kitup-info small { font-size: 13px; }
.petyc-kitup-wide .petyc-kitup-price b { font-size: 24px; }
.petyc-kitup-wide .petyc-kitup-cta {
  flex: none; margin: 0; background: var(--petyc-teal); color: #fff;
  font-size: 15px; padding: 13px 24px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(54, 180, 154, .4);
}

/* --------------------------------------------------------------------------
   PDP · Descrição com largura de leitura + respiros mais enxutos
   -------------------------------------------------------------------------- */
#single-product .user-content { max-width: 780px; }
#single-product .user-content ul li { padding-top: 7px; padding-bottom: 7px; }
#single-product .user-content ol li { padding-bottom: 12px; }
#single-product .user-content p > strong:only-child,
#single-product .user-content > p > strong:only-child { margin-top: 22px; }
#product-description { margin-bottom: 0 !important; }
#product-description .user-content { margin-bottom: 1rem !important; }

/* Seções de produtos relacionados: menos ar antes, título no tom da marca */
.section-products-related { padding-top: 8px; }
.section-products-related h2, .section-products-related .h3 { color: var(--petyc-green); }

/* -% virou bandeira na foto → esconde o selo de oferta nativo (card + PDP) */
.item-product .js-offer-label, #single-product .js-offer-label { display: none !important; }

/* ============ Toast de confirmação (kit adicionado) ============ */
.petyc-toast[hidden] { display: none !important; }
.petyc-toast {
  position: fixed; z-index: 10000; right: 26px; bottom: 26px;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1.5px solid var(--petyc-teal);
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 14px 38px rgba(37, 80, 70, .22), 0 3px 10px rgba(37, 80, 70, .10);
  max-width: min(420px, calc(100vw - 32px));
}
.petyc-toast-in { animation: petycToastIn .35s cubic-bezier(.21, 1.02, .55, 1.2) both; }
@keyframes petycToastIn { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
.petyc-toast-ico {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--petyc-teal); color: #fff; font-weight: 900; font-size: 17px;
}
.petyc-toast-txt { min-width: 0; }
.petyc-toast-txt b { display: block; color: var(--petyc-green); font-weight: 900; font-size: 14.5px; line-height: 1.25; }
.petyc-toast-txt small { display: block; color: #7a8f86; font-weight: 700; font-size: 12px; }
.petyc-toast-cta {
  flex: none; background: var(--petyc-teal); color: #fff !important;
  font-weight: 900; font-size: 13px; text-decoration: none;
  padding: 9px 16px; border-radius: 999px; white-space: nowrap;
}
.petyc-toast-cta:hover { filter: brightness(1.06); }
@media (max-width: 767px) {
  /* acima da sticky bar de compra + botão do WhatsApp */
  .petyc-toast { left: 16px; right: 16px; bottom: 92px; padding: 12px 14px; }
}

/* CTA do kit em estado sucesso */
.petyc-kitup-cta-ok { background: var(--petyc-green) !important; color: #fff !important; }
.petyc-kitup-cta[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* ============ Header compacto ============ */
.head-main .container-fluid { padding-top: 4px !important; padding-bottom: 0 !important; }
.head-main .logo-img { max-height: 54px !important; width: auto !important; }
.js-adbar { padding-top: 0 !important; padding-bottom: 0 !important; }
.js-adbar .swiper-slide { padding-top: 7px !important; padding-bottom: 7px !important; font-size: 12px !important; letter-spacing: .05em; }
.js-menu-and-banners-row .nav-list-link { font-size: 14.5px; }

/* ============ Barra de progresso do frete grátis ============ */
.petyc-freeship {
  order: 1; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #eaf6f2; color: var(--petyc-green);
  font-weight: 800; font-size: 12.5px; padding: 6px 16px;
}
.petyc-freeship[hidden] { display: none !important; }
.petyc-freeship-txt b { font-weight: 900; }
.petyc-freeship-track {
  display: inline-block; width: min(220px, 34vw); height: 7px;
  border-radius: 999px; background: rgba(54, 180, 154, .18); overflow: hidden;
}
.petyc-freeship-fill {
  display: block; height: 100%; width: 0;
  border-radius: 999px; background: var(--petyc-teal);
  transition: width .5s ease;
}
.petyc-freeship-ok { background: var(--petyc-teal); color: #fff; }
.petyc-freeship-ok .petyc-freeship-track { background: rgba(255, 255, 255, .32); }
.petyc-freeship-ok .petyc-freeship-fill { background: #fff; }

/* ============ Item "Kits" em destaque no menu (pill) ============ */
.nav-list-link[href*="kit"] {
  display: inline-block; width: fit-content;
  background: var(--petyc-orange); color: #fff !important;
  border-radius: 999px; padding: 6px 16px !important;
  font-weight: 800;
}
.nav-list-link[href*="kit"]:hover { filter: brightness(1.07); }
/* logo-img-container tem height fixa (114px) no tema → soltar */
.head-main .logo-img-container { height: auto !important; min-height: 0 !important; padding: 9px 0 !important; }
.js-menu-and-banners-row { margin-top: -4px; }
/* a altura real vinha do margin do logo (30px 0 no CSS crítico) */
.head-main .logo-img { margin: 6px 0 !important; }
.head-main .logo-img-container { padding: 0 !important; }

/* ============ Mobile (≤767px) ============ */
@media (max-width: 767.98px) {
  /* banner do kit sob a galeria é desktop-only (form/toast dele vivem fora e valem no mobile) */
  .petyc-kitup-wide { display: none !important; }
  /* freeship em 1 linha compacta */
  .petyc-freeship { font-size: 11px; padding: 5px 10px; gap: 8px; white-space: nowrap; }
  .petyc-freeship-track { width: 88px; flex: none; }
  /* banners informativos do header mais enxutos */
  .head-banners .head-banner-text, .head-banners .btn-link { font-size: 10.5px; line-height: 1.25; }
  /* pill do Kits no drawer */
  .nav-list-link[href*="kit"] { margin: 6px 0 0 0; padding: 7px 16px !important; }
}

/* ============ Carrinho do header em pílula + botão Minha conta ============ */
#ajax-cart a.btn-utility {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--petyc-mint);
  border: 1.5px solid rgba(54, 180, 154, .35);
  border-radius: 999px !important;
  padding: 8px 16px !important;
  color: var(--petyc-green) !important;
  transition: border-color .15s ease, box-shadow .15s ease;
}
#ajax-cart a.btn-utility:hover { border-color: var(--petyc-teal); box-shadow: 0 4px 12px rgba(54, 180, 154, .2); }
#ajax-cart .cart-icon { margin: 0; }
#ajax-cart .petyc-cartbtn-total {
  margin: 0; font-size: 13.5px; font-weight: 900; color: var(--petyc-teal-ink);
}
#ajax-cart .js-cart-widget-amount.badge {
  position: absolute; top: -7px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-size: 11px; font-weight: 900; line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}
@media (max-width: 767.98px) {
  #ajax-cart a.btn-utility { padding: 7px 11px !important; }
}

.petyc-accbtn {
  align-items: center; gap: 7px; margin-right: 10px;
  background: #fff; border: 1.5px solid var(--petyc-sand);
  border-radius: 999px; padding: 8px 15px;
  color: var(--petyc-green) !important; font-weight: 800; font-size: 13px;
  text-decoration: none !important; white-space: nowrap;
  transition: border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.petyc-accbtn:hover { border-color: var(--petyc-teal); color: var(--petyc-teal-ink) !important; box-shadow: 0 4px 12px rgba(54, 180, 154, .16); }
.petyc-accbtn .utilities-icon { margin: 0; }
/* conta + carrinho lado a lado, sem quebra (a col do tema deixava embrulhar) */
@media (min-width: 768px) {
  .head-main .col-utility-cart { display: inline-flex !important; align-items: center; justify-content: flex-end; flex-wrap: nowrap; white-space: nowrap; }
  .head-main .col-utility-cart .utilities-container { display: inline-flex; align-items: center; }
}
/* badge do carrinho: anel cream (integra com o header), número centrado de fato */
#ajax-cart .js-cart-widget-amount.badge {
  top: -8px; right: -7px;
  min-width: 22px; height: 22px; padding: 0;
  border: 2px solid var(--petyc-cream);
  font-size: 10.5px; line-height: 22px; text-align: center;
  display: inline-block; box-shadow: none;
}

/* ============ Área do cliente (petyc-conta) ============ */
.petyc-conta { margin-bottom: 56px; }
.petyc-conta-hero { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 4px 0 18px; }
.petyc-conta-ola { font-family: "Capriola", sans-serif; color: var(--petyc-green); font-size: 26px; margin: 0; }
.petyc-conta-sub { color: #7a8f86; font-weight: 700; font-size: 13.5px; margin: 4px 0 0; }
.petyc-conta-sair {
  flex: none; border: 1.5px solid var(--petyc-sand); border-radius: 999px;
  padding: 8px 18px; color: var(--petyc-green) !important; font-weight: 800; font-size: 13px;
  text-decoration: none !important;
}
.petyc-conta-sair:hover { border-color: var(--petyc-orange); color: #c2611f !important; }

.petyc-cb {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--petyc-green), #1d3f37 58%, #2a9a82);
  border-radius: var(--petyc-radius-lg); padding: 24px 28px;
  box-shadow: 0 16px 36px rgba(37, 80, 70, .22);
}
.petyc-cb-label { color: rgba(255,255,255,.75); font-weight: 800; font-size: 13px; letter-spacing: .04em; }
.petyc-cb-valor { font-family: "Capriola", sans-serif; color: #fff; font-size: 42px; line-height: 1.1; margin: 4px 0 2px; }
.petyc-cb-hint { color: rgba(255,255,255,.82); font-weight: 700; font-size: 13px; }
.petyc-cb-hint a { color: var(--petyc-orange); font-weight: 900; }
.petyc-cb-stats { display: flex; gap: 26px; }
.petyc-cb-stats > div { text-align: right; }
.petyc-cb-stats b { display: block; color: #fff; font-family: "Capriola", sans-serif; font-size: 20px; }
.petyc-cb-stats small { color: rgba(255,255,255,.7); font-weight: 700; font-size: 12px; }
.petyc-cb-stats[hidden] { display: none !important; }

.petyc-cb-cupom {
  margin-top: 14px; background: var(--petyc-peach); border: 1.5px dashed var(--petyc-orange);
  border-radius: var(--petyc-radius-sm); padding: 12px 18px;
  color: #8a4a17; font-weight: 700; font-size: 14px;
}
.petyc-cb-cupom[hidden] { display: none !important; }
.petyc-cb-cupom b { font-weight: 900; letter-spacing: .04em; }

.petyc-cb-compras { margin-top: 22px; }
.petyc-cb-compras[hidden] { display: none !important; }
.petyc-cb-compras-titulo { font-family: "Capriola", sans-serif; color: var(--petyc-green); font-size: 19px; margin: 0 0 12px; }
.petyc-cb-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border-radius: var(--petyc-radius-sm);
  padding: 13px 18px; margin-bottom: 10px; box-shadow: var(--petyc-shadow);
}
.petyc-cb-item-info { min-width: 0; }
.petyc-cb-item-info b { display: block; color: var(--petyc-green); font-size: 14px; font-weight: 800; line-height: 1.25; }
.petyc-cb-item-info small { color: #7a8f86; font-weight: 700; font-size: 12px; }
.petyc-cb-item-cb { flex: none; text-align: right; font-weight: 900; font-size: 15px; }
.petyc-cb-item-cb.is-ativo { color: var(--petyc-teal-ink); }
.petyc-cb-item-cb.is-exp { color: #aab5af; }
.petyc-cb-item-cb.is-uso { color: #c2611f; }
.petyc-cb-item-cb small { display: block; font-weight: 700; font-size: 11px; color: #9fb0a9; }

/* cards nativos da conta com a cara Petyc */
.account-page .box, .account-page .card { border-radius: var(--petyc-radius) !important; }
@media (max-width: 767.98px) {
  .petyc-cb { padding: 20px; }
  .petyc-cb-valor { font-size: 34px; }
  .petyc-cb-stats { gap: 18px; }
  .petyc-cb-stats > div { text-align: left; }
}

/* ============ Clube Petyc · shell + painéis ============ */
.petyc-conta-nav {
  display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto;
  padding: 4px 2px 14px; margin-bottom: 8px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.petyc-conta-nav::-webkit-scrollbar { display: none; }
.petyc-conta-tab {
  flex: none; padding: 9px 18px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--petyc-sand);
  color: var(--petyc-green) !important; font-weight: 800; font-size: 13.5px;
  text-decoration: none !important; white-space: nowrap;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.petyc-conta-tab:hover { border-color: var(--petyc-teal); }
.petyc-conta-tab.is-active { background: var(--petyc-green); border-color: var(--petyc-green); color: #fff !important; }

.petyc-painel[hidden] { display: none !important; }
.petyc-conta-secao { font-family: "Capriola", sans-serif; color: var(--petyc-green); font-size: 19px; margin: 0; }
.petyc-conta-secao-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 26px 0 12px; }
.petyc-conta-vertodos { color: var(--petyc-teal-ink) !important; font-weight: 800; font-size: 13px; text-decoration: none !important; }
.petyc-conta-vertodos:hover { text-decoration: underline !important; }

.petyc-cb-lado { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.petyc-cb-extrato-link { color: #ffd9b8 !important; font-weight: 800; font-size: 12.5px; text-decoration: none !important; }
.petyc-cb-extrato-link:hover { color: var(--petyc-orange) !important; }

/* compre de novo */
.petyc-recompra { margin-top: 26px; }
.petyc-recompra[hidden] { display: none !important; }
.petyc-recompra-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-top: 12px; }
.petyc-recompra-card {
  background: #fff; border-radius: var(--petyc-radius); padding: 14px;
  box-shadow: var(--petyc-shadow); display: flex; flex-direction: column; gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.petyc-recompra-card:hover { transform: translateY(-4px); box-shadow: var(--petyc-shadow-hover); }
.petyc-recompra-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--petyc-radius-sm); }
.petyc-recompra-card b { color: var(--petyc-green); font-size: 13.5px; font-weight: 800; line-height: 1.3; min-height: 2.6em; }
.petyc-recompra-preco { color: var(--petyc-teal-ink); font-weight: 900; font-size: 16px; }
.petyc-recompra-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--petyc-teal); color: #fff !important; border: none; cursor: pointer;
  border-radius: 999px; padding: 9px 14px; font-weight: 800; font-size: 13px;
  text-decoration: none !important; transition: filter .15s ease;
}
.petyc-recompra-btn:hover { filter: brightness(1.07); }
.petyc-recompra-btn[aria-busy="true"] { opacity: .6; pointer-events: none; }

/* últimos pedidos (linhas) */
.petyc-pedido-row {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: var(--petyc-radius-sm);
  padding: 13px 18px; margin-bottom: 10px; box-shadow: var(--petyc-shadow);
  text-decoration: none !important; transition: transform .12s ease;
}
.petyc-pedido-row:hover { transform: translateX(3px); }
.petyc-pedido-row-info { flex: 1; min-width: 0; }
.petyc-pedido-row-info b { display: block; color: var(--petyc-green); font-size: 14px; }
.petyc-pedido-row-info small { color: #7a8f86; font-weight: 700; font-size: 12px; }
.petyc-pedido-row-total { color: var(--petyc-teal-ink); font-size: 15px; }
.petyc-status {
  flex: none; padding: 4px 12px; border-radius: 999px;
  font-weight: 800; font-size: 11.5px; background: var(--petyc-mint); color: var(--petyc-teal-ink);
}
.petyc-status-pending, .petyc-envio-unfulfilled { background: var(--petyc-peach); color: #a15c1f; }
.petyc-status-voided, .petyc-status-refunded { background: #f4e3e3; color: #a94444; }

/* dados compactos */
.petyc-dados-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.petyc-dados-card { background: #fff; border-radius: var(--petyc-radius); padding: 18px 20px; box-shadow: var(--petyc-shadow); }
.petyc-dados-card .petyc-conta-secao { font-size: 16px; }
.petyc-dados-card .petyc-conta-secao-row { margin: 0 0 10px; }
.petyc-dados-card p { margin: 0; }
.petyc-dados-card b { color: var(--petyc-green); }
.petyc-dados-card span { display: block; color: #5c7068; font-weight: 600; font-size: 13.5px; margin-top: 2px; }
.petyc-dados-alerta { color: #a15c1f !important; font-weight: 800 !important; }

/* como funciona */
.petyc-comofunciona { margin-top: 26px; }
.petyc-comofunciona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 12px; }
.petyc-comofunciona-grid > div {
  background: #fff; border-radius: var(--petyc-radius); padding: 18px 20px; box-shadow: var(--petyc-shadow);
}
.petyc-comofunciona-grid span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--petyc-teal); color: #fff; font-weight: 900; margin-bottom: 8px;
}
.petyc-comofunciona-grid b { display: block; color: var(--petyc-green); font-size: 15px; }
.petyc-comofunciona-grid small { color: #5c7068; font-weight: 600; font-size: 12.5px; line-height: 1.45; }

/* extrato */
.petyc-extrato { margin-top: 26px; }
.petyc-extrato .js-petyc-extrato { margin-top: 12px; }
.petyc-extrato-vazio { color: #7a8f86; font-weight: 700; background: #fff; border-radius: var(--petyc-radius-sm); padding: 16px 18px; box-shadow: var(--petyc-shadow); }

@media (max-width: 767.98px) {
  .petyc-dados-grid, .petyc-comofunciona-grid { grid-template-columns: 1fr; }
  .petyc-recompra-grid { grid-template-columns: repeat(2, 1fr); }
  .petyc-pedido-row { flex-wrap: wrap; gap: 8px; }
  .petyc-cb-lado { align-items: flex-start; }
}

/* ============ Clube Petyc · timeline do pedido ============ */
.petyc-timeline {
  display: flex; align-items: flex-start; gap: 0;
  background: #fff; border-radius: var(--petyc-radius); padding: 20px 26px 16px;
  box-shadow: var(--petyc-shadow); margin-bottom: 12px;
}
.petyc-tl-step { flex: none; text-align: center; min-width: 96px; }
.petyc-tl-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #e7e0d2; color: #8b8474; font-weight: 900; margin-bottom: 6px;
}
.petyc-tl-step b { display: block; color: var(--petyc-green); font-size: 13px; }
.petyc-tl-step small { color: #7a8f86; font-weight: 700; font-size: 11.5px; }
.petyc-tl-step.is-done span { background: var(--petyc-teal); color: #fff; }
.petyc-tl-step.is-current span { background: var(--petyc-orange); color: #fff; animation: petycPulse 1.6s ease infinite; }
.petyc-tl-step.is-cancel span { background: #d9776f; color: #fff; }
.petyc-tl-step.is-off { opacity: .55; }
@keyframes petycPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(244,163,113,.45); } 50% { box-shadow: 0 0 0 8px rgba(244,163,113,0); } }
.petyc-tl-bar { flex: 1; height: 4px; border-radius: 999px; background: #e7e0d2; margin-top: 15px; }
.petyc-tl-bar.is-done { background: var(--petyc-teal); }
.petyc-tl-rastreio {
  display: inline-flex; align-items: center; gap: 6px; margin: 2px 0 16px;
  background: var(--petyc-teal); color: #fff !important;
  border-radius: 999px; padding: 10px 20px; font-weight: 800; font-size: 13.5px;
  text-decoration: none !important; box-shadow: 0 8px 18px rgba(54,180,154,.35);
}
@media (max-width: 767.98px) {
  .petyc-timeline { padding: 16px 12px 12px; }
  .petyc-tl-step { min-width: 78px; }
}

/* ============ Clube Petyc · login/cadastro ============ */
.petyc-login-beneficios {
  background: linear-gradient(135deg, var(--petyc-green), #1d3f37 65%, #2a9a82);
  border-radius: var(--petyc-radius-lg); padding: 34px 36px;
  box-shadow: 0 16px 36px rgba(37, 80, 70, .22);
}
.petyc-login-beneficios h2 { font-family: "Capriola", sans-serif; color: #fff; font-size: 28px; margin: 0 0 6px; }
.petyc-login-beneficios > p { color: rgba(255,255,255,.85); font-weight: 700; font-size: 14.5px; margin: 0 0 20px; }
.petyc-login-beneficios ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.petyc-login-beneficios li { display: flex; align-items: flex-start; gap: 12px; }
.petyc-login-beneficios li span {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.12); display: inline-flex; align-items: center; justify-content: center; font-size: 19px;
}
.petyc-login-beneficios li b { display: block; color: #fff; font-size: 14.5px; }
.petyc-login-beneficios li small { color: rgba(255,255,255,.72); font-weight: 700; font-size: 12.5px; }
.template-account-login .account-page .row, .template-account-register .account-page .row { align-items: center; }

/* ============ Auditoria: quick wins ============ */
/* filtro "Marca" inútil em loja monomarca */
#filters [data-component="list.filter-brand"] { display: none !important; }

/* ============ Cashback · ativação (conta) e resgate (carrinho) ============ */
.petyc-ativacao {
  margin-top: 14px; background: #fff; border: 1.5px dashed var(--petyc-teal);
  border-radius: var(--petyc-radius); padding: 20px 22px;
}
.petyc-ativacao[hidden] { display: none !important; }
.petyc-ativacao > b { color: var(--petyc-green); font-size: 16px; }
.petyc-ativacao p { color: #5c7068; font-weight: 600; font-size: 13.5px; margin: 6px 0 12px; }
.petyc-ativacao-form { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.petyc-ativacao-btn {
  background: var(--petyc-teal); color: #fff; border: none; cursor: pointer;
  border-radius: 999px; padding: 10px 22px; font-weight: 800; font-size: 13.5px;
}
.petyc-ativacao-btn:disabled { opacity: .6; }
.petyc-ativacao-passo2 { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.petyc-ativacao-passo2[hidden] { display: none !important; }
.petyc-ativacao-passo2 input {
  border: 1.5px solid var(--petyc-sand); border-radius: 999px; padding: 9px 16px;
  font-weight: 700; font-size: 14px; width: 190px;
}
.petyc-ativacao-msg { font-weight: 700; }
.petyc-ativo-badge {
  margin-top: 14px; background: var(--petyc-mint); border-radius: var(--petyc-radius-sm);
  padding: 13px 18px; color: var(--petyc-green); font-weight: 700; font-size: 14px;
}
.petyc-ativo-badge[hidden] { display: none !important; }
.petyc-ativo-badge a { color: var(--petyc-teal-ink) !important; font-weight: 900; }

.petyc-cart-cb {
  background: #fff; border: 1.5px dashed var(--petyc-teal);
  border-radius: var(--petyc-radius-sm); padding: 15px 18px; margin-bottom: 14px;
  color: var(--petyc-green); font-weight: 700; font-size: 14px;
}
.petyc-cart-cb[hidden], .petyc-cart-cb [hidden] { display: none !important; }
.petyc-ccb-btn {
  background: var(--petyc-teal); color: #fff; border: none; cursor: pointer;
  border-radius: 999px; padding: 8px 16px; font-weight: 800; font-size: 13px; margin-left: 8px;
}
.petyc-ccb-btn:disabled { opacity: .6; }
.petyc-ccb-codigo {
  display: inline-block; background: var(--petyc-mint); border-radius: 8px;
  padding: 6px 12px; font-family: monospace; font-weight: 900; letter-spacing: .05em; margin: 6px 4px 6px 0;
}
.petyc-cart-cb small { display: block; color: #7a8f86; font-weight: 600; margin-top: 4px; }

/* ============ Página pública /cashback (ativador) ============ */
.petyc-cbpage[hidden] { display: none !important; }
.petyc-cbpage-hero h2 { font-family: "Capriola", sans-serif; color: var(--petyc-green); font-size: 30px; margin: 0 0 8px; }
.petyc-cbpage-hero p { color: #5c7068; font-weight: 600; font-size: 15px; line-height: 1.5; margin: 0 0 20px; }
.petyc-cbpage-passos { margin-bottom: 22px; }
.petyc-cbpage-card {
  background: #fff; border-radius: var(--petyc-radius); padding: 22px 24px;
  box-shadow: var(--petyc-shadow); margin-bottom: 16px;
}
.petyc-cbpage-card[hidden] { display: none !important; }
.petyc-cbpage-card label b { color: var(--petyc-green); font-size: 16px; }
.petyc-cbpage-linha { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.petyc-cbpage-linha input {
  border: 1.5px solid var(--petyc-sand); border-radius: 999px; padding: 11px 18px;
  font-weight: 800; font-size: 16px; letter-spacing: .04em; width: 230px;
}
.petyc-cbpage-card p { color: #5c7068; font-weight: 600; font-size: 14px; margin: 8px 0 12px; }
.petyc-cbpage-card > .js-cbp-res-conteudo > b { color: var(--petyc-green); font-size: 16px; }
.petyc-cbpage-saldo { color: var(--petyc-teal-ink); font-family: "Capriola", sans-serif; font-size: 20px; }
.petyc-cbpage-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.petyc-cbpage-ctas .petyc-ativacao-btn { text-decoration: none !important; color: #fff !important; }
.petyc-cbpage-cta2 { color: var(--petyc-teal-ink) !important; font-weight: 800; font-size: 14px; text-decoration: none !important; }
.petyc-cbpage-cta2:hover { text-decoration: underline !important; }
.petyc-cbpage-sucesso { border: 1.5px dashed var(--petyc-teal); text-align: center; }
.petyc-cbpage-sucesso h3 { font-family: "Capriola", sans-serif; color: var(--petyc-green); margin: 0 0 8px; }
.petyc-cbpage-sucesso .petyc-cbpage-ctas { justify-content: center; }
.petyc-cbpage-sucesso small { display: block; color: #7a8f86; font-weight: 600; margin-top: 10px; }
.petyc-cbpage .petyc-ativacao-msg { display: block; margin-top: 8px; font-weight: 700; }

/* /cashback centralizada: some o título nativo duplicado e centra a coluna do template */
body:has(#petyc-cashback-app) section[data-store="page-title"] { display: none; }
body:has(#petyc-cashback-app) .user-content .row { justify-content: center; }
body:has(#petyc-cashback-app) .user-content [class*="col-md-8"] { flex: 0 0 100%; max-width: 880px; }
body:has(#petyc-cashback-app) .user-content { padding-top: 10px; }
.petyc-cbpage { max-width: 840px; margin: 0 auto; padding-top: 22px; }
.petyc-cbpage-hero { text-align: center; }
.petyc-cbpage-card { text-align: center; }
.petyc-cbpage-card label { display: block; }
.petyc-cbpage-linha { justify-content: center; }
.petyc-cbpage .petyc-ativacao-passo2 { justify-content: center; }
.petyc-cbpage-ctas { justify-content: center; }
body:has(#petyc-cashback-app) .user-content > .container p { text-align: center; }

/* ============ Pedidos estilo Amazon (painel Pedidos da conta) ============ */
.petyc-pedlista { display: flex; flex-direction: column; gap: 18px; margin-top: 14px; }
.petyc-pedlista-sub { color: #7a8f86; font-weight: 700; font-size: 13px; margin: -8px 0 0; }
.petyc-pedlista-nota { text-align: center; color: #9a948a; font-weight: 700; font-size: 12.5px; margin: 6px 0 0; }
.petyc-pedlista-vazio { text-align: center; padding: 34px 0 10px; }
.petyc-amzped {
  background: #fff; border: 1px solid #e8e3d8; border-radius: var(--petyc-radius);
  overflow: hidden; box-shadow: var(--petyc-shadow);
}
.petyc-amzped-head {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: #f6f3ec; border-bottom: 1px solid #e8e3d8; padding: 12px 18px;
}
.petyc-amzped-head > div > small {
  display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #8a857a;
}
.petyc-amzped-head > div > b { font-size: 14.5px; color: #2c3b34; }
.petyc-amzped-head-dir { margin-left: auto; text-align: right; }
.petyc-amzped-head-dir small { text-transform: none; letter-spacing: 0; font-size: 12px; font-weight: 700; }
.petyc-amzped-head-dir a { display: block; font-size: 13px; font-weight: 800; color: var(--petyc-green) !important; text-decoration: none !important; }
.petyc-canal {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 1px;
  font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 999px;
  background: #eceae4; color: #4c483f; white-space: nowrap;
}
.petyc-canal-site { background: var(--petyc-mint); color: var(--petyc-teal-ink); }
.petyc-canal-ml { background: #fff159; color: #3b3b25; }
.petyc-canal-shopee { background: #ffe3d8; color: #cf4212; }
.petyc-canal-amazon { background: #232f3e; color: #ff9900; }
.petyc-canal-tiktok { background: #161616; color: #fff; }
.petyc-amzped-status { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 18px 0; }
.petyc-amzped-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; }
.petyc-amzped-item + .petyc-amzped-item { border-top: 1px dashed #eee9de; }
.petyc-amzped-foto {
  flex: 0 0 76px; width: 76px; height: 76px; border-radius: 12px;
  background: #faf8f3; border: 1px solid #f0ece2; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-decoration: none !important;
}
.petyc-amzped-foto img { width: 100%; height: 100%; object-fit: contain; }
.petyc-amzped-semfoto { font-size: 30px; line-height: 1; }
.petyc-amzped-item-info { flex: 1; min-width: 0; }
.petyc-amzped-item-info > b { display: block; font-size: 14.5px; color: #2c3b34; line-height: 1.35; }
.petyc-amzped-item-info > small { display: block; color: #7a8f86; font-weight: 700; font-size: 12.5px; margin-top: 2px; }
.petyc-amzped-item-acoes { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.petyc-amzped-verlink { font-size: 13px; font-weight: 800; color: var(--petyc-green) !important; text-decoration: none !important; }
.petyc-amzped-cb { padding: 10px 18px; border-top: 1px solid #eee9de; font-size: 13px; font-weight: 800; }
.petyc-amzped-cb.is-ativo { color: #1f8a6d; background: #f2faf6; }
.petyc-amzped-cb.is-exp { color: #a09a8d; background: #faf8f3; }
.petyc-amzped-foot { padding: 12px 18px; border-top: 1px solid #eee9de; }
@media (max-width: 767px) {
  .petyc-amzped-head { gap: 14px; padding: 10px 14px; }
  .petyc-amzped-head-dir { margin-left: 0; text-align: left; flex-basis: 100%; display: flex; align-items: center; justify-content: space-between; }
  .petyc-amzped-status { padding: 10px 14px 0; }
  .petyc-amzped-item { padding: 12px 14px; }
  .petyc-amzped-foto { flex-basis: 64px; width: 64px; height: 64px; }
  .petyc-amzped-cb, .petyc-amzped-foot { padding: 10px 14px; }
}

/* ============ Resgate de cashback no DRAWER do carrinho ============ */
.petyc-dcb {
  margin: 10px 0 14px; padding: 12px 14px;
  background: #f2faf6; border: 1.5px dashed #bfe3d4; border-radius: 14px;
  font-size: 13.5px; color: #255046;
}
.petyc-dcb-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.petyc-dcb [hidden], .petyc-dcb[hidden] { display: none !important; }
.petyc-dcb-row > span { font-weight: 700; }
.petyc-dcb b { color: var(--petyc-teal-ink); }
.petyc-dcb-btn {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  background: var(--petyc-teal); color: #fff !important; border: none; cursor: pointer;
  border-radius: 999px; padding: 7px 14px; font-weight: 800; font-size: 12.5px;
}
.petyc-dcb-btn:hover { filter: brightness(1.07); }
.petyc-dcb-btn:disabled { opacity: .6; pointer-events: none; }
.petyc-dcb-link { font-weight: 800; color: var(--petyc-green) !important; text-decoration: none !important; flex: none; }
.petyc-dcb-ok { display: block; font-weight: 800; margin-bottom: 6px; }
.petyc-dcb-codigo {
  flex: 1; min-width: 0; overflow-x: auto; white-space: nowrap;
  background: #fff; border: 1px solid #d8ecdf; border-radius: 8px;
  padding: 7px 10px; font-weight: 800; font-size: 13px; color: var(--petyc-teal-ink);
}
.petyc-dcb-cupom small, .js-petyc-dcb-cupom small { display: block; margin-top: 6px; color: #7a8f86; font-weight: 700; font-size: 11.5px; }
.petyc-dcb-msg { display: block; color: #c25f5f; font-weight: 700; }
.petyc-dcb-msg:empty { display: none; }
