:root {
  --background: #ffffff;
  --foreground: #1a1a1a;
  --primary: hsl(150 50% 22%);
  --primary-foreground: #ffffff;
  --accent: hsl(0 70% 45%);
  --accent-foreground: #ffffff;
  --muted: hsl(30 10% 96%);
  --muted-foreground: hsl(0 0% 45%);
  --border: hsl(30 10% 90%);
  --forest: hsl(150 50% 22%);
  --forest-light: hsl(150 40% 35%);
  --hunter-red: hsl(0 70% 45%);
  --hunter-red-dark: hsl(0 70% 35%);
  --sand: hsl(35 25% 92%);
  --charcoal: hsl(0 0% 15%);
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --radius: 0.5rem;
  --container: 1120px;
  --header-h: 5rem;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Fundo cinza claro nas páginas internas (exceto a inicial) */
body:not(.home):not(.front-page) {
  background-color: #eceff2;
}

body:not(.home):not(.front-page) .site-main {
  position: relative;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 720px);
}

.text-center {
  text-align: center;
}

/* Header */
.liquid-glass-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  overflow: hidden;
}

.liquid-glass-surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px) saturate(200%);
  backdrop-filter: blur(6px) saturate(200%);
  box-shadow: 0 10px 14px -12px rgba(12, 20, 34, 0.36);
}

.liquid-glass-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px) saturate(200%);
  backdrop-filter: blur(8px) saturate(200%);
}

.header-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo img {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.95)) drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.95)) drop-shadow(1px 0 0 rgba(255, 255, 255, 0.95)) drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.95));
}

.brand-logo--capegol img,
.woocommerce-page .brand-logo--capegol img,
.woocommerce .brand-logo--capegol img {
  height: 3.25rem;
  width: auto;
  max-width: none;
}

.brand-logo--ctc img,
.woocommerce-page .brand-logo--ctc img,
.woocommerce .brand-logo--ctc img {
  height: 65px;
  width: 95px;
  max-width: none;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 2.5rem;
  background: currentColor;
  opacity: 0.3;
  flex-shrink: 0;
}

.header-nav .nav-list {
  display: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: opacity 0.16s ease;
}

.nav-link:hover {
  opacity: 0.86;
}

.liquid-reactive-ink {
  position: relative;
  z-index: 3;
  color: #0f172a;
  transition: color 160ms ease, opacity 160ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-admin,
.header-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.header-admin {
  display: none;
}

.header-menu-toggle .icon-close {
  display: none;
}

.header-menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.header-menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-nav {
  position: relative;
  z-index: 10;
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.nav-list--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-nav .nav-list {
    display: flex;
  }

  .header-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .header-admin {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(0 0% 15% / 0.85) 0%,
    hsl(0 0% 15% / 0.6) 50%,
    hsl(0 0% 15% / 0.3) 100%
  );
}

.hero-content {
  position: relative;
  padding-top: var(--header-h);
  max-width: 40rem;
  animation: slide-in-left 0.7s ease both;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--primary-foreground);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.hero-title-accent {
  display: block;
  color: var(--accent);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin: 0 0 2rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Buttons */
.ctc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.ctc-btn--sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

.ctc-btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.ctc-btn--primary:hover {
  background: var(--forest-light);
}

.ctc-btn--accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.ctc-btn--accent:hover {
  background: var(--hunter-red-dark);
}

.ctc-btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.ctc-btn--whatsapp:hover {
  background: var(--whatsapp-dark);
}

.ctc-wa-btn {
  gap: 0.5rem;
}

.ctc-wa-btn .ctc-wa-icon {
  flex-shrink: 0;
}

.ctc-btn--outline {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.ctc-btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Features */
.features {
  padding: 4rem 0;
  background: var(--sand);
  border-block: 1px solid var(--border);
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Home — produtos favoritos / em destaque */
.section--home-featured {
  background: #eceff2;
  border-bottom: 1px solid var(--border);
}

.section--home-featured .section-title {
  margin-bottom: 0.35rem;
}

.section--home-featured .section-lead {
  margin-bottom: 1.75rem;
}

.home-featured__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.35rem;
}

.home-featured__head .section-title {
  margin: 0;
}

.home-featured__grid ul.products {
  margin-bottom: 0 !important;
}

.home-featured__grid ul.products li.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--primary) 12%, transparent);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.35rem;
  flex-shrink: 0;
}

