/* ================================================
   HOME — Estilo Eat Off Limits
   Cores: #ffdc15 (amarelo), #000 (preto), #fffcf8 (creme)
   Fontes: Space Grotesk (corpo) + Bebas Neue (display)
   ================================================ */

/* ---------- Custom vars ---------- */
:root {
  --ol-yellow:   #ffdc15;
  --ol-pink:     #f6a3bc;
  --ol-orange:   #ff9d7b;
  --ol-cream:    #fffcf8;
  --ol-black:    #000000;
  --ol-border:   2px solid #000;
  --ol-shadow:   6px 6px 0 rgba(0,0,0,0.85);
  --ol-font-body:    'Space Grotesk', sans-serif;
  --ol-font-display: 'Bebas Neue', sans-serif;
  --ol-ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ol-duration:     0.22s;
}

/* ------------------------------------------------
   FORÇAR FONTES + BG GLOBAL
   ------------------------------------------------ */
body {
  font-family: var(--ol-font-body);
  background: var(--ol-cream);
}

/* ------------------------------------------------
   ANNOUNCEMENT BAR — amarelo com marquee
   ------------------------------------------------ */
.announcement-bar {
  background: var(--ol-yellow);
  color: var(--ol-black);
  font-family: var(--ol-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000;
}

.announcement-bar .marquee-track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
  white-space: nowrap;
}

.announcement-bar .marquee-track span {
  display: inline-block;
  padding: 0 40px;
}

