/* styles.css */

/* =========================
   TOKENS / DESIGN SYSTEM
========================= */
:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #1f1f23;
  --muted: #6b6b75;

  --brand: #CF035C;
  --brand-2: #e85f8e;
  --brand-hero: #cf035c;
  --brand-soft: #f8d9e3;
  --brand-soft-2: #fdebf1;

  --border: #ece7ee;
  --shadow: 0 6px 18px rgba(17, 17, 26, .08);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --container: 1200px;
  --font-family-title: "Font/Family/Titile", "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-size-h2: 30px;
  --font-size-h3: 18px;
}

/* =========================
   BASE
========================= */
@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Inter Medium"), local("Inter-Medium"),
       url("fonts/Inter-Medium.woff2") format("woff2"),
       url("fonts/Inter-Medium.woff") format("woff");
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0;
  leading-trim: normal;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
button, input, select{ font: inherit; }


.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.hero{
  background: var(--brand-hero);
  color: #fff;
  padding: 64px 0 64px;
  position: relative;
  overflow: hidden;
  margin-top: 64px; /* offset fixed header */
}

@media (min-width: 1024px){
  .hero{
    margin-top: 97px;
  }
}

@media (min-width: 1367px){
  .hero{
    margin-top: 130px;
  }
}

.hero__container{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.hero__container > *{
  width: 100%;
}

.hero__branding{
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
}

.hero__logo img{
  display: block;
  max-width: 128px;
  height: auto;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.catalog{
  overflow: auto;
}

.page{ padding: 36px 0 48px; }

/* =========================
  HERO
========================= */
.hero__logo{
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero__tagline{
  width: 100%;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__title{
  margin: 0 !important;
  font-family: var(--font-family-title) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: var(--font-size-h2) !important;
  line-height: 36px !important;
  letter-spacing: -0.0075em !important;
  leading-trim: normal !important;
  width: 100% !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero__description{
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, .92);
}

.hero-search{
  width: 100%;
}

.hero-search__shell{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px 8px 16px;
}

.hero-search__icon{
  color: rgba(0, 0, 0, .35);
  display: inline-flex;
}
.hero-search__icon svg{
  width: 18px;
  height: 18px;
}

.hero-search__control{
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  min-width: 0;
  padding: 6px 4px;
}
.hero-search__control::placeholder{
  color: #a3a3b0;
}

.hero-search__clear{
  border: 0;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.hero-search__clear:hover,
.hero-search__clear:focus-visible{
  background: rgba(255, 255, 255, .35);
  color: #fff;
}
.hero-search__clear[hidden]{
  display: none;
}

.hero-search__button{
  width: 79px;
  height: 32px;
  min-width: 0;
  padding: 4px 16px;
}

.hero-search__panel{
  margin-top: 12px;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.hero-search__panel[hidden]{
  display: none;
}

.hero-search__status{
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero-search__results{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-search__results-item{
  margin: 0;
}

.hero-search__results-item--empty{
  font-size: 13px;
  color: var(--muted);
}

.hero-search__result{
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background .2s ease, color .2s ease;
}
.hero-search__result:focus-visible,
.hero-search__result:hover{
  background: rgba(207, 3, 92, .08);
}

.hero-search__result-name{
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.hero-search__result-meta{
  font-size: 13px;
  color: var(--muted);
}

.onde-encontrar-header{
  background-color: #CF035C;
}

.onde-encontrar-header:hover{
  background-color: #CF035C !important;
}

@media (max-width: 640px){
  .hero{
    padding: 40px 0 56px;
    margin-top: 64px;
  }

  .hero__container{
    align-items: stretch;
    text-align: left;
  }

  /* Mobile: título sem degradê, texto branco sólido */
  .hero__title{
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  /* Busca contextual fixa na tela (mobile) */
  .hero-search{
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .hero-search__shell{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .hero-search__icon{
    flex: 0 0 auto;
  }

  .hero-search__control{
    flex: 1 1 auto;
  }

  .hero-search__clear{
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero-search__button{
    width: 100%;
    flex: 1 0 100%;
  }

  .hero-search__panel{
    padding: 12px;
  }

  /* Mobile: remover meta dos resultados de busca (apenas nome) */
  .hero-search__result-meta{
    display: none;
  }
}

/* =========================
   LAYOUT
========================= */
.catalog-layout{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

/* Barra de ações mobile (botão de filtros) */
.catalog-mobile-bar{
  display: none;
}

.catalog-mobile-bar__filters{
  border: 1px solid var(--brand);
  background: #ffffff;
  color: var(--brand);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.catalog-mobile-bar__filters::before{
  content: "☰";
  font-size: 14px;
}

/* Responsivo: sidebar sobe e vira “stack” */
@media (max-width: 980px){
  .catalog-layout{
    grid-template-columns: 1fr;
  }

  .catalog-mobile-bar{
    display: flex;
    justify-content: stretch;
    margin: 16px 0 12px;
  }

  .catalog-mobile-bar__filters{
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   FILTERS (SIDEBAR)
========================= */
.filters{
  position: sticky;
  top: 18px;
  background: var(--surface);
}

/* Nessa página não precisamos do header fixo; volta a ser estático */
.header.fixed{
  position: static !important;
  top: auto !important;
}

.filters__section{
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.filters__title{
  margin: 0 0 10px !important;
  font-family: var(--font-family-title) !important;
  font-weight: 500 !important;
  font-style: normal !important;
  font-size: var(--font-size-h3) !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  leading-trim: normal !important;
}

.filters__mobile-header,
.filters__mobile-actions{
  display: none;
}

/* brand chip */
.brand-chip{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 0;
  background: #ececf2;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
  transition: transform .2s ease;
  color: #4a4a52;
}

.brand-chip:hover{ transform: translateY(-2px); }

.brand-chip--active{
  background: var(--brand);
  color: #fff;
  
}

.brand-chip__logo{
  
  min-width: 0;
}

.brand-chip__logo img{
  display: block;
  width: 100%;
  height: auto;
}

.brand-chip__text{
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}

/* icon button */
.icon-btn{
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  aspect-ratio: 1 / 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover{ background: #f5f5f8; color: #444; }

.brand-chip .icon-btn{
  margin-left: auto;
  background: rgba(0, 0, 0, .08);
  color: inherit;
}

.brand-chip .icon-btn:hover{
  background: rgba(0, 0, 0, .12);
  color: inherit;
}

.brand-chip--active .icon-btn{
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.brand-chip--active .icon-btn:hover{
  background: rgba(255, 255, 255, .3);
  color: #fff;
}

@media (max-width: 980px){
  /* Filtros viram modal tipo bottom-sheet no mobile */
  .filters{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 60;
    display: none;
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
  }

  .filters--open{
    display: flex;
  }

  .filters__panel{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    max-height: 85vh;
    margin: 0;
    background: var(--surface);
    border-radius: 18px 18px 0 0;
    padding: 16px 20px 20px;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .25s ease-out;
  }

  .filters--open .filters__panel{
    transform: translateY(0);
  }

  .filters__mobile-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -16px -20px 12px;
    padding: 12px 16px;
    background: #ffe2ec;
    border-radius: 18px 18px 0 0;
    border-bottom: 1px solid #f3c3d5;
  }

  .filters__mobile-title{
    margin: 0;
    font-size: 16px !important;
    font-weight: 600;
    color: var(--brand);
  }

  .filters__mobile-close{
    border: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand);
  }

  .filters__mobile-close:hover,
  .filters__mobile-close:focus-visible{
    background: rgba(255, 255, 255, .6);
  }

  .filters__mobile-actions{
    position: sticky;
    bottom: -16px;
    margin: 16px -20px -20px;
    padding: 12px 20px 20px;
    background: #ffffff;
    display: flex;
    gap: 12px;
  }

  .filters__mobile-actions .btn{
    width: auto;
    flex: 1 1 0;
  }

  /* No mobile, escondemos filtros de Princípio Ativo e Forma Farmacêutica */
  .filters__section--active-ingredient,
  .filters__section--form{
    display: none;
  }

  /* No mobile, ocultamos a barra de ordenação e vamos direto para a lista */
  .catalog__bar{
    display: none;
  }
}

/* checklist */
.checklist{
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
}

.check__input{
  /* escondido visualmente, mas acessível */
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check__box{
  width: 20px;
  height: 20px;
  border: 1px solid #dcd7e1;
  border-radius: 2px;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: background .15s ease, border-color .15s ease;
}

.check__input:checked + .check__box{
  border-color: var(--brand);
  background: var(--brand);
}
.check__input:checked + .check__box::after{
  content: "";
  position: absolute;
  inset: 4px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3.5 3.5L14 1' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.check__label{
  line-height: 1.2;
}

/* inputs */
.field{ display: block; }
.input{
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}
.input::placeholder{ color: #9a9aa4; }

/* =========================
   CATALOG BAR (SORT)
========================= */
.catalog__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catalog__bar-spacer{ min-height: 1px; }

.sort{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.sort__label{
  font-size: 13px;
  color: var(--muted);
}

.select{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 44px;
  border-radius: 6px;
  background: var(--brand);
  isolation: isolate;
}
.select:focus-within{
  background: var(--brand);
}
.select::before{
  content: "";
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  background: url("/img/arrow-up-down.svg") no-repeat center;
  pointer-events: none;
}
.select__control{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 44px;
  padding: 0 60px 0 18px;
  border: 0;
  border-radius: 999px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: inherit;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-align-last: center;
  cursor: pointer;
}
.select__control:focus{
  outline: none;
}
.select__icon{
  position: absolute;
  right: 20px;
  pointer-events: none;
  color: #fff;
  font-size: 14px;
}

.select--classic{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px 0 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}
.select--classic:focus-within{
  background: #fff;
  border-color: var(--brand);
}
.select--classic::before{
  display: none;
}
.select--classic .select__control{
  flex: 1;
  width: 100%;
  height: 44px;
  border-radius: inherit;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  text-align: left;
  text-align-last: left;
  padding: 0 8px 0 16px;
  cursor: text;
  display: block;
  min-width: 0;
}
.select--classic .select__control::placeholder{
  color: var(--muted);
}

/* Remove o "X" nativo do input[type="search"] para não duplicar com o botão de limpar custom */
.select--classic .select__control[type="search"]::-webkit-search-cancel-button,
.select--classic .select__control[type="search"]::-webkit-search-decoration,
.select--classic .select__control[type="search"]::-webkit-search-results-button,
.select--classic .select__control[type="search"]::-webkit-search-results-decoration{
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.select--classic .select__control[type="search"]::-ms-clear,
.select--classic .select__control[type="search"]::-ms-reveal{
  display: none;
  width: 0;
  height: 0;
}
.select--classic .select__icon{
  color: var(--muted);
  pointer-events: auto;
  position: static;
  transform: none;
}
.select__icon--button{
  background: transparent !important;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  height: 44px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select__icon--clear{
  color: var(--brand);
}
.select__icon--button:focus-visible{
  outline: 2px solid var(--brand);
  border-radius: 999px;
}
.select-dropdown{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 240px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 6px 0;
  overflow-y: auto;
  z-index: 15;
}
.select-dropdown[hidden]{
  display: none;
}
.select-dropdown__option{
  width: 100%;
  padding: 10px 18px;
  border: 0;
  background: transparent !important;
  text-align: left;
  font: inherit;
  color: var(--text);
  cursor: pointer;
}
.select-dropdown__option:hover,
.select-dropdown__option:focus-visible,
.select-dropdown__option.is-active{
  background: #fdebf1 !important;
  color: var(--brand) !important;
}

[data-form-filter] button:hover,
[data-form-filter] button:focus-visible{
  background-color: transparent !important;
}

@media (max-width: 980px){
  .filters{
    position: static;
  }
}

/* =========================
   GRID + PRODUCT CARD
========================= */
.grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid__empty{
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 0;
  color: var(--muted);
}

@keyframes skeletonShimmer{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(100%); }
}

.product-card--skeleton{
  background: #f6f6fa;
  border: 1px solid rgba(194, 24, 91, .06);
  cursor: default;
}

.product-card--skeleton .product-card__actions{
  width: 100%;
}

.skeleton-block{
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .65);
  border-radius: 12px;
  min-height: 12px;
  isolation: isolate;
}

.skeleton-block::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .8);
  transform: translateX(-100%);
  will-change: transform;
  animation: skeletonShimmer 1.2s ease-in-out infinite;
}

.skeleton-block--title{
  height: 24px;
  width: 85%;
  margin: 0 auto;
}

.skeleton-block--icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin: 0 auto;
}

.skeleton-block--meta{
  height: 16px;
  width: 70%;
  margin: 0 auto;
}

.skeleton-block--pill{
  height: 42px;
  border-radius: 999px;
}

.skeleton-block--link{
  height: 12px;
  width: 60%;
  margin: 0 auto;
  border-radius: 999px;
}

.skeleton-block--brand{
  height: 30px;
  width: calc(100% + 40px);
  margin: -24px -20px 14px;
  border-radius: 0;
}

@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr; }
}



.product-card{
  --card-surface: #F8D5DF;
  --card-border: rgba(194, 24, 91, .2);
  --card-icon-color: rgba(31,31,35,.55);
  --card-brand-bar: #CF035C;
  --card-brand-text: #fff;
  --card-button-bg: #CF035C;
  --card-link-color: #CF035C;
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  border-radius: 0;
  padding: 24px 20px 22px;
  transition: transform .15s ease;
  min-height: 228px;
  display: grid;
  gap: 12px;
  text-align: center;
  overflow: hidden;
}

.product-card:hover{
  transform: translateY(-2px);
}

.product-card__brand{
  margin: -24px -20px 12px;
  padding: 4px 20px;
  background: var(--card-brand-bar);
  color: var(--card-brand-text);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 30px;
  min-height: 30px;
}

.product-card__brand *{
  border-radius: 0 !important;
}

.product-card__brand span{
  font-family: var(--font-family-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__brand img{
  max-width: 120px;
  width: auto;
  height: 100%;
  max-height: 100%;
  display: block;
}

@media (max-width: 480px){
  .product-card__brand img{
    max-width: 100%;
    height: auto;
  }
}

.product-card--brand-ache .product-card__brand img{
  width: 88px;
  max-width: 88px;
  height: auto;
}

.product-card--brand-biosintetica .product-card__brand img{
  width: 88px;
  max-width: 88px;
  height: auto;
}

.product-card--brand-ache{
  --card-surface: #F8D5DF;
  --card-border: rgba(90, 71, 212, .28);
  --card-brand-bar: #CF035C;
  --card-brand-text: #fff;
  --card-icon-color: rgba(83, 65, 166, .7);
  --card-button-bg: #CF035C;
  --card-link-color: #CF035C;
}

.product-card--brand-biosintetica{
  --card-surface: #F8D5DF;
  --card-border: rgba(90, 71, 212, .28);
  --card-brand-bar: #004A99;
  --card-brand-text: #fff;
  --card-icon-color: rgba(83, 65, 166, .7);
  --card-button-bg: #CF035C;
  --card-link-color: #CF035C;
}

.product-card__title{
  margin: 4px 0 0 !important;
  font-family: var(--font-family-title) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: 20px !important;
  line-height: 26px !important;
  letter-spacing: 0 !important;
  leading-trim: normal !important;
}

.product-card__icon{
  width: 40px;
  height: 30px;
  margin: 0 auto;
  color: var(--card-icon-color);
}
.product-card__icon svg{ width: 100%; height: 100%; }

.product-card__meta{
  margin: 0;
  font-size: 14px;
  color: rgba(31,31,35,.75);
}

.product-card__actions{
  margin-top: 10px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.product-card__actions .btn{
  width: 100%;
  min-width: 0;
  border-radius: 0;
  padding: 10px 20px;
  height: 40px;
}

.product-card .btn--primary{
  width: 100%;
  background: var(--card-button-bg);
  color: #fff;
}

.product-card .btn--primary:hover{ filter: brightness(1.03); }
.product-card .btn--primary:active{ transform: translateY(1px); }

.product-card__actions .link{
  font-size: 13px;
  color: var(--card-link-color);
  transition: color .2s ease;
}
.product-card__actions .link:hover{ text-decoration: underline; }

/* =========================
   BUTTONS / LINKS (COMPONENTS)
========================= */
.btn{
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  padding: 4px 16px;
  font-weight: 800;
  letter-spacing: .2px;
  opacity: 1;
}

.btn--primary{
  background: var(--brand);
  color: #fff;
 
  font-weight: 500;
  font-style: Medium;
  font-size: Font/Size/small;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
}
.btn--primary:hover{ filter: brightness(1.03); }
.btn--primary:active{ transform: translateY(1px); }

.btn--ghost{
  background: #ffffff;
  color: var(--brand);
  border: 1px solid var(--brand-soft-2);
}
.btn--ghost:hover{
  background: #fff7fb;
}
.btn--ghost:active{
  transform: translateY(1px);
}

.link{
  font-size: 12px;
  color: var(--brand);
  font-weight: 700;
}
.link:hover{ text-decoration: underline; }

/* Botão interno "Onde Encontrar" dentro dos cards/produtos sem borda arredondada */
.eans-container .onde-encontrar.button{
  border-radius: 0 !important;
}

/* =========================
   PAGINATION
========================= */
.pagination{
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: auto max-content auto;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 12px 26px;
  border-radius: 999px;
  background: #fff8f5;

  max-height: 55px;
  max-width: 436px;
  width: 100%;
}

.pagination__pages{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pager-btn{
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  color: #6d615a !important;
  font-size: 20px !important;
  transition: color .2s ease;
}
.pager-btn:hover{ color: #4c433e; }
.pager-btn[disabled]{
  opacity: .4;
  cursor: not-allowed;
}

.pager__item{
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 28px !important;
  aspect-ratio: 1 / 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.pager__item:hover{
  color: #a51148;
}

.pager__item[disabled]{
  pointer-events: none;
}

.pager__item--active{
  background: var(--brand);
  color: #fff;
  border: 0;
}

.pager__dots{
  color: #9a9aa4;
  padding: 0 2px;
}

.rodape-menu img {
    padding: 0 !important;
}