.feature-icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b5e3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.feature-icon--target {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b5e3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
}

.feature-icon--award {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b5e3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M15.477 12.89 17 22l-5-3-5 3 1.523-9.11'/%3E%3C/svg%3E");
}

.feature-icon--headset {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b5e3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11v3a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2H5a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4h-1a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3'/%3E%3Cpath d='M21 16v2a4 4 0 0 1-4 4h-5'/%3E%3C/svg%3E");
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--muted {
  background: var(--muted);
}

.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  background: transparent;
}

body:not(.home):not(.front-page) .page-hero {
  background: transparent;
}

body:not(.home):not(.front-page) .section--muted {
  background: #e4e8ec;
}

body:not(.home):not(.front-page) .features {
  background: var(--sand);
}

body:not(.home):not(.front-page) .catalog-filters {
  background: #f4f6f8;
}

body:not(.home):not(.front-page) .venue-card,
body:not(.home):not(.front-page) .ctc-contact-form,
body:not(.home):not(.front-page) .woocommerce ul.products li.product,
body:not(.home):not(.front-page) .catalog-hero__panel,
body:not(.home):not(.front-page) .catalog-shell,
body:not(.home):not(.front-page) .catalog-toolbar {
  background: #fff;
}

.section-kicker {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--foreground);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 40rem;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.benefit-list {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
}

.stats-card {
  background: var(--charcoal);
  color: #fff;
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.stats-card h3 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.stats-row--3,
.stats-row--4 {
  grid-template-columns: repeat(2, 1fr);
  margin: 1.5rem 0 2rem;
}

@media (min-width: 700px) {
  .stats-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
}

.stat span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.schedule-title {
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.schedule {
  margin: 0 0 1.25rem;
  white-space: pre-line;
  opacity: 0.85;
  font-size: 0.9rem;
}

.gallery-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-2x2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  aspect-ratio: 1;
}

.gallery-2x2 img:nth-child(2),
.gallery-2x2 img:nth-child(3) {
  aspect-ratio: 4 / 3;
}

/* Contact */
.contact-venues {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .contact-venues {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-venues {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-maps-section .section-title {
  margin-bottom: 0.5rem;
}

.contact-maps-section .section-lead {
  margin-bottom: 1.75rem;
}

.contact-map-wrap {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e8ecef;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.contact-map {
  width: 100%;
  height: min(62vh, 520px);
  min-height: 320px;
  z-index: 0;
}

.contact-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted-foreground, #64748b);
}

.contact-map-legend li {
  position: relative;
  padding-left: 1rem;
}

.contact-map-legend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2d6a4f;
}

.ctc-btn--waze {
  background: #05c8f7;
  color: #0b1f2a;
  border-color: #05c8f7;
}

.ctc-btn--waze:hover {
  background: #00b4e0;
  border-color: #00b4e0;
  color: #0b1f2a;
}

.ctc-waze-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ctc-waze-btn .ctc-waze-icon {
  flex-shrink: 0;
}

.venue-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: #fff;
}

.venue-card .venue-hours {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.venue-actions .ctc-wa-btn,
.venue-actions .ctc-waze-btn {
  display: inline-flex;
}

.venue-whatsapp {
  margin-top: 0.85rem;
}

.venue-whatsapp .ctc-wa-btn {
  display: inline-flex;
}

.footer-venues .venue-whatsapp .ctc-wa-btn,
.footer-venues .venue-actions .ctc-wa-btn {
  font-size: 0.8rem;
  padding: 0.5rem 0.85rem;
}

.ctc-contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: #fff;
}

.ctc-contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.ctc-contact-form input,
.ctc-contact-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ctc-form-notice {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.ctc-form-notice--ok {
  background: #e8f7ee;
  color: #146c2e;
}

.ctc-form-notice--erro {
  background: #fdecec;
  color: #8a1f1f;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: #fff;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 2rem 0 1.25rem;
}

.footer-logo,
.woocommerce-page .site-footer .footer-logo,
.woocommerce .site-footer .footer-logo {
  height: 2.75rem;
  width: auto;
  max-width: 10rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.95)) drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.95)) drop-shadow(1px 0 0 rgba(255, 255, 255, 0.95)) drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.95));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  margin: 0;
  max-width: 22rem;
  line-height: 1.45;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-units {
  display: grid;
  gap: 0.65rem;
  padding: 0 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.15rem;
}