.announcement-bar .marquee-track span::after {
  content: '✦';
  margin-left: 40px;
  color: #000;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------------------------------
   HEADER / NAV
   ------------------------------------------------ */
.site-header {
  background: var(--ol-cream);
  border-bottom: 2px solid #000;
}

.site-header.scrolled {
  box-shadow: 0 4px 0 rgba(0,0,0,0.12);
}

.main-nav a {
  font-family: var(--ol-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: #000;
  border-bottom-color: var(--ol-yellow);
}

.header-icon:hover { color: #000; }

.cart-count {
  background: var(--ol-yellow);
  color: #000;
}

/* ------------------------------------------------
   HERO BANNERS — sem mudanças visuais, só borda baixo
   ------------------------------------------------ */
.hero-banners {
  border-bottom: 2px solid #000;
}

/* ------------------------------------------------
   TRUST STRIP — amarelo, borda full
   ------------------------------------------------ */
.trust-strip {
  background: var(--ol-yellow);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 18px 0;
}

.trust-item div strong {
  font-family: var(--ol-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
}

.trust-item div span {
  font-family: var(--ol-font-body);
  font-size: 11.5px;
  color: rgba(0,0,0,0.65);
}

/* ------------------------------------------------
   SECTION KITS
   ------------------------------------------------ */
.section-kits {
  padding: 72px 0;
  background: var(--ol-cream);
  border-bottom: 2px dashed #000;
}

.kits-header {
  margin-bottom: 32px;
}

.kits-header h2 {
  font-family: var(--ol-font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 400;          /* Bebas Neue só tem peso normal */
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #000;
}

/* ------------------------------------------------
   PARA ANARQUIZAR
   ------------------------------------------------ */
.section-anarquizar {
  padding: 72px 0;
  background: var(--ol-cream);
  border-bottom: 2px dashed #000;
}

.anarquizar-header {
  margin-bottom: 32px;
  align-items: flex-end;
}

.anarquizar-header h2 {
  font-family: var(--ol-font-display);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #000;
}

/* ------------------------------------------------
   SECTION TITLES GENÉRICOS
   ------------------------------------------------ */
.testimonials-header h2 {
  font-family: var(--ol-font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #000;
}

.brand-content h2 {
  font-family: var(--ol-font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.92;
  color: #fff;
}

.faq-inner h2 {
  font-family: var(--ol-font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
}

.newsletter-inner h2 {
  font-family: var(--ol-font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
}

/* ------------------------------------------------
   PRODUTO CARD — Eat Off Limits style
   Borda preta 2px, sombra offset hard
   ------------------------------------------------ */

.kits-grid .product-card,
.anarquizar-grid .product-card {
  border: 2px solid #000;
  box-shadow: var(--ol-shadow);
  background: var(--ol-cream);
  border-radius: 0;
  transition: box-shadow var(--ol-duration) var(--ol-ease),
              transform var(--ol-duration) var(--ol-ease);
}

.kits-grid .product-card:hover,
.anarquizar-grid .product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.85);
}

/* Imagem: sem arredondamento */
.kits-grid .product-card__img,
.anarquizar-grid .product-card__img {
  border-radius: 0;
  aspect-ratio: 1 / 1;
  background: #e8e8e0;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid #000;
}

.kits-grid .product-card__img img,
.anarquizar-grid .product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ol-ease);
}

.kits-grid .product-card:hover .product-card__img img,
.anarquizar-grid .product-card:hover .product-card__img img {
  transform: scale(1.06);
}

/* Overlay no hover */
.kits-grid .product-card__img::after,
.anarquizar-grid .product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--ol-duration) var(--ol-ease);
  pointer-events: none;
  z-index: 1;
}

.kits-grid .product-card:hover .product-card__img::after,
.anarquizar-grid .product-card:hover .product-card__img::after {
  background: rgba(0,0,0,0.12);
}

/* Botão pill "Ver produto" no hover */
.product-card__hover-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  transition: opacity var(--ol-duration) var(--ol-ease),
              transform var(--ol-duration) var(--ol-ease);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;

  background: var(--ol-yellow);
  color: #000;
  font-family: var(--ol-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 0;
  border: 2px solid #000;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
}

.kits-grid .product-card:hover .product-card__hover-btn,
.anarquizar-grid .product-card:hover .product-card__hover-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Badge PROMOÇÃO */
.kits-grid .product-card__sale-badge,
.anarquizar-grid .product-card__sale-badge {
  border-radius: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: var(--ol-yellow);
  color: #000;
  border: 1.5px solid #000;
}

/* Card body */
.kits-grid .product-card__body,
.anarquizar-grid .product-card__body {
  padding: 10px 12px 4px;
  gap: 3px;
}

.kits-grid .product-card__name,
.anarquizar-grid .product-card__name {
  font-family: var(--ol-font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #000;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kits-grid .product-card__name a,
.anarquizar-grid .product-card__name a {
  color: #000;
  text-decoration: none;
}

.kits-grid .product-card__name a:hover,
.anarquizar-grid .product-card__name a:hover {
  text-decoration: underline;
}

.kits-grid .product-card__price,
.anarquizar-grid .product-card__price {
  margin-top: 2px;
}

.kits-grid .price-current,
.anarquizar-grid .price-current {
  font-family: var(--ol-font-body);
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.kits-grid .price-old,
.anarquizar-grid .price-old {
  font-size: 12px;
  color: #666;
}

.kits-grid .price-sale,
.anarquizar-grid .price-sale {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

/* Footer do card: esconde botão na home */
.kits-grid .product-card__footer,
.anarquizar-grid .product-card__footer {
  display: none;
}

/* ------------------------------------------------
   GRID
   ------------------------------------------------ */
.kits-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.anarquizar-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ------------------------------------------------
   FILTROS DE CATEGORIA
   ------------------------------------------------ */
.cat-filter-btn {
  border-radius: 0;
  font-family: var(--ol-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  transition: all var(--ol-duration) var(--ol-ease);
  box-shadow: 3px 3px 0 #000;
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--ol-yellow);
  color: #000;
  border-color: #000;
  box-shadow: 3px 3px 0 #000;
}

/* "Ver todos" button */
.see-all-wrap .btn-outline-black {
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #000;
  background: var(--ol-yellow);
  color: #000;
  transition: transform var(--ol-duration) var(--ol-ease),
              box-shadow var(--ol-duration) var(--ol-ease);
}

.see-all-wrap .btn-outline-black:hover {
  background: #000;
  color: var(--ol-yellow);
  border-color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ol-yellow);
}

/* ------------------------------------------------
   BUTTONS GLOBAL (override)
   ------------------------------------------------ */
.btn-black {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.35);
  font-family: var(--ol-font-body);
  letter-spacing: 0.06em;
}

.btn-black:hover {
  background: var(--ol-yellow);
  color: #000;
  border-color: #000;
}

.btn-blue {
  background: var(--ol-yellow);
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  font-family: var(--ol-font-body);
  letter-spacing: 0.06em;
}

.btn-blue:hover {
  background: #000;
  color: var(--ol-yellow);
  border-color: #000;
}

/* ------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------ */
.section-testimonials {
  background: var(--ol-cream);
  border-bottom: 2px dashed #000;
}

.testimonial-card {
  border-radius: 0;
  border: 2px solid #000;
  background: var(--ol-cream);
  box-shadow: 5px 5px 0 #000;
  transition: transform var(--ol-duration) var(--ol-ease),
              box-shadow var(--ol-duration) var(--ol-ease);
}

.testimonial-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.testimonial-stars {
  color: var(--ol-yellow);
  filter: drop-shadow(0 0 0 #000);
}

.testimonial-card blockquote {
  font-family: var(--ol-font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.65;
  color: #000;
}

.testimonial-card cite {
  font-family: var(--ol-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

/* ------------------------------------------------
   BRAND SECTION (Bora Anarquizar)
   ------------------------------------------------ */
.section-brand {
  background: #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.brand-content p {
  font-family: var(--ol-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.brand-content .btn-blue {
  background: var(--ol-yellow);
  color: #000;
  border: 2px solid var(--ol-yellow);
  box-shadow: 5px 5px 0 rgba(255,220,21,0.4);
}

.brand-content .btn-blue:hover {
  background: transparent;
  color: var(--ol-yellow);
  border-color: var(--ol-yellow);
  box-shadow: none;
}

/* ------------------------------------------------
   LOCAL SECTION
   ------------------------------------------------ */
.section-local {
  background: var(--ol-yellow);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.local-text h3 {
  font-family: var(--ol-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.02em;
  color: #000;
}

.local-text p,
.local-text address {
  font-family: var(--ol-font-body);
  color: rgba(0,0,0,0.75);
}

/* ------------------------------------------------
   FAQ
   ------------------------------------------------ */
.section-faq {
  background: var(--ol-cream);
}

.faq-item {
  border-bottom: 2px dashed #000;
}

.faq-question {
  font-family: var(--ol-font-body);
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.faq-question i { color: #000; }

.faq-answer {
  font-family: var(--ol-font-body);
  font-size: 13.5px;
  color: rgba(0,0,0,0.7);
  line-height: 1.7;
}

/* ------------------------------------------------
   NEWSLETTER — amarelo
   ------------------------------------------------ */
.section-newsletter {
  background: var(--ol-yellow);
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  color: #000;
}

.newsletter-inner h2 { color: #000; }

.newsletter-inner p {
  font-family: var(--ol-font-body);
  color: rgba(0,0,0,0.75);
  opacity: 1;
}

.newsletter-form {
  border-radius: 0;
  border: 2px solid #000;
  overflow: hidden;
  box-shadow: 5px 5px 0 #000;
}

.newsletter-form input {
  font-family: var(--ol-font-body);
  font-size: 13px;
  background: #fff;
  color: #000;
  border-right: 2px solid #000;
}

.newsletter-form input::placeholder { color: #666; }

.newsletter-form button {
  font-family: var(--ol-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #000;
  color: var(--ol-yellow);
  border-radius: 0;
}

.newsletter-form button:hover {
  background: #222;
  opacity: 1;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.site-footer {
  background: #000;
  border-top: 2px solid #000;
}

.footer-top {
  border-bottom: 2px dashed rgba(255,255,255,0.25);
}

.footer-benefit h4 {
  font-family: var(--ol-font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ol-yellow);
}

.footer-benefit p {
  font-family: var(--ol-font-body);
  font-size: 12px;
}

.footer-mid {
  border-bottom: 2px dashed rgba(255,255,255,0.25);
}

.footer-col h4 {
  font-family: var(--ol-font-body);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ol-yellow);
}

.footer-col a,
.footer-logo p {
  font-family: var(--ol-font-body);
  font-size: 13px;
}

.footer-col a:hover { color: var(--ol-yellow); }

.footer-socials a:hover {
  background: var(--ol-yellow);
  color: #000;
}

.footer-bottom p {
  font-family: var(--ol-font-body);
  font-size: 12px;
}

.footer-bottom a { color: var(--ol-yellow); }

/* ------------------------------------------------
   TOAST
   ------------------------------------------------ */
.toast {
  border-left: 4px solid var(--ol-yellow);
}

/* ------------------------------------------------
   CART PANEL
   ------------------------------------------------ */
.cart-panel__header h2 { color: #000; }
.btn-blue.cart-checkout {
  background: var(--ol-yellow);
  color: #000;
}

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .kits-grid          { grid-template-columns: repeat(2, 1fr); }
  .anarquizar-grid    { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .anarquizar-grid    { grid-template-columns: repeat(2, 1fr); }
  .site-header { background: var(--ol-cream); }
  .main-nav.open { background: var(--ol-cream); border-bottom: 2px solid #000; }
}

@media (max-width: 640px) {
  .kits-grid          { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .anarquizar-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .product-card__hover-btn { display: none; }
}
