:root {
  --bg: #f4efe7;
  --surface: #ffffff;
  --surface-soft: #faf6ee;
  --text: #243024;
  --muted: #657063;
  --primary: #4f6840;
  --primary-dark: #374b2f;
  --accent: #b48a49;
  --line: rgba(36, 48, 36, 0.09);
  --shadow: 0 18px 42px rgba(47, 60, 44, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180, 138, 73, 0.08), transparent 22%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(183, 134, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7f1 0%, #f2ebe0 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.loader-logo-ring {
  position: absolute;
  top: -18px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 2px solid rgba(86, 111, 66, 0.12);
  border-top-color: rgba(86, 111, 66, 0.9);
  border-right-color: rgba(183, 134, 61, 0.8);
  animation: loaderSpin 1.5s linear infinite;
}

.loader-logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(55, 66, 52, 0.12);
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-inner h2 {
  margin: 18px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.loader-inner p {
  margin: 0;
  color: var(--muted);
}

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

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(183, 134, 61, 0.08),
      0 0 18px rgba(183, 134, 61, 0.22),
      0 0 34px rgba(86, 111, 66, 0.14);
  }

  50% {
    box-shadow:
      0 0 0 6px rgba(183, 134, 61, 0.12),
      0 0 24px rgba(183, 134, 61, 0.32),
      0 0 42px rgba(86, 111, 66, 0.2);
  }
}

@keyframes promoBarShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes promoBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(86, 111, 66, 0.06);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(86, 111, 66, 0.1);
  }
}

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

img,
iframe {
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.promo-bar {
  background: linear-gradient(90deg, #edf2e9, #f7efe2, #edf2e9);
  background-size: 200% 100%;
  color: #43523c;
  border-bottom: 1px solid rgba(67, 82, 60, 0.08);
  font-size: 0.86rem;
  font-weight: 600;
  animation: promoBarShift 8s ease-in-out infinite;
}

.promo-wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.promo-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(67, 82, 60, 0.08);
  box-shadow: 0 8px 18px rgba(86, 111, 66, 0.06);
  animation: promoBadgeFloat 3.8s ease-in-out infinite;
}

.promo-wrap span:nth-child(2) {
  animation-delay: 0.4s;
}

.promo-wrap span:nth-child(3) {
  animation-delay: 0.8s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 241, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  font-size: 1rem;
  color: #233022;
}

.logo-text {
  display: inline-block;
  min-width: 0;
}

.logo-collab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.logo-collab-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(36, 48, 36, 0.1);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
}

.logo em {
  color: var(--accent);
  font-style: normal;
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(183, 134, 61, 0.28);
  background: white;
  box-shadow:
    0 0 0 4px rgba(183, 134, 61, 0.08),
    0 0 18px rgba(183, 134, 61, 0.22),
    0 0 34px rgba(86, 111, 66, 0.14);
  animation: logoGlow 3.2s ease-in-out infinite;
}

.logo-image-secondary {
  animation: none;
  box-shadow: 0 14px 26px rgba(55, 66, 52, 0.12);
  border-color: rgba(180, 138, 73, 0.18);
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.menu a:hover,
.top-link:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #283227;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn,
.link-btn,
.summary-wa,
.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn,
.hero-whatsapp,
.summary-wa {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #f8fbf5;
  box-shadow: 0 10px 24px rgba(65, 83, 52, 0.16);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(65, 83, 52, 0.16);
  box-shadow: none;
}

.btn-sm {
  padding: 10px 16px;
}

.link-btn {
  margin-top: auto;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--primary-dark);
  background: #eff4eb;
  border: 1px solid rgba(65, 83, 52, 0.08);
  width: fit-content;
  white-space: nowrap;
}

.product-card .link-btn,
.cage-card .link-btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  border: 1px solid rgba(18, 140, 126, 0.22);
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.16);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-card .link-btn {
  position: relative;
  overflow: hidden;
}

.product-card .link-btn::before {
  content: "◉";
  margin-right: 8px;
  font-size: 0.78rem;
  opacity: 0.95;
}

.product-card .link-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-150%);
  transition: transform 0.5s ease;
}

.product-card .link-btn:hover,
.cage-card .link-btn:hover {
  box-shadow:
    0 16px 28px rgba(18, 140, 126, 0.22),
    0 0 0 6px rgba(37, 211, 102, 0.1);
}

.product-card .link-btn:hover::after {
  transform: translateX(150%);
}