@media (min-width: 768px) {
  .footer-units {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.footer-unit {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.footer-unit__name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-unit__meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-unit__actions {
  margin-top: 0.25rem;
}

.footer-unit__actions a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-unit__wa {
  color: #25d366 !important;
}

.footer-unit__actions a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem 0;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.7rem !important;
  max-width: 52rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* —— Catálogo: hero, shell, toolbar —— */
.catalog-hero {
  padding-bottom: 0;
}

.catalog-hero__panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 10px 28px -18px rgba(12, 20, 34, 0.22);
}

.catalog-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.25rem;
  box-shadow: 0 14px 36px -22px rgba(12, 20, 34, 0.28);
}

.catalog-hero__panel .section-title {
  margin-bottom: 0.5rem;
}

.catalog-hero__panel .section-lead {
  margin: 0;
  color: var(--muted-foreground);
}

.catalog-section {
  padding-top: 1rem;
}

@media (min-width: 900px) {
  .catalog-shell {
    padding: 1.5rem;
  }
}

.catalog-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .catalog-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.catalog-filters {
  background: #f4f6f8;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow: auto;
}

.catalog-filters__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.catalog-filters__label,
.catalog-filters__heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--foreground);
  margin: 0 0 0.65rem;
}

.catalog-filters__block--search input[type="search"] {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.catalog-filters__cats {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-filters__cats a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.925rem;
  color: var(--foreground);
  transition: background 0.15s ease, color 0.15s ease;
}

.catalog-filters__cats a:hover,
.catalog-filters__cats a.is-active {
  background: color-mix(in srgb, var(--primary) 12%, white);
  color: var(--primary);
  font-weight: 600;
}

.catalog-filters__cats--child {
  margin: 0.25rem 0 0.35rem 0.75rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--border);
}

.catalog-filters__count {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.catalog-filters__tip {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted-foreground);
}

.catalog-filters__empty {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  padding: 0.15rem 0;
  margin: 0;
}

.catalog-filters__facet {
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
}

.catalog-filters__facet:last-child {
  margin-bottom: 0;
}

.catalog-filters__facet-legend {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--charcoal);
}

.catalog-filters__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: 11rem;
  overflow: auto;
}

.catalog-filters__option {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.35;
  cursor: pointer;
  padding: 0.2rem 0.15rem;
  border-radius: 0.3rem;
}

.catalog-filters__option:hover {
  background: rgba(255, 255, 255, 0.7);
}

.catalog-filters__option input {
  margin: 0.15rem 0 0;
  flex-shrink: 0;
}

.catalog-filters__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.catalog-filters__apply {
  width: 100%;
}

.catalog-filters__clear {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid var(--border);
}

.catalog-filters__clear a {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
}

.catalog-results {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.85rem 1rem;
  background: #f7f8fa;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
}

.catalog-toolbar__count .woocommerce-result-count {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-foreground);
  float: none;
}

.catalog-toolbar__sort {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.catalog-toolbar__sort-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  white-space: nowrap;
}

.catalog-toolbar__sort .woocommerce-ordering {
  margin: 0;
  float: none;
}

.catalog-toolbar__sort .woocommerce-ordering select,
.catalog-toolbar__sort select.orderby {
  appearance: none;
  -webkit-appearance: none;
  min-width: 12.5rem;
  max-width: 100%;
  padding: 0.65rem 2.4rem 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231b5e3b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
  cursor: pointer;
  box-shadow: none;
}

.catalog-toolbar__sort .woocommerce-ordering select:hover,
.catalog-toolbar__sort select.orderby:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
}

.catalog-toolbar__sort .woocommerce-ordering select:focus,
.catalog-toolbar__sort select.orderby:focus {
  outline: 2px solid color-mix(in srgb, var(--primary) 35%, transparent);
  outline-offset: 1px;
  border-color: var(--primary);
}

.catalog-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed var(--border);
  border-radius: 0.65rem;
}

.page-produtos .woocommerce-products-header {
  display: none;
}

.page-produtos .woocommerce-notices-wrapper {
  margin-bottom: 1rem;
}

/* WooCommerce product grid */

.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products.columns-2,
ul.products.columns-3,
ul.products.columns-4,
ul.products.columns-5,
ul.products.columns-6 {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2rem !important;
  width: 100% !important;
  clear: both;
}

