/* ═══════════════════════════════════════════
   JURÔ — home.css
   Estilos específicos da página inicial.
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600&display=swap');

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  height: var(--hero-h);
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.hero-img-wrap { position: relative; overflow: hidden; display: flex; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; will-change: transform; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: rgba(79, 19, 36, 0.45);
  mix-blend-mode: color;
}

.hero-float-badge {
  position: absolute; bottom: clamp(24px,4vh,48px); left: 40px;
 background: #3c101c; backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  padding: 16px 22px; border-radius: 0; font-size: 12px; letter-spacing: .06em;
  animation: floatBadge 4s ease-in-out infinite; z-index: 2;
}
.hero-float-badge strong { display: block; font-family: var(--fn-d); font-size: 20px; letter-spacing: .02em; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-content {
  background: var(--rose);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vh,80px) clamp(40px,5vw,80px) clamp(32px,5vh,64px) clamp(32px,4vw,64px);
  position: relative; overflow: hidden;
}
.hero-content::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(196,150,138,0.9), transparent),
    url('../img/fundo-banner.png');
  background-repeat: repeat;
  background-size: 1000px auto;
  pointer-events: none; z-index: 0;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.hero-content::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,150,138,.0) 0%, rgba(79,19,36,.15) 100%);
  pointer-events: none; z-index: 1;
}
.hero-content > * { position: relative; z-index: 2; }

.hero-loader {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: rgba(15, 12, 12, .6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--fn-head, 'BritannicBQ', sans-serif);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: 1;
  transition: opacity .5s ease, visibility .5s ease;
  visibility: visible;
}
.hero-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-loader-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid rgba(255,255,255,.22);
  border-top-color: rgba(255,255,255,.95);
  border-radius: 50%;
  animation: heroSpin 1s linear infinite;
}

@keyframes heroSpin {
  to { transform: rotate(360deg); }
}

.hero-eyebrow {
  font-size: 10px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: clamp(12px,2vh,22px);
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp .8s .3s ease forwards;
  font-family: var(--fn-head); font-weight: 500;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: rgba(255,255,255,.6); }

.hero-title {
    font-family: var(--fn-d);
    font-weight: 900;
    font-style: normal;
    font-size: clamp(41px, 3.6vw, 100px);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: clamp(16px, 2.5vh, 30px);
    opacity: 0;
    animation: fadeUp .9s .5s ease forwards;
}
.hero-title span   { display: block; }
.hero-title .ht-bold { font-weight: 900; font-style: normal; }
.hero-title .ht-indent { padding-left: .18em; }
.hero-title em { font-style: italic; color: rgba(255,255,255,.72); }

.hero-desc {
    font-size: 24px;
    color: rgba(255, 255, 255, .85);
    max-width: 390px;
    margin-bottom: clamp(24px, 3.5vh, 44px);
    line-height: 1.1;
    opacity: 0;
    animation: fadeUp .8s .7s ease forwards;
    font-family: var(--fn-d);
    font-weight: 400;
    letter-spacing: .03em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .9s ease forwards; }

.hero-scroll-hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  right: clamp(32px, 4vw, 64px);
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.45); z-index: 2;
}
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.8); animation: scrollDrop 2s ease-in-out infinite; }

.hero-watermark {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 380px;
    height: 380px;
    color: rgba(255, 255, 255, .08);
    pointer-events: none;
    user-select: none;
    animation: pulseWm 4s ease-in-out infinite;
    transform-origin: center center;
    z-index: 1;
    display: none;
}

/* A definição da animação que estava faltando */
@keyframes pulseWm {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Aumenta o tamanho em 5% no meio da animação */
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scrollDrop  { 0% { top: -100%; } 100% { top: 200%; } }
@keyframes fadeUp      { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rotateSlow  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ══ HERO GALLERY — accordion 3 painéis ══ */
.hero-gallery {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 100%;
}

/* Cada painel */
.hg-panel {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    flex 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease;
}

/* Painel central ligeiramente maior no estado default */
.hg-featured { flex: 1.15; }

/* Accordion: ao hover na galeria, painel ativo expande, outros encolhem */
.hero-gallery:hover .hg-panel          { flex: 0.65; }
.hero-gallery:hover .hg-panel:hover    { flex: 1.7; }
.hero-gallery:hover .hg-featured       { flex: 0.65; }
.hero-gallery:hover .hg-featured:hover { flex: 1.7; }

/* Imagem dentro do painel */
.hg-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.55s ease;
  will-change: transform;
      margin-top: -1px !important;
}
.hg-panel:hover img { transform: scale(1.07); }

/* Não-hoveredos ficam levemente escurecidos */
.hero-gallery:hover .hg-panel:not(:hover) img {
  filter: brightness(0.72) saturate(0.8);
}

/* Overlay degradê */
.hg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(79,19,36,0.08) 0%,
      rgba(20,5,10,0.55) 75%,
      rgba(20,5,10,0.80) 100%);
  transition: background 0.55s ease, opacity 0.55s ease;
}
.hg-panel:hover .hg-overlay {
  background:
    linear-gradient(to bottom,
      rgba(79,19,36,0.04) 0%,
      rgba(20,5,10,0.30) 65%,
      rgba(20,5,10,0.65) 100%);
}