.btn:hover,
.link-btn:hover,
.summary-wa:hover,
.hero-whatsapp:hover {
  transform: translateY(-1px);
}

.btn:hover,
.summary-wa:hover,
.hero-whatsapp:hover {
  box-shadow:
    0 16px 32px rgba(65, 83, 52, 0.2),
    0 0 0 6px rgba(86, 111, 66, 0.08);
}

.link-btn:hover {
  box-shadow: 0 12px 24px rgba(65, 83, 52, 0.12);
}

.hero {
  padding: 56px 0 26px;
}

.hero-grid,
.hero-panel-head,
.hero-price-list div,
.info-grid,
.category-grid,
.product-grid,
.cage-price-grid,
.cage-gallery-grid,
.support-grid,
.contact-shell,
.footer-wrap {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.hero-grid > *,
.contact-shell > *,
.product-grid > *,
.info-grid > *,
.category-grid > *,
.support-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf2e9;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.center {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.section-lead {
  max-width: 700px;
  margin-top: 12px;
}

.hero-copy h1,
.section h2,
.contact-card h3,
.cage-summary-head h3,
.cage-gallery-head h3 {
  margin: 14px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.12;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 12ch;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-copy p,
.section p,
.product-card p,
.cage-card p,
.contact-card p,
.contact-card small,
.bonus-box li,
.cage-free-list li,
.info-card-lite span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article,
.hero-panel,
.product-card,
.cage-summary-card,
.gallery-block,
.support-card,
.contact-card,
.info-card-lite {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats article,
.info-card-lite,
.support-card {
  padding: 18px;
}

.hero-stats strong,
.info-card-lite strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.hero-panel {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f8f5ef);
  border-top: 4px solid rgba(183, 134, 61, 0.24);
}

.hero-panel-head {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.hero-badge,
.product-tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf2e9;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f7efe2;
  color: #87632f;
  font-size: 0.74rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.product-status::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.58) 50%, transparent 80%);
  transform: translateX(-140%);
  animation: badgeShimmer 3.8s ease-in-out infinite;
}

.hero-badge-soft {
  background: #f7efe2;
  color: #87632f;
}

.hero-price-list {
  margin-top: 18px;
}

.hero-price-list div {
  grid-template-columns: 1fr auto;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31, 38, 31, 0.1);
}

.hero-price-list strong {
  font-size: 0.96rem;
}

.hero-price-list span {
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-whatsapp {
  margin-top: 20px;
  width: 100%;
}

.info-strip,
.section {
  padding: 20px 0 64px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-head {
  margin-bottom: 24px;
}

.story-shell,
.trust-grid {
  display: grid;
  gap: 20px;
}

.story-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  padding: 26px;
  background:
    radial-gradient(circle at top left, rgba(180, 138, 73, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #faf7f1);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(55, 66, 52, 0.08);
}

.story-copy p {
  max-width: 58ch;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.story-point,
.trust-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(55, 66, 52, 0.05);
}

.story-point strong,
.trust-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
  background:
    radial-gradient(circle at top right, rgba(180, 138, 73, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #faf7f1);
}

.trust-icon {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #edf2e9;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.video-card {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(183, 134, 61, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.96));
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(55, 66, 52, 0.08);
}

.video-head {
  margin-bottom: 18px;
}

.video-head .eyebrow,
.video-head h2 {
  margin-left: 0;
  text-align: left;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(55, 66, 52, 0.12);
  background: #000;
}

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.products {
  position: relative;
}

.products::before {
  content: "";
  position: absolute;
  inset: 42px 0 auto 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
  pointer-events: none;
}

.product-catalog-shell {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(183, 134, 61, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 247, 240, 0.96));
  border: 1px solid rgba(31, 38, 31, 0.08);
  box-shadow: 0 20px 50px rgba(55, 66, 52, 0.08);
}

.product-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(36, 48, 36, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(55, 66, 52, 0.08);
}

.filter-tab.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #f8fbf5;
  box-shadow: 0 14px 26px rgba(65, 83, 52, 0.16);
}

.product-toolbar-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.catalog-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.catalog-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(86, 111, 66, 0.9), rgba(183, 134, 61, 0.7));
}

.catalog-intro p {
  margin: 0;
  color: var(--muted);
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(55, 66, 52, 0.12);
  border-color: rgba(183, 134, 61, 0.2);
}

.category-icon {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef3ea;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.06rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.product-card,
.cage-card,
.bonus-box,
.gallery-block,
.support-card,
.contact-card {
  padding: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.96));
  grid-column: span 4;
  min-height: 100%;
}

