/* WordPress / Woo-specific overrides + small additions */

/* Reset menu list — display horizontal sem bullets */
.dirA .nav .nav-list,
.dirA .primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}
.dirA .nav .nav-list li,
.dirA .primary-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dirA .nav .nav-list li a,
.dirA .primary-nav ul li a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.dirA .nav .nav-list li a:hover,
.dirA .primary-nav ul li a:hover {
  border-bottom-color: var(--yellow);
  color: var(--yellow);
}

/* Header layout */
.dirA .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  gap: 32px;
}
.dirA .site-header .logo { flex-shrink: 0; }
.dirA .site-header .primary-nav { flex: 1; display: flex; justify-content: center; }
.dirA .site-header .header-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.dirA .header-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); position: relative;
  text-decoration: none;
}
.dirA .header-icon:hover { border-color: var(--yellow); color: var(--yellow); }
.dirA .header-cart { color: var(--yellow); border-color: var(--yellow); }

/* Esconder menu em mobile (podes ativar com toggle depois) */
@media (max-width: 900px) {
  .dirA .site-header .primary-nav { display: none; }
}


/* Top banner widget area */
.top-banner-area {
  background: var(--yellow);
  color: #000;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 700;
}

/* Cart count badge */
.header-cart { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--yellow); color: #000;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 10px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
}

/* WP search results / generic page wrappers */
.dirA .page-head {
  padding: 64px 32px 32px;
  border-bottom: 1px solid var(--line);
}
.dirA .page-title {
  font-family: var(--font-display-a);
  font-size: 64px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.96;
  margin: 16px 0 0;
}

/* Contact page */
.dirA.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 32px;
}
.dirA.contact-page .info-row {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.dirA.contact-page .info-row h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 500;
}
.dirA.contact-page .info-row .v {
  font-family: var(--font-display-a);
  font-size: 18px; font-weight: 500;
  line-height: 1.4;
}
.dirA.contact-page .info-row a { color: var(--text); }
.dirA.contact-page .contact-map iframe {
  width: 100%; height: 480px; border: 0;
  filter: invert(0.9) hue-rotate(180deg);
}

/* WooCommerce notice tweaks */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--bg-elev);
  border-left: 3px solid var(--yellow);
  color: var(--text);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

/* Buttons inside Woo */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--yellow);
  color: #000;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.woocommerce button.button:hover { opacity: 0.85; }
.woocommerce button.button.alt { background: #fff; color: #000; }

/* Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  border-radius: 0;
}

/* About page tweaks */
.about-page .about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; padding: 64px 32px;
  align-items: end;
}
.about-page .about-hero h1 {
  font-family: var(--font-display-a);
  font-size: 96px; font-weight: 700;
  letter-spacing: -0.04em; line-height: 0.92;
  margin: 0;
}
.about-page .about-hero p {
  font-size: 16px; color: var(--text-dim);
  line-height: 1.6; margin: 0 0 16px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats .stat {
  padding: 32px;
  border-right: 1px solid var(--line);
}
.about-stats .stat:last-child { border-right: none; }
.about-stats .big {
  font-family: var(--font-display-a);
  font-size: 64px; font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.03em;
}
.about-stats .lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-mute); margin-top: 4px;
}
.timeline { padding: 64px 32px; }
.timeline .section-head { margin-bottom: 40px; }
.timeline .section-head .num { font-family: var(--font-mono); font-size: 11px; color: var(--yellow); letter-spacing: 0.12em; text-transform: uppercase; }
.timeline .section-head h2 { font-family: var(--font-display-a); font-size: 64px; font-weight: 700; letter-spacing: -0.03em; line-height: 0.96; margin: 12px 0 0; }
.timeline-row {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 32px; padding: 24px 0;
  border-top: 1px solid var(--line);
}
.timeline-row .year {
  font-family: var(--font-mono);
  font-size: 18px; color: var(--yellow);
  font-weight: 700;
}
.timeline-row h4 {
  font-family: var(--font-display-a);
  font-size: 22px; font-weight: 600;
  margin: 0 0 8px;
}
.timeline-row p {
  color: var(--text-dim); margin: 0; line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .dirA.contact-page .contact-grid,
  .about-page .about-hero { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats .stat:nth-child(2) { border-right: none; }
  .timeline-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .dirA.contact-page .contact-grid { padding: 32px 16px; }
}