/* Linha vertical separadora entre painéis */
.hg-line {
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.12);
  z-index: 3;
  pointer-events: none;
}
.hg-panel:last-child .hg-line { display: none; }

/* Label e número no rodapé de cada painel */
.hg-panel-info {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.hg-panel:hover .hg-panel-info {
  opacity: 1;
  transform: translateY(0);
}

.hg-num {
  font-family: var(--fn-head);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(219,187,178,0.7);
  text-transform: uppercase;
}
.hg-label {
  font-family: var(--fn-d);
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Reposicionar badge flutuante dentro da galeria */
.hero-gallery .hero-float-badge {
  position: absolute;
  bottom: clamp(83px,4vh,48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

/* Shimmer sutil no painel ativo */
.hg-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.hg-panel:hover::before {
  opacity: 1;
  animation: hgShimmer 1.2s ease forwards;
}
@keyframes hgShimmer {
  from { left: -60%; opacity: 1; }
  to   { left: 140%; opacity: 0; }
}

@media (max-width: 768px) {
  .hero-gallery {
    flex-direction: row;
    height: 55vw;
    min-height: 240px;
  }
  .hg-panel-info { display: none; }
  .hero-gallery .hero-float-badge {
    font-size: 10px;
    padding: 10px 14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .hero-gallery:hover .hg-panel          { flex: 0.7; }
  .hero-gallery:hover .hg-panel:hover    { flex: 1.6; }
}

/* ── MARQUEE ── */
.marquee-strip { background: #3b0e1a !important; overflow: hidden; position: relative; }
.marquee-strip::before, .marquee-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-strip::before { left: 0; background: linear-gradient(to right, #3b0e1a, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, #3b0e1a, transparent); }
.marquee-inner { display: flex; animation: marquee 28s linear infinite; width: max-content; padding: 13px 0; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--cream); padding: 0 40px; display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,.12); font-family: var(--fn-head); font-weight: 500; }
.marquee-item i { color: var(--rose-lt); font-size: 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CATEGORIES ── */
.cats-section { padding: 110px 0; background: #faf8f6 !important; }
.cats-mosaic { 
  display: grid; 
  gap: 12px; margin-top: 60px; 
}

@media (min-width: 992px) {
  .cats-mosaic {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cats-mosaic .cat-tile:first-child { grid-row: 1 / 2; min-height: 480px; }
  .cats-mosaic .cat-tile:not(:first-child) { min-height: 480px; }
}

.cat-tile { position: relative; overflow: hidden; border-radius: 00px;  }
.cat-tile-main { position: absolute; inset: 0; display: block; color: inherit; text-decoration: none; z-index: 1; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s cubic-bezier(.4,0,.2,1); }
.cat-tile:hover img { transform: scale(1.08); }
.cat-veil { position: absolute; inset: 0; background: linear-gradient(175deg, transparent 30%, rgb(0 0 0 / 82%) 100%); transition: background var(--tr-slow); }
.cat-tile:hover .cat-veil { background: linear-gradient(175deg, transparent 30%, rgb(0 0 0 / 82%) 100%) }
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 30px 76px; }
.cat-btn-buy { position: absolute; left: 30px; bottom: 22px; z-index: 2; padding: 12px 22px; font-size: 9px; letter-spacing: .18em; }
.cat-name-txt { font-family: var(--fn-d); font-size: 32px; color: var(--white); letter-spacing: -.01em; font-weight: 800; }
.cat-cnt   { font-size: 10px; letter-spacing: .22em; color: rgba(219,187,178,.85); text-transform: uppercase; margin-top: 3px; font-family: var(--fn-head); }
.cat-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); margin-top: 14px; opacity: 0; transform: translateY(8px); transition: all var(--tr); font-family: var(--fn-head); }
.cat-tile:hover .cat-arrow { opacity: 1; transform: translateY(0); }
.cat-tile::after { content: ''; position: absolute; inset: 0; border-radius: 00px; border: 0px solid rgba(219,187,178,0); transition: border var(--tr); }
.cat-tile:hover::after { border: 1.5px solid rgba(219,187,178,.35); }

/* ── BUNDLES ── */
.bundles-section { padding: 110px 0; background: var(--cream); position: relative; overflow: hidden; }
.bundles-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(196,150,138,.18) 0%, transparent 70%); pointer-events: none; }
.bundle-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.bc { background: var(--white); border-radius: 0; overflow: hidden; border: 1px solid rgba(237,232,224,.8); transition: transform var(--tr), box-shadow var(--tr); position: relative; }
.bc:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(79,19,36,.14); }
.bc-imgs { height: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; overflow: hidden; }
.bc-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bc:hover .bc-imgs img { transform: scale(1.06); }
.bc-tag   { position: absolute; top: 14px; left: 14px; background: var(--burg); color: var(--white); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; padding: 5px 13px; border-radius: 0; z-index: 1; }
.bc-body  { padding: 26px; }
.bc-title { font-family: var(--fn-d); font-size: 26px; color: var(--burg); margin-bottom: 8px; font-weight: 800; letter-spacing: -.01em; }
.bc-desc  { font-size: 14px; color: #7A6658; line-height: 1.65; margin-bottom: 18px; font-family: var(--fn-b); }
.bc-timer { display: flex; gap: 8px; margin-bottom: 18px; align-items: center; }
.timer-lbl   { font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; color: #A08070; flex-shrink: 0; }
.timer-units { display: flex; gap: 4px; }
.tu     { background: var(--burg); color: var(--cream); padding: 4px 7px; border-radius: 0; font-size: 13px; font-family: var(--fn-d); min-width: 32px; text-align: center; }
.tu-sep { color: var(--burg); font-size: 14px; align-self: center; }
.bc-price { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 14px; }
.bc-price .p-old  { font-size: 11px !important; font-weight: 400 !important; color: #b5a49c !important; text-decoration: line-through; }
.bc-price .p-now  { font-size: 13px !important; font-weight: 500 !important; color: #7a6658 !important; letter-spacing: 0.01em; }
.bc-price .p-save { font-size: 10px !important; font-weight: 500 !important; background: transparent !important; color: #a89890 !important; border: 1px solid #d4c4bc; border-radius: 0; padding: 1px 5px; }

/* ── PREÇOS GERAIS DISCRETOS ── */
.pc-price,
.prod-price,
[class*="price"]:not(.bc-price):not(.ci-price) {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #9e8f87 !important;
  letter-spacing: 0.02em;
}

.pc .pc-price,
.pc-price {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #a89890 !important;
  margin-top: 4px;
}

.ci-price {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #9e8f87 !important;
}
.wl-price {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #b5a49c !important;
}
#dTotal {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #5a4a42 !important;
}

/* ── PRODUCTS ── */
.products-section { padding: 110px 0; background: #f4f0ec !important; }
.prod-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; position: relative; }
.fp { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; padding: 9px 20px; border-radius: 0; border: 1px solid var(--g200); background: transparent;  transition: all var(--tr); color: var(--ink); font-family: var(--fn-head); font-weight: 500; position: relative; }
.fp:hover, .fp.active { background: var(--burg); color: var(--cream); border-color: var(--burg); }
.fp.active::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 18px; height: 2px; background: var(--white); border-radius: 0; }

.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; position: relative; }

/* Card enter/exit animation */
.pc {  position: relative; transition: opacity .35s ease, transform .35s ease; }
.pc.pc-exit  { opacity: 0; transform: translateY(14px) scale(.97); pointer-events: none; }
.pc.pc-enter { animation: pcEnter .55s cubic-bezier(.22,1,.36,1) both; }
@keyframes pcEnter {
  from { opacity: 0; transform: translateY(22px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.pc-thumb { position: relative; overflow: hidden; border-radius: 00px; background: var(--g100); aspect-ratio: 3/4; transform-style: preserve-3d; transition: transform .1s ease; }
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pc:hover .pc-thumb img { transform: scale(1.07); }

/* Detectado via JS: imagens horizontais preenchem o card com zoom base */
.pc.pc-landscape .pc-thumb img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
}
.pc.pc-landscape:hover .pc-thumb img {
  transform: scale(1.2);
}

/* Bonés horizontais: preenchimento mais agressivo */
.pc.pc-landscape[data-cats*="bones"] .pc-thumb img {
  transform: scale(1.22);
}
.pc.pc-landscape[data-cats*="bones"]:hover .pc-thumb img {
  transform: scale(1.28);
}

/* Camisetas: sobe um pouco o enquadramento para valorizar rosto/estampa */
.pc[data-cats*="camisetas"] .pc-thumb img,
.pc[data-cats*="camiseta"] .pc-thumb img {
  object-position: center 32%;
}

/* Conjuntos: enquadramento um pouco mais baixo para preservar o look completo */
.pc[data-cats*="conjuntos"] .pc-thumb img,
.pc[data-cats*="conjunto"] .pc-thumb img {
  object-position: center 38%;
}
.pc-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 5px; z-index: 1; }
.bp { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 0; font-family: var(--fn-b); font-weight: 500; }
.b-new  { background: var(--slate); color: var(--white); }
.b-sale { background: var(--burg);  color: var(--white); }
.b-hot  { background: var(--rose);  color: var(--white); }
.pc-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 7;
  padding: 0 20px 18px;
  transform: translateY(110%);
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 8px;
}
.pc:hover .pc-actions {
  transform: translateY(0);
}
.pc-overlay-grad { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, rgba(26,17,9,.5), transparent); opacity: 0; transition: opacity var(--tr); }
.pc:hover .pc-overlay-grad { opacity: 1; }
.btn-add { flex: 1; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); color: var(--burg); border: none; border-radius: 0; padding: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--fn-head); font-weight: 500;  transition: background var(--tr); }
.btn-add:hover { background: var(--burg); color: var(--cream); }
.btn-wish-sm { width: 42px; height: 42px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); color: var(--ink); border: none; border-radius: 0; display: flex; align-items: center; justify-content: center;  font-size: 16px; transition: all var(--tr); flex-shrink: 0; }
.btn-wish-sm:hover { color: var(--burg); }
.btn-wish-sm.wished i { font-weight: 900; color: var(--burg); }

/* ── Wishlist chip + compatibilidade YITH (home) ── */
.btn-wish-sm { position: relative; }

.btn-wish-sm .add_to_wishlist,
.btn-wish-sm .add_to_wishlist_button,
.btn-wish-sm .yith-wcwl-add-to-wishlist-button {
  position: relative;
  color: #b10016 !important;
}

.btn-wish-sm .yith-wcwl-add-to-wishlist-button__label,
.btn-wish-sm .yith-wcwl-add-to-wishlist-button-icon,
.btn-wish-sm .add_to_wishlist i,
.btn-wish-sm .add_to_wishlist svg,
.btn-wish-sm .add_to_wishlist_button i,
.btn-wish-sm .add_to_wishlist_button svg,
.btn-wish-sm .yith-wcwl-add-to-wishlist-button i,
.btn-wish-sm .yith-wcwl-add-to-wishlist-button svg {
  display: none !important;
}

/* Coração vazio = regular (contorno); cheio = peso 900 (sólido) */
.btn-wish-sm .add_to_wishlist::before,
.btn-wish-sm .add_to_wishlist_button::before,
.btn-wish-sm .yith-wcwl-add-to-wishlist-button::before {
  content: '\f004';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--ink, #1a1a1a);
}

.btn-wish-sm .add_to_wishlist.wished::before,
.btn-wish-sm .add_to_wishlist_button.wished::before,
.btn-wish-sm .yith-wcwl-add-to-wishlist-button.wished::before,
.btn-wish-sm .yith-wcwl-add-to-wishlist .yith-wcwl-add-button--added .add_to_wishlist::before,
.btn-wish-sm .yith-wcwl-add-to-wishlist .yith-wcwl-add-button--added .add_to_wishlist_button::before {
  font-weight: 900;
  color: #b10016;
}

.btn-wish-sm.wish-pop .add_to_wishlist::before,
.btn-wish-sm.wish-pop .add_to_wishlist_button::before,
.btn-wish-sm.wish-pop .yith-wcwl-add-to-wishlist-button::before {
  animation: heartPop .4s ease forwards;
}

.wish-chip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: var(--burg, #7B2D3E);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 10px;
  border-radius: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  z-index: 20;
  transition: opacity .22s ease, transform .22s cubic-bezier(.34,1.56,.64,1);
}

.wish-chip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--burg, #7B2D3E);
}