.product-card.is-hidden {
  display: none;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(86, 111, 66, 0.88), rgba(183, 134, 61, 0.6));
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(55, 66, 52, 0.14);
  border-color: rgba(183, 134, 61, 0.2);
}

.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(183, 134, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf6ed, #ffffff);
  border: 1px solid rgba(31, 38, 31, 0.06);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 0;
  background: linear-gradient(180deg, #f7f2e9, #ffffff);
  padding: 12px;
  box-shadow: none;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.product-card:hover .product-image {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.product-media-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(31, 38, 31, 0.06), rgba(31, 38, 31, 0.66));
  color: #fffdf8;
  backdrop-filter: blur(8px);
}

.product-overlay-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.product-media-overlay strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.product-copy {
  display: grid;
  gap: 8px;
  grid-template-rows: auto auto 1fr;
}

.product-copy p:last-child {
  margin-bottom: 0;
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.product-facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4efe6;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4ede1;
  color: #8b6632;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  align-self: flex-start;
}

.product-chip + .link-btn {
  margin-top: 2px;
}

.product-top,
.cage-summary-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.product-card h3,
.cage-card h3,
.support-card h3 {
  margin: 2px 0 0;
  font-size: 1.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.featured-product {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 18px;
}

.featured-product .product-image {
  height: 100%;
  min-height: 280px;
}

.featured-product h3 {
  font-size: 1.38rem;
}

.featured-product .product-top {
  grid-column: 1 / -1;
}

.featured-product .product-media {
  min-height: 100%;
}

.featured-product .product-copy,
.featured-product .product-footer {
  grid-column: 2 / 3;
}

.featured-product .product-footer {
  align-self: end;
}

.elegant-product {
  background:
    radial-gradient(circle at top right, rgba(183, 134, 61, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 233, 0.98));
}

.price {
  margin: 2px 0 4px;
  color: var(--primary-dark);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.cage-shell {
  display: grid;
  gap: 26px;
}

.cage-summary-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(183, 134, 61, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #fbf8f2);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(55, 66, 52, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cage-summary-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(86, 111, 66, 0.92), rgba(183, 134, 61, 0.72));
}

.cage-summary-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 134, 61, 0.14), transparent 68%);
  opacity: 0.45;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cage-summary-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 50px rgba(55, 66, 52, 0.12),
    0 0 0 1px rgba(183, 134, 61, 0.12);
  border-color: rgba(183, 134, 61, 0.18);
}

.cage-summary-card:hover::after {
  transform: scale(1.08);
  opacity: 0.7;
}

.cage-summary-head p {
  margin: 8px 0 0;
  max-width: 48ch;
}

.summary-wa {
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(65, 83, 52, 0.14);
}

.cage-price-grid {
  margin-top: 22px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.cage-price-grid-b {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cage-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(55, 66, 52, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.5) 50%, transparent 75%);
  transform: translateX(-150%);
  transition: transform 0.55s ease;
}

.cage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(55, 66, 52, 0.1);
  border-color: rgba(183, 134, 61, 0.22);
}

.cage-card:hover::before {
  transform: translateX(150%);
}

.cage-note {
  margin: 0 0 4px;
}

.bonus-box {
  margin-top: 20px;
  background:
    linear-gradient(135deg, rgba(238, 243, 234, 0.88), rgba(251, 248, 242, 0.96));
  border: 1px solid rgba(86, 111, 66, 0.12);
  border-radius: 20px;
}

.bonus-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--primary-dark);
}

.cage-free-list {
  margin: 0;
  padding-left: 18px;
}

.delivery-pill {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef3ea, #f6eee1);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.86rem;
  position: relative;
  overflow: hidden;
}

.delivery-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.72) 48%, transparent 78%);
  transform: translateX(-160%);
  animation: deliveryShimmer 3.2s ease-in-out infinite;
}

