/** Shopify CDN: Minification failed

Line 251:0 Unexpected "<"
Line 261:0 Unexpected "<"

**/
/* ===== Personal Prime – ajustes visuais no Dawn ===== */

/* 1) TÍTULOS COM LINHA E “PONTO” */
.section-title, .title, .h2, h2,
.collection-list__title, .featured-collection__title {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title:after, .title:after, .h2:after, h2:after,
.collection-list__title:after, .featured-collection__title:after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 120px;
  background: #F15A24; /* laranja */
}
.section-title:before, .title:before, .h2:before, h2:before,
.collection-list__title:before, .featured-collection__title:before {
  content: "";
  position: absolute;
  left: -10px; bottom: -2px;
  width: 8px; height: 8px;
  background: #E53935; /* pontinho vermelho */
  border-radius: 50%;
}

/* 2) CARDS DE PRODUTO – borda suave + hover leve */
.card, .card--standard, .grid__item .card-wrapper {
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  overflow: hidden;
  background: #fff;
}
.card:hover { 
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transform: translateY(-1px);
  transition: box-shadow .2s ease, transform .2s ease;
}

/* 3) BOTÕES ARREDONDADOS (inclusive comprar/quick add) */
.button, .button--primary, .quick-add__submit, button[name="add"] {
  border-radius: 28px;
  padding: 12px 18px;
  background: #F15A24 !important;
  color: #fff !important;
  border: 0;
}
.button:hover, .quick-add__submit:hover { filter: brightness(.92); }

/* 4) FAIXA LARANJA SOB O CABEÇALHO */
.header-wrapper { border-bottom: 4px solid #F15A24; }

/* 5) BUSCA ARREDONDADA */
.search__input, input[type="search"] { border-radius: 24px; }

/* 6) INSTAGRAM (apps comuns) – cantos arredondados */
.instafeed-container img, .gsc-instagram-feed img { border-radius: 12px; }

/* 7) RODAPÉ ESCURO + FAIXA AMARELA */
footer.footer {
  background: #0B0B0B;
  color: #fff;
  border-top: 3px solid #F9B233; /* amarelo PP */
}
.footer a { color: #fff; opacity: .9; }
.footer a:hover { opacity: 1; }

/* 8) PREÇO – deixar “regular” um pouco mais discreto */
.price .unit-price,
.price .price__regular .price-item--regular { opacity: .9; }

/* =======================
   PP — BARRA DE BUSCA
   ======================= */
.pp-search-wrap { background: transparent; }
.pp-search-container {
  width: 100%;
  display: flex; justify-content: center; align-items: center;
  padding: 8px 16px 0; /* sem “faixa”, fica colado no header */
}
.pp-search-form {
  display: flex; align-items: center;
  width: 100%;
  max-width: 700px;          /* você pode ajustar no schema */
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
}
.pp-search-input {
  width: 100%;
  padding: 12px 18px;
  font-size: 15px;
  line-height: 1;
  border: 0; outline: 0;
  background: #fff; color: #111;
  border-radius: 999px 0 0 999px;
}
.pp-search-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 18px;
  height: 46px;
  background: #F9B233;      /* amarelo Personal Prime */
  color: #fff;
  border: 0; cursor: pointer;
  border-radius: 0 999px 999px 0;
  font-weight: 600;
}
.pp-search-btn:hover { filter: brightness(.95); }
.pp-search-btn-icon { font-size: 16px; line-height: 1; }

/* Responsivo: não quebra em mobile */
@media (max-width: 640px) {
  .pp-search-container { padding: 6px 12px 0; }
  .pp-search-form { max-width: 100%; }
  .pp-search-btn { height: 42px; padding: 0 14px; }
  .pp-search-input { font-size: 14px; padding: 11px 14px; }
}






/* PP — Camadas corretas */
.section-header, .header-wrapper, .header { position: relative; z-index: 1000; overflow: visible; }
.header__inline-menu { position: relative; z-index: 1200; }
.pp-search-wrap { position: relative; z-index: 10; } /* busca fica abaixo do menu */

/* PP — Submenu "Categorias" sempre montado, abre suavemente no hover */
@media (min-width: 990px){
  summary#HeaderMenu-categorias + .header__submenu{
    position: absolute; left: 0; right: 0; top: 100%;
    display: block !important; /* força renderizar mesmo se o tema esconder */
    margin: 0; padding: 14px 0;
    background: #0B0B0B; border-top: 2px solid #F15A24;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .12s ease;
    z-index: 2000; /* acima da busca */
  }

  /* “ponte” anti-gap: não perde o hover ao descer o mouse */
  summary#HeaderMenu-categorias{ position: relative; }
  summary#HeaderMenu-categorias::after{
    content: ""; position: absolute; left: 0; right: 0; height: 14px; bottom: -14px;
    background: transparent; pointer-events: auto;
  }

  /* abre quando o details ganha a classe/atributo (setados pelo JS) */
  details.pp-open > .header__submenu,
  details[open] > .header__submenu,
  summary#HeaderMenu-categorias:hover + .header__submenu,
  summary#HeaderMenu-categorias + .header__submenu:hover{
    opacity: 1; visibility: visible; pointer-events: auto;
  }

  /* Links confortáveis e com hover PP */
  summary#HeaderMenu-categorias + .header__submenu a{
    color: #fff; display: block; padding: 9px 18px; text-decoration: none; line-height: 1.2;
  }
  summary#HeaderMenu-categorias + .header__submenu a:hover{ color: #F9B233; }

  /* (Opcional) 2 colunas para ficar mais curto */
  summary#HeaderMenu-categorias + .header__submenu{
    column-count: 2; column-gap: 28px; padding: 18px 24px;
  }
  summary#HeaderMenu-categorias + .header__submenu li{ break-inside: avoid; }
}
/* ===== Camadas certas: menu por cima, busca por baixo ===== */
.section-header, .header-wrapper, .header { position:relative; z-index:5000; overflow:visible; }
.header__inline-menu { position:relative; z-index:6000; }  /* links do topo acima da busca */
.pp-search-wrap { position:relative; z-index:1; }          /* faixa da busca por baixo */