.wish-chip.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(.9); }
  100% { transform: scale(1); }
}

.wish-pop i { animation: heartPop .4s ease forwards; }

#wishBadge {
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              background .2s ease;
}

#wishBadge.bump {
  transform: scale(1.45);
  background: var(--burg, #7B2D3E);
}

@media (max-width: 480px) {
  .wish-chip {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* Quick view: deslocado para a esquerda do coração (canto superior direito) */
.pc-qv { position: absolute; top: 14px; right: 62px; width: 34px; height: 34px; background: rgba(255,255,255,.85); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ink); opacity: 0; transform: scale(.8); transition: all var(--tr); z-index: 8; }
.pc:hover .pc-qv { opacity: 1; transform: scale(1); }

/* Favoritos fixos no canto superior direito da thumb */
.pc-wish-corner {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 9;
  pointer-events: auto;
}
.pc-wish-corner .btn-wish-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.pc-wish-corner .wish-chip {
  top: calc(100% + 10px);
  bottom: auto;
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-4px);
}
.pc-wish-corner .wish-chip::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--burg, #7B2D3E);
}
.pc-wish-corner .wish-chip.is-visible {
  transform: translateX(0) translateY(0);
}

.btn-wish-sm .juro-wish-toggle {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
}
.btn-wish-sm .juro-wish-toggle i {
  display: block !important;
  font-size: 16px;
  line-height: 1;
  color: var(--ink, #1a1a1a);
}
.btn-wish-sm .juro-wish-toggle i.fas { color: #b10016; }

.pc-info  { padding: 16px 2px 0; }
.pc-brand { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; font-family: var(--fn-head); }
.pc-name  { font-family: 'Albert Sans', var(--fn-d, sans-serif); font-size: 16px; color: var(--ink); margin-bottom: 10px; line-height: 1.25; font-weight: 400; text-transform: uppercase; letter-spacing: .04em; }
.pc-meta  { display: flex; align-items: center; justify-content: space-between; }
.swatches { display: flex; gap: 5px; }
.sw { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid transparent;  transition: border-color var(--tr); }
.sw:hover, .sw.on { border-color: var(--ink); }
.sw-burg  { background: var(--burg); }
.sw-cream { background: var(--cream-dk); border-color: var(--g200) !important; }
.sw-slate { background: var(--slate); }
.sw-rose  { background: var(--rose); }
.sw-ink   { background: var(--ink); }

/* Hover de tamanhos: desce para liberar o coração no canto */
.item-sizes {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translate(12px, 52px);
  transition: opacity .4s .1s ease, transform .4s .1s ease;
}
.pc:hover .item-sizes {
  opacity: 1;
  transform: translate(0, 52px);
}

.size-dot {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-family: var(--fn-head);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ink);
  border: 1px solid transparent;
  transition: var(--tr);
}
.size-dot.oos {
  opacity: .45;
  text-decoration: line-through;
}

.pc .juro-size-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.pc .jsp-hint {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.pc .jsp-sizes {
  display: flex;
  gap: 2px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: center;
  padding: 2px 0;
  min-width: 0;
}
.pc .jsp-sizes::-webkit-scrollbar { display: none; }

.pc .jsp-opt {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.88);
  font-family: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 7px;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  transition: background .16s, border-color .16s, color .16s, transform .14s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pc .jsp-opt:hover:not(.oos):not([disabled]) {
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

.pc .jsp-opt.selected {
  background: #fff !important;
  color: #3b0a18 !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.22);
}

.pc .jsp-opt.oos,
.pc .jsp-opt[disabled] {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pc .jsp-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  flex-shrink: 0;
  font-size: 12px;
  transition: background .22s, border-color .22s, color .22s, transform .22s, box-shadow .22s;
}

.pc .jsp-add:not([disabled]) {
  background: #fff;
  border-color: #fff;
  color: #3b0a18;
  cursor: pointer;
}

.pc .jsp-add:not([disabled]):hover {
  transform: scale(1.1);
  box-shadow: 0 5px 18px rgba(0,0,0,.28);
}

.pc.pc-has-picker .pc-actions {
  z-index: 7;
}

/* ── EDITORIAL ── */
.editorial { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  min-height: 580px; 
  position: relative; 
  overflow: hidden; 
  background-color: #5a1423 !important; 
}
.ed-watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) rotate(25deg);
  width: 450px;
  height: auto;
  color: rgba(255, 255, 255, 0.075);
  z-index: 2;
  pointer-events: none;
}
.editorial .ed-visual, 
.editorial .ed-copy { position: relative; z-index: 1; }
.ed-visual { position: relative; overflow: hidden; z-index: 2; }
.ed-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.ed-visual:hover img { transform: scale(1.05); }
.ed-copy {
  background: var(--burg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 80px; position: relative; overflow: hidden;
  z-index: 2;
}
.ed-copy::before {
  content: '';
  position: absolute; top: -80px; right: -130px;
  width: 420px; height: 560px;
  background-image: url(../img/fundo-textura-1.png);
  background-repeat: no-repeat; background-position: top right; background-size: contain;
  opacity: 0.18; mix-blend-mode: screen; pointer-events: none; z-index: 1;
}
.ed-copy > * { position: relative; z-index: 3; }
.ed-copy .lbl       { color: rgba(219,187,178,.8); margin-bottom: 12px; }
.ed-copy .sec-title { color: var(--cream); }
.ed-copy .divider   { background: var(--rose-lt); width: 44px; height: 1px; margin: 22px 0; }
.ed-copy p { color: rgba(242,232,217,.72); max-width: 400px; font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.ed-stat { display: flex; gap: 48px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.stat-n  { font-family: var(--fn-d); font-size: 42px; color: var(--cream); line-height: 1; }
.stat-l  { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(219,187,178,.65); margin-top: 4px; }

@media (max-width: 576px) {
  .ed-watermark {
    right: -180px;
    bottom: -160px;
    opacity: 0.06;
  }
}

/* ── INSTAGRAM ── */
.insta-section { padding: 110px 0; background: #fdfcfb !important; }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin-top: 50px; }
.insta-tile { position: relative; overflow: hidden; border-radius: 0; aspect-ratio: 1;  }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.insta-tile:hover img { transform: scale(1.1); }
.insta-veil { position: absolute; inset: 0; background: rgba(79,19,36,0); display: flex; align-items: center; justify-content: center; transition: background var(--tr); }
.insta-tile:hover .insta-veil { background: rgba(79,19,36,.55); }
.insta-icon { color: var(--white); font-size: 22px; opacity: 0; transform: scale(.6); transition: all var(--tr); }
.insta-tile:hover .insta-icon { opacity: 1; transform: scale(1); }

/* ── REVIEWS ── */
.reviews-section { padding: 110px 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.rv-card { background: var(--g100); border-radius: 0; padding: 38px; position: relative; transition: transform var(--tr), box-shadow var(--tr); }
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(79,19,36,.09); }
.rv-card::before { content: '\201C'; font-family: var(--fn-d); font-size: 90px; color: rgba(196,150,138,.25); position: absolute; top: 8px; left: 24px; line-height: 1; }
.rv-stars  { color: var(--rose); font-size: 11px; margin-bottom: 16px; }
.rv-text   { font-size: 15px; color: #5A4A40; line-height: 1.75; font-style: italic; margin-bottom: 26px; }
.rv-author { display: flex; align-items: center; gap: 13px; }
.rv-av     { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--cream-dk); flex-shrink: 0; }
.rv-av img { width: 100%; height: 100%; object-fit: cover; }
.rv-name   { font-weight: 500; font-size: 14px; }
.rv-tag    { font-size: 11px; color: var(--rose); letter-spacing: .08em; }

/* ── NEWSLETTER ── */
.nl-section {
  padding: 96px 0;
  position: relative;
  text-align: center;
  background-image:
    radial-gradient(ellipse at center, rgba(90, 20, 35, 0.72) 0%, rgba(60, 10, 22, 0.88) 55%, rgba(30, 5, 12, 0.97) 100%),
    linear-gradient(180deg, rgba(70, 15, 28, 0.55) 0%, rgba(45, 8, 18, 0.9) 100%),
    url('url(../img/fundo-banner.png)');
  background-size: auto, auto, 420px 320px;
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: center, center, center;
  overflow: hidden;
}
.nl-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(196, 130, 110, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.nl-section::after { content: none !important; display: none; }
.nl-section .container { position: relative; z-index: 2; }
.nl-section .lbl       { color: rgba(219,187,178,.7); }
.nl-section .sec-title { color: var(--cream); margin: 0 auto; }
.nl-section .divider   { background: var(--rose-lt); margin: 22px auto; }
.nl-section p { color: rgba(242,232,217,.65); max-width: 400px; margin: 0 auto 40px; }
.nl-form {
  display: flex; max-width: 500px; margin: 0 auto;
  border-radius: 0; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  position: relative; z-index: 3;
}
.nl-form input { flex: 1; padding: 16px 22px; border: none; font-family: var(--fn-b); font-size: 14px; background: rgba(255,255,255,.95); outline: none; color: var(--ink); }
.nl-form input::placeholder { color: #A09080; }
.nl-form button { border-radius: 0; white-space: nowrap; padding: 16px 28px; border: none; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(242,232,217,.65); padding: 90px 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 72px; border-bottom: 1px solid rgba(255,255,255,.07); }
.f-brand .logo-f { font-family: var(--fn-d); font-size: 34px; letter-spacing: .28em; color: var(--cream); text-transform: uppercase; }
.f-brand p { font-size: 14px; line-height: 1.75; margin-top: 18px; max-width: 270px; }
.f-socials { display: flex; gap: 10px; margin-top: 30px; }
.soc { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(242,232,217,.55); transition: all var(--tr);  }
.soc:hover { background: var(--burg); border-color: var(--burg); color: var(--white); }
.f-col h5 { font-family: var(--fn-d); font-size: 18px; color: var(--cream); margin-bottom: 22px; }

/* Footer links — refinados */
.f-links { list-style: none; padding: 0; margin: 0; }
.f-links li { margin-bottom: 0; }
.f-links a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(220, 195, 180, 0.52) !important; text-decoration: none; padding: 5px 0; letter-spacing: 0.03em; position: relative; transition: color 0.25s ease, gap 0.25s ease; }
.f-links a::before { content: ''; display: inline-block; width: 0; height: 1px; background: rgba(196, 150, 130, 0.7); transition: width 0.25s ease; flex-shrink: 0; }
.f-links a:hover { color: rgba(240, 218, 205, 0.95) !important; gap: 10px; }
.f-links a:hover::before { width: 14px; }

.foot-bottom { padding: 26px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(242,232,217,.32); }

/* Payment icons SVG */
.pay-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pi { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 34px; border: 1px solid rgba(220, 195, 175, 0.22); border-radius: 0; padding: 5px 7px; background: rgba(255,255,255,0.04); transition: border-color 0.2s ease, background 0.2s ease; cursor: default; font-size: 0; }
.pi svg { width: 100%; height: 100%; color: rgba(210, 178, 158, 0.65); transition: color 0.2s ease; }
.pi:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.08); }
.pi:hover svg { color: rgba(255,255,255,0.95); }

/* ── SECTION LOGO DIVIDER ── */
.sld {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 20;
  pointer-events: none;
}

.sld-logo {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: clamp(120px, 11vw, 180px);
  height: clamp(120px, 11vw, 180px);
  object-fit: contain;
  pointer-events: all;
  

  /* blend into both sections */
  mix-blend-mode: multiply;
  opacity: 0.18;
  filter:
    drop-shadow(0 0 0px rgba(92, 26, 46, 0))
    saturate(1.4);

  /* idle: soft float */
  animation: sldFloat 6s ease-in-out infinite;
  will-change: transform, filter, opacity;
  transition:
    opacity 0.6s ease,
    filter  0.6s ease;
}

.sld-logo:hover {
  animation-play-state: paused;
  opacity: 1;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 0 28px rgba(92, 26, 46, 0.55))
    drop-shadow(0 0  8px rgba(92, 26, 46, 0.35))
    saturate(1.8) brightness(0.88);
}

@keyframes sldFloat {
  0%,100% { transform: translateY(-50%) scale(1);    }
  50%     { transform: translateY(-62%) scale(1.04); }
}

/* magnetic tilt via JS class */
.sld-logo.tilted {
  transition:
    transform 0.08s linear,
    opacity   0.6s ease,
    filter    0.6s ease;
  animation: none;
}

@media (max-width: 768px) {
  .sld { display: none; }
}

/* ══════════════════════════════════════
   FAB STACK — botões flutuantes fixos
══════════════════════════════════════ */
.fab-stack {
  position: fixed;
  right: 28px;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 900;
}

/* base de cada botão */
.fab {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform .35s cubic-bezier(.34,1.56,.64,1),
    box-shadow .3s ease,
    opacity    .3s ease;
  outline: none;
}
.fab svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.fab:focus-visible { outline: 2px solid #5c1a2e; outline-offset: 3px; }

/* — Últimos vistos — */
.fab-seen {
  background: var(--cream, #f5ede4);
  color: var(--burg, #5c1a2e);
  box-shadow: 0 4px 18px rgba(92,26,46,.14), 0 1px 4px rgba(0,0,0,.08);
}
.fab-seen:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(92,26,46,.22), 0 3px 8px rgba(0,0,0,.1);
}

/* badge numérico */
.fab-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--burg, #5c1a2e);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--fn-head, sans-serif);
  letter-spacing: .02em;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.fab-seen:hover .fab-badge { transform: scale(1.2); }

/* — WhatsApp — */
.fab-whats {
  background: var(--cream, #f5ede4);
  color: var(--burg, #5c1a2e);
  box-shadow: 0 4px 18px rgba(92,26,46,.14), 0 1px 4px rgba(0,0,0,.08);
}
.fab-whats:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(92,26,46,.22), 0 3px 8px rgba(0,0,0,.1);
}

/* — Voltar ao topo — */
.fab-top {
  background: var(--ink, #1a0e09);
  color: rgba(255,255,255,.85);
  box-shadow: 0 4px 18px rgba(0,0,0,.18), 0 1px 4px rgba(0,0,0,.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.85);
}
.fab-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.fab-top.visible:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  background: var(--burg, #5c1a2e);
}

/* ── POPOVER ÚLTIMOS VISTOS ── */
.seen-popover {
  position: fixed;
  right: 90px;
  bottom: 36px;
  width: 300px;
  background: #fff;
  border-radius: 0;
  box-shadow:
    0 24px 60px rgba(0,0,0,.14),
    0 4px 16px rgba(0,0,0,.08),
    0 0 0 1px rgba(92,26,46,.06);
  overflow: hidden;
  z-index: 901;
  transform: translateX(12px) scale(.95);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity  .28s ease,
    transform .28s cubic-bezier(.34,1.56,.64,1);
}
.seen-popover.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0) scale(1);
}

.sp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(92,26,46,.07);
  font-family: var(--fn-head, sans-serif);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--burg, #5c1a2e);
  font-weight: 600;
}
.sp-close {
  background: none; border: none; cursor: pointer;
  color: #bbb; font-size: 13px;
  transition: color .2s; padding: 2px 4px;
}
.sp-close:hover { color: var(--burg, #5c1a2e); }

.sp-list { padding: 8px 0; }

.sp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  transition: background .2s;
}
.sp-item:hover { background: rgba(92,26,46,.03); }

.sp-item img {
  width: 48px; height: 48px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

.sp-info { flex: 1; min-width: 0; }
.sp-name {
  font-size: 13px;
  font-weight: 500;
  color: #2a1a14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-price {
  font-size: 11px;
  color: #9e8f87;
  margin-top: 2px;
}

.sp-add {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(92,26,46,.18);
  background: none;
  color: var(--burg, #5c1a2e);
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
.sp-add:hover {
  background: var(--burg, #5c1a2e);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .fab-stack { right: 16px; bottom: 24px; }
  .seen-popover { right: 72px; bottom: 24px; width: calc(100vw - 96px); }
}