@media (min-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products.columns-2,
  ul.products.columns-3,
  ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products.columns-3,
  ul.products.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .woocommerce ul.products.columns-4,
  .woocommerce-page ul.products.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products li.ctc-product-card {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 1rem !important;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  box-sizing: border-box;
}

.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last {
  clear: none !important;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
  width: 100% !important;
  height: auto;
  margin: 0 0 0.5rem !important;
  border-radius: 0.5rem;
  aspect-ratio: 1;
  object-fit: cover;
}

.ctc-product-image-disclaimer {
  margin: -0.35rem 0 0;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  font-style: italic;
  color: var(--muted-foreground);
  text-align: center;
}

body.single-product .woocommerce-product-gallery .ctc-product-image-disclaimer {
  margin: 0.5rem 0 0;
  max-width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
  padding: 0 !important;
}

.woocommerce ul.products li.product .price {
  margin: 0;
  color: var(--forest);
  font-weight: 600;
}

.ctc-product-card__cta {
  margin-top: auto;
  padding-top: 0.25rem;
}

.ctc-product-card__cta .ctc-wa-btn {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.ctc-wa-cta {
  margin-top: 1.25rem;
}

/* Single product */
body.single-product .site-main {
  padding-top: calc(var(--header-h) + 1.75rem);
  padding-bottom: 3rem;
}

body.admin-bar.single-product .liquid-glass-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar.single-product .liquid-glass-header {
    top: 46px;
  }
}

body.single-product .site-main > .woocommerce,
body.single-product .page-produto-single > .container {
  max-width: var(--container);
  margin: 0 auto;
}

body.single-product .page-produto-single > .container {
  padding: 0 1.25rem;
}

body.single-product .woocommerce-breadcrumb {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

body.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  body.single-product div.product {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 2.75rem;
  }
}

body.single-product div.product .woocommerce-product-gallery,
body.single-product div.product div.summary,
body.single-product div.product .woocommerce-tabs,
body.single-product div.product .product_meta {
  float: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.single-product .woocommerce-product-gallery {
  max-width: 420px;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image {
  max-width: 100%;
}

body.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

body.single-product div.summary {
  max-width: none;
}

body.single-product div.summary .product_title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.25;
  color: var(--charcoal);
}

body.single-product div.summary .price {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #b8860b;
}

body.single-product div.summary .woocommerce-product-rating {
  display: none !important;
}

body.single-product div.summary .woocommerce-product-details__short-description {
  margin-bottom: 1rem;
  max-width: 40rem;
  line-height: 1.65;
}

body.single-product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  clear: both;
  width: 100% !important;
}

body.single-product .woocommerce-tabs ul.tabs {
  display: none;
}

body.single-product .woocommerce-Tabs-panel {
  display: block !important;
  margin: 0;
  padding: 1.25rem 0 0;
  border: 0;
  max-width: none;
}

body.single-product .woocommerce-Tabs-panel h2:first-child {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  color: var(--forest);
}

body.single-product .woocommerce-Tabs-panel--description {
  max-width: 48rem;
  line-height: 1.7;
}

body.single-product #reviews,
body.single-product .woocommerce-Reviews,
body.single-product .woocommerce-noreviews,
body.single-product .comment-respond {
  display: none !important;
}

body.single-product .related,
body.single-product .upsells {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
}

.ctc-product-specs {
  margin: 1.25rem 0 0;
}

.ctc-product-specs__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.ctc-product-specs__table {
  width: 100%;
  max-width: 36rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0.5rem;
  overflow: hidden;
}

.ctc-product-specs__table th,
.ctc-product-specs__table td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.ctc-product-specs__table tr:nth-child(even) th,
.ctc-product-specs__table tr:nth-child(even) td {
  background: rgba(236, 239, 242, 0.65);
}

.ctc-product-specs__table th {
  width: 38%;
  color: var(--muted-foreground);
  font-weight: 600;
}

.ctc-product-specs__table tr:last-child th,
.ctc-product-specs__table tr:last-child td {
  border-bottom: none;
}

.woocommerce a.added_to_cart,
.woocommerce .button.add_to_cart_button,
.woocommerce .single_add_to_cart_button {
  display: none !important;
}

.site-main {
  min-height: 50vh;
}

.entry-content {
  line-height: 1.7;
}