/* ===== Desktop (>=990px): só "Categorias" em hover, vertical e compacta ===== */
@media (min-width: 990px){

  /* Garantir que o <details> de "Categorias" seja o referencial do dropdown */
  details:has(> summary#HeaderMenu-categorias) { position: relative; }

  /* Ponte anti-gap: não perder hover ao descer o mouse */
  summary#HeaderMenu-categorias{ position: relative; }
  summary#HeaderMenu-categorias::after{
    content:"";
    position:absolute; left:0; right:0; bottom:-12px; height:12px;
    background:transparent; pointer-events:auto;
  }

  /* Submenu padrão do Dawn (UL .header__submenu) — layout vertical, “caixa” elegante */
  summary#HeaderMenu-categorias + .header__submenu{
    position:absolute; left:0; right:auto; top:100%;
    display:block !important;              /* não depende do open do details */
    min-width: 260px;                      /* caixa compacta */
    max-width: 360px;                      /* controla a largura */
    background:#0B0B0B;                    /* fundo preto PP */
    border:1px solid rgba(255,255,255,.08);
    border-top:2px solid #F15A24;          /* barra laranja PP */
    border-radius:12px;
    box-shadow:0 14px 32px rgba(0,0,0,.35);
    padding:10px;                          /* respiro interno */
    margin:0;
    z-index:7000;                          /* acima de tudo (busca, etc.) */
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .12s ease;
  }

  /* Mostrar no hover — sem clique */
  details.pp-open > .header__submenu,
  details[open] > .header__submenu,
  summary#HeaderMenu-categorias:hover + .header__submenu,
  summary#HeaderMenu-categorias + .header__submenu:hover{
    opacity:1; visibility:visible; pointer-events:auto;
  }

  /* Lista vertical limpa */
  summary#HeaderMenu-categorias + .header__submenu li{
    list-style:none; margin:0; padding:0;
  }
  summary#HeaderMenu-categorias + .header__submenu a{
    display:block; text-decoration:none;
    color:#fff; padding:10px 12px; line-height:1.25;
    border-radius:8px;
  }
  summary#HeaderMenu-categorias + .header__submenu a:hover{
    background: rgba(255,255,255,.06);
    color:#F9B233;
  }

  /* Tira qualquer grid/coluna anterior */
  summary#HeaderMenu-categorias + .header__submenu { column-count: initial; display:block !important; }
}

/* Segurança: nada corta o dropdown mesmo se algum tema setar overflow */
.header, .section-header, .header-wrapper, .header__inline-menu { overflow: visible !important; }









<style>
  #pp-cart-icon { position: relative; }
  #pp-cart-icon .pp-cart-count-bubble{
    position: absolute; top: -6px; right: -8px;
    min-width: 18px; height: 18px; padding: 0 5px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 999px; font-size: 11px; font-weight: 700; line-height: 1;
    background: #F59E0B; color: #fff;
  }
  #pp-cart-icon .pp-cart-count-bubble.hidden{ display: none; }
</style>





/* PP — esconder botão nativo do checkout no pop-up */
.cart-notification__links #cart-notification-form {
  display: none !important;
}

/* opcional: espaçamento mais limpo entre os botões restantes */
.cart-notification__links .button.button--full-width + .button.button--full-width {
  margin-top: 8px;
}