.gallery-block {
  background:
    radial-gradient(circle at top left, rgba(183, 134, 61, 0.06), transparent 22%),
    linear-gradient(180deg, #ffffff, #faf7f1);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(55, 66, 52, 0.08);
  overflow: hidden;
}

.cage-gallery-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cage-gallery-head h3 {
  font-size: 1.45rem;
}

.gallery-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.gallery-nav-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 38, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(55, 66, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(55, 66, 52, 0.12);
  border-color: rgba(180, 138, 73, 0.18);
}

.cage-gallery-grid {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: contain;
  max-width: 100%;
}

.cage-gallery-grid::-webkit-scrollbar {
  display: none;
}

.cage-gallery-grid.is-dragging {
  cursor: grabbing;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
  border: 1px solid rgba(31, 38, 31, 0.08);
  box-shadow: 0 10px 22px rgba(55, 66, 52, 0.06);
  height: 250px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex: 0 0 320px;
  scroll-snap-align: start;
  user-select: none;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(20, 26, 20, 0.18));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(55, 66, 52, 0.1);
  border-color: rgba(180, 138, 73, 0.18);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gallery-button:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

.gallery-hero {
  flex-basis: min(58vw, 620px);
  height: 300px;
}

.gallery-wide {
  flex-basis: min(42vw, 440px);
  height: 250px;
}

.cage-section .section-head {
  margin-bottom: 28px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(19, 24, 19, 0.82);
  z-index: 50;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.lightbox-content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #243023;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-proof,
.support-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
}

.support-proof {
  padding: 7px 11px;
  background: #edf2e9;
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.support-note {
  padding: 8px 12px;
  background: #f7efe2;
  color: #87632f;
  font-size: 0.76rem;
  font-weight: 700;
}

.support-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(180, 138, 73, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #faf7f1);
}

.customer-rate {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f7efe2;
  color: #87632f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.support-card h3 {
  margin: 0 0 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
}

.contact-shell {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.map-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card h3 {
  margin: 14px 0 16px;
  font-size: 1.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.map-frame {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 16px;
}

.media-card {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(183, 134, 61, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #faf7f1);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(55, 66, 52, 0.08);
}

.media-card h3 {
  margin: 14px 0 10px;
  font-size: 1.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.media-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.media-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.media-btn {
  width: 100%;
  min-height: 46px;
}

.media-btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 83, 52, 0.12);
}

.spotify-frame-wrap {
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 38, 31, 0.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.spotify-frame {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 16px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-points div {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card h3 {
  font-size: 1.25rem;
}

.contact-btn {
  width: 100%;
}

.site-footer {
  padding: 16px 0 34px;
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.top-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #f8fbf5;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(65, 83, 52, 0.24);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #f8fbf5;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(65, 83, 52, 0.18);
}

.mobile-cta-item-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  border: 1px solid rgba(31, 38, 31, 0.08);
  box-shadow: 0 10px 20px rgba(55, 66, 52, 0.08);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes badgeShimmer {
  0%,
  72%,
  100% {
    transform: translateX(-140%);
  }

  84% {
    transform: translateX(140%);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(65, 83, 52, 0.24);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      0 18px 32px rgba(65, 83, 52, 0.28),
      0 0 0 10px rgba(86, 111, 66, 0.08);
  }
}

@keyframes deliveryShimmer {
  0%,
  70%,
  100% {
    transform: translateX(-160%);
  }

  84% {
    transform: translateX(160%);
  }
}

@media (max-width: 1080px) {
  .story-shell {
    grid-template-columns: 1fr;
  }

  .story-points,
  .trust-grid,
  .category-grid,
  .support-grid,
  .info-grid,
  .cage-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    grid-column: span 1;
  }

  .featured-product {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cage-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .btn-sm {
    display: none;
  }

  .nav {
    gap: 12px;
    padding: 12px 0;
  }

  .logo {
    gap: 10px;
    font-size: 0.95rem;
    align-items: center;
  }

  .logo-text {
    display: block;
    max-width: 250px;
    line-height: 1.2;
  }

  .logo-collab {
    gap: 6px;
  }

  .logo-image {
    width: 44px;
    height: 44px;
  }

  .logo-collab-mark {
    width: 18px;
    height: 18px;
    font-size: 0.78rem;
  }


  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-soft);
  }

  .hero-grid,
  .contact-shell,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .category-grid,
  .support-grid,
  .cage-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats,
  .cage-price-grid {
    grid-template-columns: 1fr;
  }

  .featured-product {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .featured-product .product-top,
  .featured-product .product-media,
  .featured-product .product-copy,
  .featured-product .product-footer {
    grid-column: auto;
  }

  .gallery-wide {
    flex-basis: min(52vw, 420px);
  }

  .gallery-hero {
    flex-basis: min(68vw, 520px);
  }

  .cage-gallery-top {
    align-items: flex-start;
  }

  .cage-summary-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .product-catalog-shell,
  .video-card,
  .gallery-block,
  .cage-summary-card,
  .contact-shell {
    padding: 24px;
  }

  .lightbox-content {
    max-width: min(94vw, 860px);
  }
}

@media (max-width: 720px) {
  .story-points,
  .trust-grid,
  .category-grid,
  .product-grid,
  .support-grid,
  .cage-gallery-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .featured-product,
  .gallery-wide,
  .gallery-hero {
    grid-column: span 1;
  }

  .product-catalog-shell {
    padding: 20px;
  }

  .product-filters {
    gap: 8px;
  }

  .filter-tab {
    flex: 1 1 calc(50% - 8px);
  }

  .product-card {
    grid-column: span 1;
  }

  .cage-gallery-top {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-nav {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1140px);
  }

  .promo-wrap {
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    padding: 10px 0 8px;
  }

  .logo {
    font-size: 0.92rem;
  }

  .logo-image {
    width: 38px;
    height: 38px;
    box-shadow:
      0 0 0 3px rgba(180, 138, 73, 0.08),
      0 0 14px rgba(180, 138, 73, 0.18),
      0 0 26px rgba(79, 104, 64, 0.12);
  }

  .logo-image-secondary {
    box-shadow: 0 10px 20px rgba(55, 66, 52, 0.1);
  }

  .logo-collab {
    gap: 6px;
  }

  .logo-collab-mark {
    width: 16px;
    height: 16px;
    font-size: 0.72rem;
  }

  .logo-text {
    max-width: 190px;
  }

  .hero-copy h1 {
    font-size: 2rem;
    max-width: none;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .product-toolbar-note {
    font-size: 0.9rem;
  }

  .hero-actions .btn-secondary,
  .hero-whatsapp,
  .summary-wa,
  .link-btn {
    width: 100%;
  }

  .product-top {
    flex-wrap: wrap;
  }

  .product-footer {
    flex-wrap: wrap;
  }

  .product-footer .link-btn {
    width: 100%;
  }

  .product-copy {
    gap: 6px;
  }

  .hero-panel,
  .product-catalog-shell,
  .product-card,
  .video-card,
  .cage-summary-card,
  .cage-card,
  .bonus-box,
  .gallery-block,
  .support-card,
  .map-card,
  .media-card,
  .contact-card,
  .story-shell,
  .story-point,
  .trust-card,
  .hero-stats article,
  .info-card-lite,
  .contact-points div {
    padding: 18px;
  }

  .hero-panel-head,
  .hero-price-list div {
    grid-template-columns: 1fr;
  }

  .hero-panel-head {
    gap: 10px;
  }

  .hero-price-list div {
    gap: 4px;
  }

  .hero-copy p,
  .section p,
  .product-card p,
  .cage-card p,
  .contact-card p,
  .contact-card small,
  .bonus-box li,
  .cage-free-list li,
  .info-card-lite span {
    font-size: 0.93rem;
  }

  .price {
    font-size: 1.6rem;
  }

  .product-image {
    height: 170px;
  }

  .featured-product .product-image {
    height: 220px;
    min-height: 220px;
  }

  .cage-gallery-top {
    align-items: stretch;
  }

  .gallery-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .gallery-card {
    flex-basis: 82vw;
    height: 220px;
  }

  .gallery-wide,
  .gallery-hero {
    flex-basis: 88vw;
    height: 240px;
  }

  .gallery-nav {
    justify-content: space-between;
    width: 100%;
  }

  .gallery-card img {
    height: 100%;
  }

  .page-loader {
    padding: 18px;
  }

  .loader-logo-ring {
    width: 116px;
    height: 116px;
    top: -14px;
  }

  .loader-logo {
    width: 84px;
    height: 84px;
  }

  .loader-inner h2 {
    font-size: 1.18rem;
  }

  .loader-inner p {
    font-size: 0.92rem;
  }

  .lightbox {
    padding: 16px;
  }

  .video-card {
    padding: 18px;
    border-radius: 22px;
  }

  .video-head {
    margin-bottom: 14px;
  }

  .map-frame {
    height: 260px;
  }

  .media-actions {
    grid-template-columns: 1fr;
  }

  .spotify-frame {
    height: 300px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .footer-wrap {
    text-align: center;
    gap: 10px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 46;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(250, 247, 241, 0.92);
    border: 1px solid rgba(31, 38, 31, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 34px rgba(55, 66, 52, 0.12);
  }

  .site-footer {
    padding-bottom: 110px;
  }
}
