:root {
  --gold: #b99d77;
  --cream: #f3d7a7;
  --coral: #f47b50;
  --green: #005b31;
  --deep-green: #005b31;
  --sage: #c9d0b8;
  --wine: var(--green);
  --wine-dark: var(--green);
  --clay: var(--coral);
  --straw: var(--cream);
  --paper: var(--cream);
  --text: var(--green);
  --muted: rgba(0, 91, 49, 0.72);
  --line: rgba(0, 91, 49, 0.18);
  --shadow: 0 26px 80px rgba(0, 91, 49, 0.18);
  --main-font: "DIN Pro", Arial, sans-serif;
  --display-font: "Dosis", "DIN Pro", Arial, sans-serif;
  --strong-font: "DIN Pro Condensed", "DIN Pro", Arial, sans-serif;
  --accent-font: "Motterdam", "DIN Pro", Arial, sans-serif;
  --footer-font: "DIN Pro", Arial, sans-serif;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINPro.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINPro-Medium.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINPro-Bold.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINPro-Black.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "DIN Pro Condensed";
  src: url("../fonts/DINPro-CondensedBlack.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "Dosis";
  src: url("../fonts/Dosis-Bold.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

@font-face {
  font-family: "Motterdam";
  src: url("../fonts/Motterdam.otf?v=20260713") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Aristotelica Small Caps";
  src: url("../fonts/AristotelicaSmallCaps-DemiBold.ttf?v=20260713") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--main-font);
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: var(--green);
  color: #f3d7a7;
  box-shadow: 0 14px 44px rgba(0, 91, 49, 0.18);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 14px 44px rgba(0, 91, 49, 0.1);
  backdrop-filter: blur(18px);
  padding-block: 10px;
}

.store-header.site-header {
  background: var(--green);
  color: #f3d7a7;
  box-shadow: 0 14px 44px rgba(0, 91, 49, 0.18);
  backdrop-filter: none;
}

.site-header:not(.is-open) {
  background: var(--green);
  color: #f3d7a7;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  display: block;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
  background: var(--gold);
}

.cart-button,
.menu-toggle,
.cart-head button,
.ritual-controls button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--cream);
  color: var(--green);
  font-weight: 900;
}

.cart-button span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #f3d7a7;
  color: var(--wine);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 112px clamp(18px, 5vw, 72px) 62px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0 52%, var(--sage) 52% 100%);
  color: var(--green);
}

.hero-media {
  position: relative;
  order: 2;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.hero-content {
  order: 1;
  width: min(760px, 100%);
  min-width: 0;
}

.hero-logo {
  width: clamp(92px, 10vw, 126px);
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
}

.hero-label,
.section-kicker {
  display: block;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cart-head h2 {
  margin: 0;
  font-family: var(--strong-font);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  color: var(--green);
  font-size: clamp(48px, 6vw, 76px);
  text-shadow: none;
  overflow-wrap: break-word;
}

.hero p:not(.hero-label),
.story-copy p,
.order-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  color: #f3d7a7;
  box-shadow: 0 16px 34px rgba(244, 123, 80, 0.24);
}

.button-secondary {
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  background: var(--wine);
  color: #f3d7a7;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(243, 215, 167, 0.24);
  border-radius: 8px;
  background: var(--green);
  color: #f3d7a7;
  backdrop-filter: blur(14px);
  order: 3;
}

.hero-panel span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display-font);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.hero-panel p {
  margin: 14px 0 0;
  color: rgba(243, 215, 167, 0.72);
  line-height: 1.55;
}

.hero-panel .button {
  width: 100%;
  margin-top: 22px;
}

.section {
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.featured-section {
  background: var(--green);
  color: #f3d7a7;
}

.featured-section h2 {
  max-width: 820px;
  color: #f3d7a7;
}

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

.featured-card {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 12px;
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 22px 60px rgba(0, 91, 49, 0.18);
  transition: transform 0.22s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.featured-card span {
  padding-inline: 6px;
  font-weight: 900;
  font-size: 20px;
}

.featured-card strong {
  padding: 0 6px 8px;
  color: var(--coral);
  font-size: 24px;
}

.featured-action {
  margin-top: 26px;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 64px;
  background: var(--sage);
  overflow: hidden;
}

.store-hero-copy,
.store-hero-media {
  min-width: 0;
}

.store-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.store-hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.store-hero-media {
  overflow: hidden;
  aspect-ratio: 16 / 12;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.store-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background: var(--cream);
}

.section h2 {
  color: var(--wine);
  font-size: clamp(34px, 4.5vw, 62px);
  overflow-wrap: break-word;
}

.story-copy p,
.order-copy p {
  margin: 24px 0 0;
  color: var(--muted);
}

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

.seal-card {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 91, 49, 0.08);
}

.seal-card img {
  width: min(132px, 52%);
}

.seal-card h3 {
  margin: 16px 0 0;
  color: var(--wine);
  font-size: 20px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(243, 215, 167, 0.18);
  background: var(--wine);
  color: var(--straw);
}

.home-marquee {
  position: relative;
  z-index: 3;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 91, 49, 0.98), rgba(0, 91, 49, 0.96)),
    url("../artes/underscore.png");
  background-size: auto, 220px auto;
  box-shadow: 0 18px 44px rgba(0, 91, 49, 0.18);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 16px 34px;
  font-family: var(--display-font);
  font-size: clamp(22px, 3vw, 34px);
  white-space: nowrap;
}

.home-marquee span {
  padding: 20px 42px;
  color: #f3d7a7;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(185, 157, 119, 0.16);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.product-section {
  background: var(--paper);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3d7a7;
  box-shadow: 0 20px 54px rgba(0, 91, 49, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-info span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 10px 0;
  color: var(--wine);
  font-size: 25px;
}

.product-info p {
  min-height: 58px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.product-info div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-info strong {
  color: var(--wine);
  font-size: 25px;
}

.ritual-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  background: var(--wine-dark);
  color: #f3d7a7;
}

.ritual-section h2 {
  color: #f3d7a7;
}

.ritual-gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.ritual-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.ritual-gallery img.is-active {
  opacity: 1;
  transform: scale(1);
}

.ritual-steps {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.ritual-steps li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(243, 215, 167, 0.16);
}

.ritual-steps strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 42px;
}

.ritual-steps span {
  color: rgba(243, 215, 167, 0.78);
  line-height: 1.65;
}

.ritual-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.ritual-controls button {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: rgba(243, 215, 167, 0.28);
}

.ritual-controls button.is-active {
  background: var(--gold);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
  background: var(--green);
  color: #f3d7a7;
}

.shop-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--sage);
}

.shop-callout h2 {
  max-width: 760px;
}

.shop-callout p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.order-section h2 {
  color: #f3d7a7;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(243, 215, 167, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: rgba(243, 215, 167, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 215, 167, 0.22);
  border-radius: 8px;
  padding: 14px 15px;
  background: rgba(243, 215, 167, 0.92);
  color: var(--text);
  outline: none;
}

.order-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--straw);
  line-height: 1.45;
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 91, 49, 0.42);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(420px, 100%);
  height: 100%;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  padding: 28px;
  background: var(--paper);
  box-shadow: -28px 0 70px rgba(0, 91, 49, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cart-head h2 {
  color: var(--wine);
  font-size: 34px;
}

.cart-head button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: #f3d7a7;
  font-size: 26px;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.cart-empty {
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #f3d7a7;
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item strong {
  display: block;
  color: var(--wine);
}

.cart-item span {
  color: var(--muted);
  font-size: 13px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--wine);
  cursor: pointer;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.cart-total span {
  color: var(--muted);
}

.cart-total strong {
  color: var(--wine);
  font-size: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  padding: 54px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: #f3d7a7;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 440px;
  color: rgba(243, 215, 167, 0.66);
}

.site-footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer address a {
  color: rgba(243, 215, 167, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final Canastra badge override: no backing circle, larger icon */
.canastra-symbol img,
body .canastra-symbol img {
  width: clamp(180px, 18vw, 280px) !important;
  max-width: 72vw !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 20px rgba(62, 36, 20, 0.18)) !important;
}

.canastra-symbol,
body .canastra-symbol {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 680px) {
  .canastra-symbol img,
  body .canastra-symbol img {
    width: min(64vw, 240px) !important;
  }
}

/* Mobile first-view rescue: keep the launch slide readable before the next section */
@media (max-width: 680px) {
  .published-home .published-hero,
  body.home .published-home .published-hero,
  body.front-page .published-home .published-hero,
  body.page-template-front-page .published-home .published-hero {
    overflow: hidden !important;
  }

  .published-home .published-hero-slider.is-cover-active,
  body.home .published-home .published-hero-slider.is-cover-active,
  body.front-page .published-home .published-hero-slider.is-cover-active,
  body.page-template-front-page .published-home .published-hero-slider.is-cover-active {
    min-height: 640px !important;
    height: 640px !important;
    aspect-ratio: auto !important;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0 52%, rgba(255, 248, 236, 0.9) 70%, rgba(232, 241, 227, 0.9) 100%),
      url("../artes/underscore.png") center / 165px auto repeat !important;
  }

  .published-home .published-hero-slider.is-cover-active::before,
  body.home .published-home .published-hero-slider.is-cover-active::before,
  body.front-page .published-home .published-hero-slider.is-cover-active::before,
  body.page-template-front-page .published-home .published-hero-slider.is-cover-active::before {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.2) 0 21%, rgba(255, 248, 236, 0.98) 42%, rgba(255, 248, 236, 0.82) 100%),
      radial-gradient(circle at 86% 15%, rgba(0, 91, 49, 0.16), transparent 42%),
      url("../artes/underscore.png") center / 165px auto repeat !important;
  }

  .published-home .published-hero-slider.is-cover-active::after,
  body.home .published-home .published-hero-slider.is-cover-active::after,
  body.front-page .published-home .published-hero-slider.is-cover-active::after,
  body.page-template-front-page .published-home .published-hero-slider.is-cover-active::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0) 0 28%, rgba(255, 248, 236, 0.96) 42%, rgba(255, 248, 236, 0.2) 100%),
      linear-gradient(168deg, rgba(255, 248, 236, 0) 0 61%, rgba(0, 91, 49, 0.075) 61.5% 68%, rgba(255, 248, 236, 0) 68.4% 100%) !important;
  }

  .published-cover-callout,
  body.home .published-cover-callout,
  body.front-page .published-cover-callout,
  body.page-template-front-page .published-cover-callout {
    z-index: 5 !important;
    top: 218px !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-width: none !important;
    gap: 11px !important;
    text-align: left !important;
    transform: none !important;
  }

  .published-cover-callout.is-active {
    transform: none !important;
  }

  .published-cover-callout::before,
  body.home .published-cover-callout::before,
  body.front-page .published-cover-callout::before,
  body.page-template-front-page .published-cover-callout::before {
    left: 50% !important;
    top: 48% !important;
    width: min(108vw, 460px) !important;
    opacity: 0.18 !important;
    transform: translate(-50%, -50%) rotate(-2deg) !important;
  }

  .published-cover-callout::after,
  body.home .published-cover-callout::after,
  body.front-page .published-cover-callout::after,
  body.page-template-front-page .published-cover-callout::after {
    display: none !important;
  }

  .published-cover-callout strong {
    max-width: 330px !important;
    font-size: clamp(44px, 15vw, 58px) !important;
    line-height: 0.9 !important;
  }

  .published-cover-callout em {
    max-width: 315px !important;
    font-size: 17px !important;
    line-height: 1.26 !important;
  }

  .published-cover-callout a {
    width: fit-content !important;
    min-height: 50px !important;
    padding: 0 24px !important;
  }

  .published-home .published-hero-slider > img.published-cover-image,
  body.home .published-home .published-hero-slider > img.published-cover-image,
  body.front-page .published-home .published-hero-slider > img.published-cover-image,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
    z-index: 2 !important;
    top: 18px !important;
    right: -52px !important;
    bottom: auto !important;
    left: auto !important;
    width: min(88vw, 360px) !important;
    max-height: 230px !important;
    object-fit: contain !important;
    opacity: 0.98 !important;
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1) !important;
  }

  .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.home .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.front-page .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image.is-active {
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(1) !important;
  }

  .published-home .published-hero-slider .hero-media-arrow,
  body.home .published-home .published-hero-slider .hero-media-arrow,
  body.front-page .published-home .published-hero-slider .hero-media-arrow,
  body.page-template-front-page .published-home .published-hero-slider .hero-media-arrow {
    top: 374px !important;
    width: 42px !important;
    height: 42px !important;
    z-index: 8 !important;
  }

  .published-home .published-hero-slider .hero-media-arrow-prev,
  body.home .published-home .published-hero-slider .hero-media-arrow-prev,
  body.front-page .published-home .published-hero-slider .hero-media-arrow-prev,
  body.page-template-front-page .published-home .published-hero-slider .hero-media-arrow-prev {
    left: 14px !important;
  }

  .published-home .published-hero-slider .hero-media-arrow-next,
  body.home .published-home .published-hero-slider .hero-media-arrow-next,
  body.front-page .published-home .published-hero-slider .hero-media-arrow-next,
  body.page-template-front-page .published-home .published-hero-slider .hero-media-arrow-next {
    right: 14px !important;
  }

  .published-home .published-hero-slider .hero-media-dots,
  body.home .published-home .published-hero-slider .hero-media-dots,
  body.front-page .published-home .published-hero-slider .hero-media-dots,
  body.page-template-front-page .published-home .published-hero-slider .hero-media-dots {
    right: 22px !important;
    bottom: 28px !important;
    z-index: 8 !important;
  }
}

@media (max-width: 390px) {
  .published-home .published-hero-slider.is-cover-active,
  body.home .published-home .published-hero-slider.is-cover-active,
  body.front-page .published-home .published-hero-slider.is-cover-active,
  body.page-template-front-page .published-home .published-hero-slider.is-cover-active {
    min-height: 665px !important;
    height: 665px !important;
  }

  .published-cover-callout,
  body.home .published-cover-callout,
  body.front-page .published-cover-callout,
  body.page-template-front-page .published-cover-callout {
    top: 224px !important;
  }

  .published-cover-callout strong {
    max-width: 300px !important;
    font-size: 48px !important;
  }

  .published-cover-callout em {
    max-width: 292px !important;
    font-size: 16px !important;
  }
}

/* Cariama medallion section: no wave stripe */
.published-taste,
body.home .published-taste,
body.front-page .published-taste,
body.page-template-front-page .published-taste {
  background:
    radial-gradient(circle at 70% 40%, rgba(166, 29, 32, 0.09), transparent 30%),
    radial-gradient(circle at 16% 22%, rgba(0, 91, 49, 0.08), transparent 28%),
    linear-gradient(116deg, #fff8ec 0 48%, #edf4e9 48% 100%) !important;
}

.published-taste::before,
body.home .published-taste::before,
body.front-page .published-taste::before,
body.page-template-front-page .published-taste::before {
  inset: 50% auto auto 54% !important;
  display: block !important;
  width: clamp(260px, 28vw, 520px) !important;
  height: clamp(260px, 28vw, 520px) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle, rgba(255, 248, 236, 0.58) 0 43%, rgba(255, 248, 236, 0) 44%),
    url("../artes/logo-Cariama-nova.png") center / contain no-repeat !important;
  content: "" !important;
  opacity: 0.12 !important;
  filter: saturate(0.95) contrast(1.05) !important;
  transform: translate(-50%, -50%) rotate(-7deg) !important;
  pointer-events: none !important;
}

.published-taste::after,
body.home .published-taste::after,
body.front-page .published-taste::after,
body.page-template-front-page .published-taste::after {
  right: clamp(42px, 7vw, 150px) !important;
  bottom: clamp(42px, 6vw, 90px) !important;
  width: clamp(150px, 14vw, 245px) !important;
  aspect-ratio: 1 / 1.18 !important;
  background: url("../artes/logo-Cariama-nova.png") center / contain no-repeat !important;
  opacity: 0.82 !important;
  filter: drop-shadow(0 22px 34px rgba(81, 53, 31, 0.16)) !important;
  transform: none !important;
}

.published-seal,
body.home .published-seal,
body.front-page .published-seal,
body.page-template-front-page .published-seal {
  width: clamp(92px, 7.6vw, 132px) !important;
  opacity: 1 !important;
  filter: drop-shadow(0 14px 22px rgba(81, 53, 31, 0.13)) !important;
}

@media (max-width: 920px) {
  .published-taste,
  body.home .published-taste,
  body.front-page .published-taste,
  body.page-template-front-page .published-taste {
    background:
      radial-gradient(circle at 50% 18%, rgba(166, 29, 32, 0.08), transparent 32%),
      linear-gradient(180deg, #fff8ec 0 58%, #edf4e9 100%) !important;
  }

  .published-taste::before,
  body.home .published-taste::before,
  body.front-page .published-taste::before,
  body.page-template-front-page .published-taste::before {
    left: 50% !important;
    top: 42% !important;
    width: min(82vw, 360px) !important;
    height: min(82vw, 360px) !important;
    opacity: 0.09 !important;
    transform: translate(-50%, -50%) rotate(-6deg) !important;
  }

  .published-taste::after,
  body.home .published-taste::after,
  body.front-page .published-taste::after,
  body.page-template-front-page .published-taste::after {
    right: 50% !important;
    bottom: 28px !important;
    width: min(40vw, 150px) !important;
    opacity: 0.72 !important;
    transform: translateX(50%) !important;
  }
}

/* Canastra badge without the beige backing circle */
.canastra-symbol img,
body .canastra-symbol img {
  width: clamp(170px, 17vw, 260px) !important;
  max-width: 72vw !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 20px rgba(62, 36, 20, 0.18)) !important;
}

.canastra-symbol,
body .canastra-symbol {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 680px) {
  .canastra-symbol img,
  body .canastra-symbol img {
    width: min(62vw, 230px) !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--wine);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .hero,
  .story-section,
  .ritual-section,
  .order-section,
  .store-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: static;
    width: min(360px, 100%);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    width: 100%;
    padding: 104px 24px 56px;
    background: var(--cream);
  }

  .hero-content,
  .hero-actions,
  .hero-media,
  .hero-panel {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .hero-actions {
    width: calc(100vw - 48px);
  }

  .hero h1 {
    font-size: clamp(36px, 9vw, 40px);
    line-height: 1.06;
  }

  .hero p:not(.hero-label) {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-label,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.11em;
    line-height: 1.5;
  }

  .section h2 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.04;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(0, 91, 49, 0.84), rgba(0, 91, 49, 0.58));
  }

  .hero-logo {
    width: 108px;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
  }

  .hero-actions,
  .product-info div,
  .shop-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .store-hero h1 {
    font-size: clamp(36px, 9vw, 42px);
    line-height: 1.06;
  }

  .store-hero,
  .store-hero-copy,
  .store-hero-media,
  .store-hero p,
  .section-heading,
  .section h2 {
    max-width: calc(100vw - 48px);
  }

  .store-hero {
    width: 100vw;
  }

  .button {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .seal-grid {
    grid-template-columns: 1fr;
  }

  .ritual-gallery {
    aspect-ratio: 16 / 12;
  }

  .cart-panel {
    padding: 22px;
  }
}

/* Ecommerce polish */
html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  background: var(--cream);
}

.site-header {
  height: 72px;
  padding-block: 10px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.site-nav {
  gap: 28px;
  text-transform: uppercase;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 72px;
  background:
    linear-gradient(135deg, rgba(201, 208, 184, 0.72), transparent 34%),
    var(--cream);
}

.hero-content {
  width: min(620px, 100%);
}

.hero-logo {
  width: 116px;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1;
}

.hero p:not(.hero-label) {
  max-width: 520px;
  margin-top: 20px;
  color: var(--green);
  font-size: 18px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-media {
  order: 2;
  aspect-ratio: 16 / 11;
  border: 10px solid var(--cream);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 91, 49, 0.22);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 48px;
  order: 3;
  width: min(380px, 32vw);
  margin: 0;
  padding: 22px;
  background: var(--green);
  box-shadow: 0 24px 64px rgba(0, 91, 49, 0.22);
}

.hero-panel strong {
  font-size: clamp(28px, 3vw, 38px);
}

.hero-panel p {
  max-width: 360px;
  color: rgba(243, 215, 167, 0.82);
}

.hero .hero-panel p {
  color: rgba(243, 215, 167, 0.78) !important;
}

.hero-panel .button {
  width: auto;
  min-width: 210px;
}

.button {
  min-height: 48px;
  border-radius: 8px;
}

.button-primary {
  background: var(--coral);
}

.button-secondary {
  background: transparent;
}

.featured-section {
  padding-top: 76px;
}

.featured-section .section-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.featured-section h2 {
  max-width: 680px;
  font-size: clamp(32px, 4vw, 54px);
}

.featured-grid {
  align-items: stretch;
}

.featured-card {
  padding: 10px;
  background: var(--cream);
}

.featured-card img {
  aspect-ratio: 1 / 1;
}

.featured-card span,
.featured-card strong {
  padding-inline: 10px;
}

.story-section,
.shop-callout {
  background: var(--sage);
}

.seal-card,
.product-card,
.order-form,
.cart-panel {
  border-radius: 8px;
}

.store-hero {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  padding-top: 120px;
  background: var(--sage);
}

.store-hero h1 {
  max-width: 540px;
  font-size: clamp(46px, 5vw, 70px);
}

.store-hero-media {
  aspect-ratio: 16 / 10;
  border: 10px solid var(--cream);
}

.product-section {
  background: var(--cream);
}

.product-card {
  background: var(--sage);
}

.product-info {
  background: var(--cream);
}

.product-info p {
  min-height: 0;
}

.product-info div {
  align-items: stretch;
}

.product-info .button {
  min-width: 128px;
}

@media (max-width: 980px) {
  .hero,
  .store-hero {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-panel {
    position: static;
    order: initial;
    margin: 0;
  }

  .featured-section .section-heading {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 68px;
  }

  .hero {
    padding: 96px 20px 56px;
    background: var(--cream);
  }

  .hero-content,
  .hero-actions,
  .hero-media,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-panel {
    order: 3;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .hero p:not(.hero-label) {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-media {
    border-width: 6px;
  }

  .hero-panel {
    padding: 20px;
  }

  .hero-panel .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .featured-section {
    padding-inline: 20px;
  }

  .featured-card img {
    aspect-ratio: 4 / 3;
  }

  .store-hero {
    width: 100%;
    padding: 96px 20px 56px;
  }

  .store-hero,
  .store-hero-copy,
  .store-hero-media,
  .store-hero p,
  .section-heading,
  .section h2 {
    max-width: 100%;
  }
}

/* Cariama visual refresh */
:root {
  --gold: #b99d77;
  --cream: #f3d7a7;
  --green: #005b31;
  --deep-green: #005b31;
  --coral: #f47b50;
  --sage: #c9d0b8;
  --paper: #f3d7a7;
  --ink: #005b31;
  --muted: rgba(0, 91, 49, 0.72);
  --line: rgba(0, 91, 49, 0.18);
  --shadow: 0 28px 70px rgba(0, 91, 49, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 157, 119, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(201, 208, 184, 0.54), transparent 34%),
    linear-gradient(180deg, #f3d7a7 0%, #f3d7a7 48%, #f3d7a7 100%);
  color: var(--ink);
}

.site-header {
  height: 78px;
  background: rgba(0, 91, 49, 0.96);
  box-shadow: 0 12px 30px rgba(0, 91, 49, 0.16);
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand strong {
  font-size: 18px;
}

.brand small,
.site-nav {
  letter-spacing: 0.08em;
}

.hero {
  min-height: 92vh;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.08fr);
  padding: 122px clamp(22px, 6vw, 86px) 78px;
  background:
    linear-gradient(90deg, rgba(243, 215, 167, 0.97) 0 49%, rgba(201, 208, 184, 0.86) 49% 100%),
    url("../artes/underscore.png");
  isolation: isolate;
}

.hero-content::before {
  position: absolute;
  inset: clamp(34px, 5vw, 70px) -4% auto -5%;
  z-index: -1;
  width: min(900px, 116%);
  height: clamp(310px, 40vw, 520px);
  background-image: url("data:image/svg+xml,%3Csvg width='980' height='560' viewBox='0 0 980 560' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M58 261C142 238 229 232 317 242C404 251 468 284 548 290C646 298 711 245 802 248C856 250 901 267 940 260' stroke='%23f47b50' stroke-width='8' opacity='.16'/%3E%3Cpath d='M45 196C112 184 184 181 255 187C326 193 380 204 442 187C509 169 594 151 664 181C727 208 762 257 834 263C879 267 920 260 950 254' stroke='%23b99d77' stroke-width='5' opacity='.5'/%3E%3Cpath d='M96 228C164 232 226 224 292 231C360 238 405 263 471 281C526 304 587 305 633 279C690 247 728 224 801 225C849 226 887 239 930 235' stroke='%23b99d77' stroke-width='3.4' opacity='.62'/%3E%3Cpath d='M121 300C201 292 270 283 349 290C432 298 496 326 577 321C655 316 722 282 812 287C866 290 912 304 955 296' stroke='%23b99d77' stroke-width='2.7' opacity='.42'/%3E%3Cpath d='M177 360C246 356 303 345 369 351C425 356 475 372 534 369C609 365 665 336 739 342C788 346 827 359 878 352' stroke='%23b99d77' stroke-width='2.2' opacity='.32'/%3E%3Cpath d='M392 147C421 154 450 166 470 188C483 202 490 220 507 225C531 232 552 218 569 235C582 248 582 269 601 279' stroke='%23b99d77' stroke-width='2.4' opacity='.5'/%3E%3Cpath d='M548 137C566 158 571 184 588 204C607 227 641 229 664 249' stroke='%23b99d77' stroke-width='2' opacity='.42'/%3E%3Cpath d='M693 236C711 218 738 212 766 221C792 230 814 249 845 249' stroke='%23b99d77' stroke-width='1.8' opacity='.34'/%3E%3Cpath d='M300 408C381 395 441 382 509 389C570 395 622 416 690 407C739 401 781 380 827 372' stroke='%23b99d77' stroke-width='2.3' opacity='.28'/%3E%3Cpath d='M36 244C164 238 282 248 391 267C518 289 630 321 763 310C833 304 893 285 956 280' stroke='%23006b3f' stroke-width='1.4' opacity='.18'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.95;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  z-index: -1;
  width: min(560px, 45vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 123, 80, 0.16);
  content: "";
}

.hero-logo {
  display: none;
}

.hero-content,
.hero-media,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-label,
.section-kicker {
  color: #b99d77;
}

.hero h1 {
  max-width: 700px;
  color: var(--green);
  font-size: clamp(58px, 7.2vw, 104px);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero p:not(.hero-label) {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
}

.hero-media {
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 0 72px 0 72px;
  box-shadow: 28px 28px 0 rgba(0, 91, 49, 0.12), var(--shadow);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.75s ease, transform 6s ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(243, 215, 167, 0.58);
  border-radius: 0 58px 0 58px;
  content: "";
  pointer-events: none;
}

.hero-media-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(270px, calc(100% - 56px));
  padding: 18px 20px;
  background: rgba(243, 215, 167, 0.94);
  color: var(--green);
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.18);
}

.hero-media-note span {
  display: block;
  color: #b99d77;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-media-note strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display-font);
  font-size: 26px;
  line-height: 1.05;
}

.hero-media-dots {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-media-dots button {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 215, 167, 0.5);
  box-shadow: 0 6px 16px rgba(0, 91, 49, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-media-dots button.is-active {
  width: 54px;
  background: var(--gold);
}

.hero-panel {
  right: clamp(24px, 6vw, 92px);
  bottom: 58px;
  width: min(390px, 34vw);
  border: 1px solid rgba(243, 215, 167, 0.26);
  border-radius: 8px;
  background: rgba(0, 91, 49, 0.96);
  box-shadow: 0 24px 70px rgba(0, 91, 49, 0.24);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
  margin: 34px 0 0;
}

.hero-proof div {
  border-top: 1px solid rgba(0, 91, 49, 0.24);
  padding-top: 14px;
}

.hero-proof dt {
  color: var(--green);
  font-family: var(--accent-font);
  font-size: 26px;
  font-weight: 400;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.button {
  border-radius: 4px;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(244, 123, 80, 0.26);
}

.button-secondary {
  border-color: rgba(0, 91, 49, 0.48);
  background: rgba(243, 215, 167, 0.18);
}

.featured-section {
  position: relative;
  margin-top: -1px;
  background:
    radial-gradient(circle at 12% 4%, rgba(185, 157, 119, 0.22), transparent 30%),
    linear-gradient(180deg, var(--deep-green), var(--green));
  color: #f3d7a7;
}

.featured-section::before {
  position: absolute;
  inset: 0;
  background-image: url("../artes/underscore.png");
  background-size: 260px auto;
  opacity: 0.05;
  content: "";
}

.featured-section > * {
  position: relative;
}

.home-signature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(118px, 11vw, 156px) clamp(22px, 6vw, 86px) clamp(64px, 7vw, 96px);
  background:
    radial-gradient(ellipse at 82% 22%, rgba(185, 157, 119, 0.18), transparent 32%),
    linear-gradient(105deg, rgba(243, 215, 167, 0.97) 0 52%, rgba(201, 208, 184, 0.9) 61%, rgba(201, 208, 184, 0.82) 100%),
    url("../artes/underscore.png");
  overflow: hidden;
}

.home-signature::before {
  position: absolute;
  left: clamp(20px, 6vw, 86px);
  bottom: -120px;
  width: min(360px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 91, 49, 0.14);
  border-radius: 50%;
  content: "";
}

.signature-copy,
.signature-tiles {
  position: relative;
  z-index: 1;
}

.signature-copy h2 {
  max-width: 640px;
  margin: 0;
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 0.98;
}

.signature-tiles {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(220px, 1fr) minmax(150px, 0.7fr);
  gap: 16px;
  align-items: stretch;
}

.signature-tile,
.signature-photo {
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 24px 62px rgba(0, 91, 49, 0.12);
}

.signature-tile {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background: rgba(243, 215, 167, 0.82);
  color: var(--green);
}

.signature-tile img {
  width: 74px;
  margin-bottom: auto;
}

.signature-tile span {
  color: #b99d77;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signature-tile strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display-font);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.signature-photo {
  border-radius: 70px 0 70px 0;
}

.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-tile:first-child {
  border-radius: 0 0 0 44px;
}

.signature-tile:last-child {
  border-radius: 0 44px 0 0;
  background: rgba(0, 91, 49, 0.92);
  color: #f3d7a7;
}

.signature-tile:last-child span {
  color: var(--gold);
}

.section-lead {
  max-width: 360px;
  margin: 0;
  color: rgba(243, 215, 167, 0.74);
  line-height: 1.6;
}

.featured-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 0 0 22px;
  background: #f3d7a7;
  box-shadow: 0 22px 54px rgba(0, 91, 49, 0.22);
}

.featured-card img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  border-radius: 0;
  object-fit: cover;
}

.featured-card span {
  padding: 20px 22px 0;
  font-family: var(--display-font);
  font-size: 27px;
}

.featured-card strong {
  padding: 8px 22px 4px;
}

.featured-card em {
  display: inline-flex;
  width: fit-content;
  margin: 8px 22px 0;
  border-bottom: 2px solid var(--coral);
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.story-section {
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 0.82fr) minmax(260px, 0.72fr);
  background:
    linear-gradient(90deg, #f3d7a7 0 62%, rgba(201, 208, 184, 0.84) 62% 100%);
}

.origin-showcase {
  position: relative;
  min-width: 0;
}

.origin-showcase img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 72px 0 72px 0;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.origin-badge {
  position: absolute;
  right: -28px;
  bottom: 30px;
  width: min(240px, 78%);
  padding: 20px;
  background: var(--green);
  color: #f3d7a7;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.26);
}

.origin-badge span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.origin-badge strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display-font);
  font-size: 28px;
  line-height: 1.04;
}

.origin-seals {
  grid-template-columns: 1fr;
}

.seal-card {
  min-height: 132px;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  place-items: center start;
  background: rgba(243, 215, 167, 0.38);
  text-align: left;
}

.seal-card img {
  width: 64px;
}

.seal-card h3 {
  margin: 0;
}

.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.taste-notes span {
  border: 1px solid rgba(0, 91, 49, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(243, 215, 167, 0.26);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.ritual-section {
  background:
    linear-gradient(135deg, rgba(0, 91, 49, 0.96), rgba(0, 91, 49, 0.92)),
    url("../artes/Cariama-70-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.ritual-gallery {
  border-radius: 0 70px 0 70px;
}

.shop-callout {
  background: #f3d7a7;
}

.site-footer {
  background: var(--deep-green);
}

.store-hero {
  min-height: 76vh;
  padding-top: 132px;
  background:
    linear-gradient(90deg, rgba(243, 215, 167, 0.96) 0 46%, rgba(201, 208, 184, 0.88) 46% 100%),
    url("../artes/underscore.png");
}

.store-hero h1 {
  color: var(--green);
  font-size: clamp(54px, 6vw, 86px);
}

.store-hero p {
  color: var(--ink);
}

.store-hero-media {
  border: 0;
  border-radius: 72px 0 72px 0;
  box-shadow: 24px 24px 0 rgba(0, 91, 49, 0.12), var(--shadow);
}

.product-section {
  background:
    linear-gradient(180deg, #f3d7a7 0%, #f3d7a7 100%);
}

.product-section .section-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.product-section .section-heading h2 {
  max-width: 860px;
  font-size: clamp(40px, 4.6vw, 64px);
}

.product-grid {
  max-width: 1040px;
  grid-template-columns: minmax(0, 880px);
  justify-content: start;
  gap: clamp(18px, 2.2vw, 28px);
}

.product-card {
  border: 0;
  background: #f3d7a7;
  box-shadow: 0 22px 54px rgba(0, 91, 49, 0.12);
}

.product-card:nth-child(2) {
  transform: translateY(-22px);
}

.product-card:nth-child(2):hover {
  transform: translateY(-30px);
}

.product-card-featured {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1fr);
  max-width: 880px;
  min-height: 430px;
}

.product-image {
  background: var(--sage);
}

.product-card-featured .product-image {
  display: grid;
  aspect-ratio: auto;
  min-height: 430px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(243, 215, 167, 0.88), rgba(201, 208, 184, 0.82) 58%, rgba(0, 91, 49, 0.12) 100%),
    url("../artes/underscore.png");
  background-size: auto, 170px auto;
}

.product-card-featured .product-image img {
  width: min(88%, 360px);
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(0, 91, 49, 0.2));
}

.product-info {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
  background: #f3d7a7;
}

.product-info::before {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 72px;
  height: 36px;
  border-radius: 999px 999px 0 0;
  background: #f3d7a7;
  content: "";
}

.product-info h3 {
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.product-card-featured .product-info p {
  min-height: 0;
  max-width: 360px;
}

.product-info span {
  color: #b99d77;
}

.product-info strong {
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(30px, 3.4vw, 42px);
}

.order-section {
  background:
    linear-gradient(135deg, rgba(0, 91, 49, 0.96), rgba(0, 91, 49, 0.9)),
    url("../artes/Cariama-106-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.order-form {
  border: 1px solid rgba(243, 215, 167, 0.22);
  background: rgba(0, 91, 49, 0.72);
}

.cart-panel {
  background:
    linear-gradient(180deg, #f3d7a7, #f3d7a7);
}

.home-header.site-header,
.home-header.site-header.is-scrolled,
.home-header.site-header:not(.is-open) {
  position: relative;
  display: grid;
  overflow: hidden;
  height: 218px;
  grid-template-columns: minmax(220px, 1fr) auto minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  padding: 24px clamp(28px, 6vw, 92px);
  border-top: 4px solid var(--gold);
  background-color: #005b31;
  color: #f3d7a7;
  box-shadow: none;
}

.home-header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../artes/bg-header --.jpg") center top / 100% auto no-repeat;
  content: "";
  pointer-events: none;
}

.home-header > * {
  position: relative;
  z-index: 2;
}

.home-header .brand {
  justify-self: center;
}

.home-header .brand img {
  width: 142px;
  height: auto;
}

.home-header .brand span {
  display: none;
}

.home-header .site-nav {
  position: static;
  display: flex;
  justify-self: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #f3d7a7;
  gap: 28px;
  font-family: var(--display-font);
  font-size: 14px;
  letter-spacing: 0;
}

.home-header .site-nav a::after {
  bottom: -14px;
  left: 50%;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

.home-header .site-nav a[aria-current="page"]::after {
  width: 42px;
}

.home-header .home-header-actions {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 22px;
  color: #f3d7a7;
}

.social-links {
  display: flex;
  gap: 10px;
  border-right: 1px solid rgba(243, 215, 167, 0.62);
  padding-right: 22px;
}

.social-links a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.account-links {
  display: grid;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 900;
}

.account-links a {
  position: relative;
  padding-left: 20px;
}

.account-links a::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(243, 215, 167, 0.88);
  content: "";
  transform: translateY(-50%);
}

.header-icon-link {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.header-icon-link img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(88%) sepia(26%) saturate(512%) hue-rotate(349deg) brightness(103%) contrast(94%);
}

.header-icon-link:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(86%) saturate(1643%) hue-rotate(325deg) brightness(101%) contrast(91%);
}

.header-cart-button span {
  position: absolute;
  right: -7px;
  top: -7px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.home-header + main .hero {
  min-height: calc(100vh - 218px);
  padding-top: clamp(58px, 6vw, 82px);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(201, 208, 184, 0.68)),
      url("../artes/underscore.png");
  }

  .hero-content,
  .hero-media,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero-panel {
    width: min(420px, 100%);
  }

  .home-signature {
    grid-template-columns: 1fr;
  }

  .signature-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .signature-photo {
    grid-column: 1 / -1;
    order: -1;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .origin-badge {
    right: 22px;
  }

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

  .product-section .section-heading {
    display: block;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(2):hover {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 72px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding: 104px 20px 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
  }

  .hero-logo {
    width: 104px;
  }

  .hero-media {
    border-radius: 0 42px 0 42px;
    box-shadow: 14px 14px 0 rgba(0, 91, 49, 0.12), var(--shadow);
  }

  .hero-media::before {
    border-radius: 0 32px 0 32px;
  }

  .hero-media-note {
    left: 16px;
    bottom: 16px;
    width: min(240px, calc(100% - 32px));
    padding: 14px 16px;
  }

  .hero-media-note strong {
    font-size: 21px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-proof dt {
    font-size: 19px;
  }

  .hero-proof dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .section-lead {
    margin-top: 16px;
  }

  .home-signature {
    padding: 56px 20px;
  }

  .signature-copy h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .signature-tiles {
    grid-template-columns: 1fr;
  }

  .signature-tile,
  .signature-photo {
    min-height: 220px;
  }

  .signature-photo {
    border-radius: 0 44px 0 44px;
  }

  .signature-tile:first-child,
  .signature-tile:last-child {
    border-radius: 8px;
  }

  .origin-showcase img,
  .ritual-gallery {
    border-radius: 0 44px 0 44px;
  }

  .origin-badge {
    position: static;
    width: 100%;
    margin-top: -8px;
  }

  .origin-seals {
    grid-template-columns: 1fr;
  }

  .store-hero-media {
    border-radius: 0 44px 0 44px;
    box-shadow: 14px 14px 0 rgba(0, 91, 49, 0.12), var(--shadow);
  }
}

@media (max-width: 980px) {
  .home-header.site-header,
  .home-header.site-header.is-scrolled,
  .home-header.site-header:not(.is-open) {
    height: 148px;
    grid-template-columns: 1fr auto;
    padding: 18px 22px;
  }

  .home-header .brand {
    justify-self: start;
  }

  .home-header .brand img {
    width: 116px;
  }

  .home-header .menu-toggle {
    justify-self: end;
    border-color: rgba(243, 215, 167, 0.9);
  }

  .home-header .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(0, 91, 49, 0.18);
    border-radius: 8px;
    background: var(--paper);
    color: var(--green);
    box-shadow: var(--shadow);
    font-family: var(--main-font);
  }

  .home-header.is-open .site-nav {
    display: grid;
  }

  .home-header.site-header.is-open {
    overflow: visible;
    z-index: 60;
  }

  .home-header .home-header-actions {
    display: none;
  }

  .home-header + main .hero {
    min-height: auto;
    padding-top: 64px;
  }
}

@media (max-width: 620px) {
  .home-header.site-header,
  .home-header.site-header.is-scrolled,
  .home-header.site-header:not(.is-open) {
    height: 126px;
    padding: 14px 20px;
  }

  .home-header .brand img {
    width: 96px;
  }

  .home-header + main .hero {
    padding-top: 48px;
  }
}

/* Polished home interactions */
.home-marquee {
  margin: 0;
  border-top: 1px solid rgba(0, 91, 49, 0.18);
  border-bottom: 1px solid rgba(0, 91, 49, 0.22);
  background:
    linear-gradient(90deg, rgba(244, 123, 80, 0.98), rgba(244, 123, 80, 0.96), rgba(244, 123, 80, 0.98)),
    url("../artes/underscore.png");
  background-size: auto, 190px auto;
}

.home-marquee div {
  animation-duration: 30s;
}

.home-marquee span {
  padding: 18px clamp(30px, 4vw, 58px);
  color: var(--deep-green);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(243, 215, 167, 0.24);
}

.home-marquee span:nth-child(even) {
  color: #f3d7a7;
  text-shadow: 0 2px 0 rgba(0, 91, 49, 0.2);
}

.hero-media {
  isolation: isolate;
  aspect-ratio: 16 / 9;
  background: var(--deep-green);
  justify-self: stretch;
  width: 100%;
}

.hero-media::after {
  display: none;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: none;
}

.hero-media img.hero-image-cover {
  object-fit: cover;
  padding: 0;
}

.hero-media img.is-active {
  transform: none;
}

.hero-media-note {
  display: none;
  border-left: 4px solid var(--coral);
  left: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}

.hero-media-note strong {
  font-size: clamp(20px, 2.2vw, 28px);
}

.hero-media-dots button:focus-visible,
.ritual-controls button:focus-visible {
  outline: 3px solid rgba(243, 215, 167, 0.86);
  outline-offset: 3px;
}

.featured-section {
  padding-top: clamp(76px, 7vw, 108px);
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 123, 80, 0.2), transparent 32%),
    linear-gradient(180deg, #005b31 0%, #005b31 100%),
    url("../artes/underscore.png");
  background-size: auto, auto, 220px auto;
}

.featured-section .section-kicker {
  color: var(--coral);
}

.featured-section h2 {
  color: #f3d7a7;
  text-shadow: 0 3px 0 rgba(0, 91, 49, 0.22);
}

.featured-section .section-lead {
  color: rgba(243, 215, 167, 0.9);
  font-size: 18px;
}

.featured-card {
  border: 1px solid rgba(243, 215, 167, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 91, 49, 0.3);
}

.featured-card img {
  transition: transform 0.7s ease, filter 0.3s ease;
}

.featured-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.05);
}

.home-signature {
  padding-top: clamp(80px, 8vw, 118px);
}

.cariama-story {
  min-height: calc(100vh - 218px);
  padding-top: clamp(82px, 8vw, 128px);
}

.cariama-story h1 {
  max-width: 680px;
  margin: 0;
  color: var(--green);
  font-family: var(--display-font);
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 0.96;
}

.cariama-story .story-copy p {
  max-width: 610px;
}

.store-header + main .product-section {
  padding-top: clamp(84px, 8vw, 128px);
}

@media (max-width: 980px) {
  .home-marquee span {
    padding-inline: 28px;
  }

  .featured-section .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .cariama-story {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .home-marquee span {
    padding-block: 14px;
    font-size: 24px;
  }

  .hero-media-dots {
    right: 18px;
    bottom: 18px;
  }

  .hero-media-dots button {
    width: 26px;
  }

  .hero-media-dots button.is-active {
    width: 42px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr 1.1fr 1.05fr;
  min-height: 320px;
  gap: clamp(28px, 4vw, 62px);
  border-top: 0;
  padding: clamp(42px, 5vw, 66px) clamp(30px, 7vw, 104px);
  background:
    linear-gradient(100deg, rgba(244, 123, 80, 0.98) 0%, rgba(243, 215, 167, 0.96) 100%),
    url("../artes/underscore.png");
  background-size: auto, 220px auto;
  color: var(--deep-green);
  font-family: var(--footer-font);
}

.site-footer,
.site-footer * {
  font-family: var(--footer-font);
}

.site-footer::after {
  position: absolute;
  left: clamp(30px, 7vw, 104px);
  right: clamp(30px, 7vw, 104px);
  top: 28px;
  height: 1px;
  background: #b99d77;
  content: "";
}

.site-footer::before {
  content: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-logo-col {
  display: grid;
  min-width: 180px;
  align-self: center;
  justify-self: center;
  place-items: center;
}

.site-footer .footer-brand {
  display: grid;
  width: 142px;
  margin: 0;
  place-items: center;
}

.site-footer .footer-brand,
.home-header .brand {
  line-height: 0;
}

.home-header .brand {
  display: grid;
  width: 142px;
  place-items: center;
}

.home-header .brand img,
.site-footer .footer-brand img {
  display: block;
  width: 142px;
  max-width: 142px;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.site-footer .footer-brand {
  margin: 0;
}

.site-footer .footer-brand img {
  height: auto;
}

.site-footer .brand strong {
  display: none;
}

.site-footer .brand small {
  display: none;
}

.footer-menu,
.footer-social,
.footer-contact {
  min-height: 150px;
  border-left: 1px solid #b99d77;
  padding-left: clamp(24px, 3vw, 42px);
}

.footer-menu {
  display: grid;
  gap: 8px;
  align-content: center;
}

.footer-menu a {
  color: #f3d7a7;
  font-family: var(--footer-font);
  font-size: clamp(18px, 1.5vw, 23px);
}

.footer-social {
  display: grid;
  align-content: center;
  gap: 26px;
}

.footer-social-group,
.footer-payment-group {
  display: grid;
  gap: 12px;
}

.footer-payment-group {
  border-top: 1px solid #b99d77;
  padding-top: 18px;
}

.footer-social span,
.footer-payment-group span {
  color: #f3d7a7;
  font-family: var(--footer-font);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(243, 215, 167, 0.86);
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.footer-social img {
  width: min(300px, 100%);
  height: auto;
}

.site-footer p,
.site-footer address a,
.site-footer address span {
  color: rgba(0, 91, 49, 0.82);
}

.site-footer address strong {
  color: var(--deep-green);
  font-size: 20px;
  text-transform: uppercase;
}

.site-footer address a,
.site-footer address span {
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer-menu,
  .footer-social,
  .footer-contact {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid #b99d77;
    padding: 22px 0 0;
  }
}

/* Brand motion and Cariama story polish */
body {
  opacity: 0;
  animation: page-enter 0.65s ease forwards;
}

body.page-leaving {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.page-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 215, 167, 0.96), rgba(244, 123, 80, 0.88)),
    url("../artes/underscore.png");
  background-size: auto, 210px auto;
  transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
}

.page-loader img {
  width: 118px;
  filter: drop-shadow(0 22px 42px rgba(0, 91, 49, 0.22));
  animation: loader-logo 1.1s ease-in-out infinite alternate;
}

.page-loader span {
  position: absolute;
  top: calc(50% + 88px);
  width: 138px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 91, 49, 0.18);
}

.page-loader span::after {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  content: "";
  animation: loader-line 1.1s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s cubic-bezier(0.21, 0.8, 0.28, 1),
    transform 0.85s cubic-bezier(0.21, 0.8, 0.28, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-media,
.origin-showcase,
.product-card,
.featured-card {
  will-change: transform;
}

.hero-media img,
.origin-showcase img,
.product-image img,
.featured-card img {
  backface-visibility: hidden;
}

.hero-media img {
  filter: saturate(0.92) contrast(0.96);
}

.hero-media img.is-active {
  filter: saturate(1.04) contrast(1.02);
  animation: hero-photo-bloom 1.2s ease both;
}

.button,
.header-icon-link,
.site-nav a,
.footer-menu a {
  transition:
    transform 0.28s ease,
    color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease;
}

.button:hover,
.header-icon-link:hover {
  transform: translateY(-3px);
}

.cariama-about-hero {
  position: relative;
  overflow: visible;
  padding: clamp(92px, 9vw, 148px) clamp(24px, 7vw, 112px) clamp(72px, 8vw, 118px);
  background:
    linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.92)),
    url("../artes/underscore.png");
  background-size: auto, 190px auto;
}

.cariama-about-hero::before {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: min(560px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 123, 80, 0.12);
  content: "";
}

.about-title-mark {
  position: relative;
  display: grid;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  place-items: center;
}

.about-title-mark span {
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  height: 34px;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 7px, #b99d77 8px 10px, transparent 11px 18px);
  opacity: 0.8;
  transform: scaleY(0.42);
}

.about-title-mark img {
  position: relative;
  z-index: 1;
  width: clamp(145px, 16vw, 215px);
  filter: drop-shadow(0 18px 32px rgba(0, 91, 49, 0.16));
}

.about-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.about-story-heading h1 {
  max-width: 420px;
  margin: 0 0 26px;
  color: #f47b50;
  font-family: var(--strong-font);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-story-copy {
  max-width: 660px;
  border-left: 2px solid rgba(185, 157, 119, 0.45);
  padding-left: clamp(24px, 3.4vw, 48px);
}

.about-story-copy p {
  margin: 0;
  color: rgba(0, 91, 49, 0.82);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.78;
}

.about-story-copy p + p {
  margin-top: 18px;
}

.about-page-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: clamp(38px, 5vw, 72px) auto 0;
  border-top: 1px solid rgba(185, 157, 119, 0.48);
  padding-top: clamp(26px, 3vw, 42px);
  color: rgba(0, 91, 49, 0.82);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.78;
}

.about-page-content > *:first-child {
  margin-top: 0;
}

.about-page-content > *:last-child {
  margin-bottom: 0;
}

.canastra-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 6vw, 82px) clamp(24px, 7vw, 112px);
  background:
    linear-gradient(135deg, rgba(0, 91, 49, 0.98), rgba(0, 91, 49, 0.96)),
    url("../artes/underscore.png");
  background-size: auto, 190px auto;
  color: #f3d7a7;
}

.canastra-symbol {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.canastra-symbol img {
  width: clamp(112px, 10vw, 164px);
  border-radius: 50%;
  background: #f3d7a7;
  box-shadow: 0 18px 38px rgba(0, 91, 49, 0.22);
  filter: none;
  opacity: 1;
  padding: 10px;
}

.canastra-symbol h2 {
  max-width: 220px;
  margin: 0;
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 0.9;
  text-transform: uppercase;
}

.canastra-text {
  max-width: 860px;
}

.canastra-text p {
  margin: 0;
  color: #f3d7a7;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.64;
}

.canastra-text p + p {
  margin-top: 16px;
}

.cariama-story {
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 0.82fr) minmax(260px, 0.72fr);
  min-height: auto;
  padding-top: clamp(72px, 7vw, 112px);
  background:
    linear-gradient(90deg, #f3d7a7 0 62%, rgba(201, 208, 184, 0.84) 62% 100%),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.cariama-story h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
}

.cariama-story .story-copy p {
  max-width: 560px;
}

.origin-showcase img {
  transition: transform 1s cubic-bezier(0.21, 0.8, 0.28, 1), filter 0.45s ease;
}

.origin-showcase:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.seal-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.seal-card:hover {
  background: rgba(243, 215, 167, 0.72);
  box-shadow: 0 24px 54px rgba(0, 91, 49, 0.16);
  transform: translateY(-6px);
}

@keyframes page-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes loader-logo {
  from {
    transform: translateY(0) scale(0.98);
  }
  to {
    transform: translateY(-6px) scale(1.03);
  }
}

@keyframes loader-line {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(250%);
  }
}

@keyframes hero-photo-bloom {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .about-story-grid,
  .canastra-band,
  .cariama-story {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    border-left: 0;
    padding-left: 0;
  }

  .canastra-symbol {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .cariama-about-hero {
    padding-inline: 22px;
  }

  .about-title-mark span {
    height: 24px;
  }
}

/* Final home commerce, carousel arrows and footer map polish */
.hero-media-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: inline-grid;
  width: clamp(42px, 4vw, 58px);
  height: clamp(42px, 4vw, 58px);
  place-items: center;
  border: 1px solid rgba(243, 215, 167, 0.78);
  border-radius: 50%;
  background: rgba(0, 91, 49, 0.76);
  box-shadow: 0 16px 34px rgba(0, 91, 49, 0.24);
  color: #f3d7a7;
  cursor: pointer;
  font-family: var(--footer-font);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.hero-media-arrow:hover {
  background: var(--coral);
  color: #f3d7a7;
  transform: translateY(-50%) scale(1.06);
}

.hero-media-arrow-prev {
  left: clamp(16px, 2.6vw, 34px);
}

.hero-media-arrow-next {
  right: clamp(16px, 2.6vw, 34px);
}

.featured-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(78px, 8vw, 132px);
  padding-bottom: clamp(82px, 8vw, 128px);
}

.featured-section .section-heading {
  grid-template-columns: 0.48fr minmax(320px, 0.9fr) minmax(260px, 0.58fr);
  margin-bottom: clamp(34px, 4vw, 58px);
}

.featured-section .section-heading h2 {
  max-width: 720px;
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(42px, 5.8vw, 86px);
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.featured-section .section-lead {
  color: rgba(243, 215, 167, 0.84);
  font-size: clamp(18px, 1.35vw, 22px);
}

.featured-product-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  align-items: center;
  border: 1px solid rgba(243, 215, 167, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.92)),
    url("../artes/underscore.png");
  background-size: auto, 170px auto;
  box-shadow: 0 30px 70px rgba(0, 91, 49, 0.2);
  padding: clamp(26px, 4vw, 58px);
}

.featured-product-spotlight::before {
  position: absolute;
  inset: 18px auto auto 18px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

.featured-packshot {
  position: relative;
  display: grid;
  min-height: clamp(300px, 34vw, 470px);
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(244, 123, 80, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(201, 208, 184, 0.72), rgba(243, 215, 167, 0.36));
}

.featured-packshot::after {
  position: absolute;
  inset: auto 14% 12% 14%;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 91, 49, 0.18);
  filter: blur(14px);
  content: "";
}

.featured-packshot img {
  position: relative;
  z-index: 1;
  width: min(78%, 420px);
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 91, 49, 0.28));
  transform: translateY(0);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.featured-product-spotlight:hover .featured-packshot img {
  filter: drop-shadow(0 34px 42px rgba(0, 91, 49, 0.34));
  transform: translateY(-8px) scale(1.025);
}

.featured-product-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.featured-product-copy span {
  color: #b99d77;
  font-family: var(--footer-font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-product-copy h3 {
  max-width: 620px;
  margin: 0;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(38px, 4.3vw, 68px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.featured-product-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(0, 91, 49, 0.76);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
}

.featured-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}

.featured-buy-row strong {
  color: var(--coral);
  font-family: var(--footer-font);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-action {
  display: none;
}

.newsletter-section {
  padding: clamp(52px, 6vw, 84px) clamp(24px, 6vw, 86px);
  background:
    linear-gradient(90deg, #f47b50 0%, #f3d7a7 78%),
    url("../artes/underscore.png");
  background-blend-mode: soft-light;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  border-top: 1px solid #b99d77;
  border-bottom: 1px solid #b99d77;
  padding: clamp(28px, 4vw, 54px) 0;
}

.newsletter-copy h2 {
  max-width: 720px;
  margin: 10px 0 14px;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(36px, 4.5vw, 68px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.newsletter-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(0, 91, 49, 0.84);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form label {
  color: var(--green);
  font-family: var(--footer-font);
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 56px;
  border: 1px solid rgba(0, 91, 49, 0.25);
  border-radius: 8px;
  background: rgba(243, 215, 167, 0.9);
  color: var(--deep-green);
  font: 700 16px var(--main-font);
  padding: 0 18px;
}

.newsletter-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.newsletter-status.is-ok {
  color: var(--deep-green);
}

.site-footer {
  grid-template-columns: minmax(150px, 0.58fr) minmax(145px, 0.44fr) minmax(250px, 0.78fr) minmax(240px, 0.62fr) minmax(180px, 0.5fr);
  gap: clamp(28px, 4vw, 56px);
}

.footer-map-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 150px;
  border-left: 1px solid #b99d77;
  padding-left: clamp(22px, 2.8vw, 36px);
}

.footer-map-card iframe {
  width: min(178px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 157, 119, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 91, 49, 0.14);
}

.footer-map-card a {
  color: var(--deep-green);
  font-family: var(--footer-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-social-icons a {
  background: rgba(243, 215, 167, 0.92);
}

.footer-social-icons a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-payment-group > img {
  width: min(300px, 100%);
  height: auto;
}

@media (max-width: 1100px) {
  .featured-section .section-heading,
  .featured-product-spotlight,
  .newsletter-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .featured-section .section-heading {
    text-align: left;
  }

  .footer-map-card {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid #b99d77;
    padding: 22px 0 0;
  }
}

@media (max-width: 720px) {
  .hero-media-arrow {
    width: 38px;
    height: 38px;
    font-size: 32px;
  }

  .featured-product-spotlight {
    width: min(100% - 32px, 620px);
    padding: 20px;
  }

  .featured-packshot {
    min-height: 310px;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
  }

  .footer-map-card iframe {
    width: min(260px, 100%);
  }
}

/* Newsletter palette tuned to the Cariama bird artwork */
.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 108px) clamp(24px, 6vw, 90px);
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 208, 184, 0.72), transparent 32%),
    linear-gradient(115deg, #005b31 0 38%, #c9d0b8 38% 62%, #f3d7a7 62% 100%);
}

.newsletter-section::before {
  position: absolute;
  left: clamp(18px, 5vw, 76px);
  bottom: clamp(-48px, -3vw, -22px);
  width: clamp(170px, 18vw, 310px);
  aspect-ratio: 1;
  background: url("../artes/icon-bird --.png") center / contain no-repeat;
  content: "";
  filter: sepia(1) saturate(2.2) hue-rotate(320deg) brightness(0.94);
  opacity: 0.82;
  transform: rotate(-8deg);
}

.newsletter-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 91, 49, 0.22), rgba(243, 215, 167, 0.12)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.newsletter-panel {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 0.88fr) minmax(330px, 0.72fr);
  border: 1px solid rgba(185, 157, 119, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 215, 167, 0.96), rgba(243, 215, 167, 0.88));
  box-shadow: 0 28px 70px rgba(0, 91, 49, 0.22);
  padding: clamp(30px, 4.8vw, 68px);
}

.newsletter-panel::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: clamp(78px, 9vw, 142px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 123, 80, 0.14);
  content: "";
}

.newsletter-copy .section-kicker {
  color: #b99d77;
}

.newsletter-copy h2 {
  color: #005b31;
  max-width: 760px;
}

.newsletter-copy p {
  color: rgba(0, 91, 49, 0.78);
  font-weight: 700;
}

.newsletter-form {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 2.5vw, 34px);
  border: 1px solid rgba(185, 157, 119, 0.5);
  border-radius: 8px;
  background: rgba(201, 208, 184, 0.42);
}

.newsletter-form label {
  color: #005b31;
}

.newsletter-form input {
  border-color: rgba(185, 157, 119, 0.72);
  background: rgba(243, 215, 167, 0.96);
  box-shadow: inset 0 0 0 1px rgba(243, 215, 167, 0.5);
}

.newsletter-form input:focus {
  border-color: #f47b50;
  box-shadow: 0 0 0 4px rgba(244, 123, 80, 0.18);
  outline: 0;
}

.newsletter-form .button {
  background: #f47b50;
  box-shadow: 0 16px 30px rgba(244, 123, 80, 0.28);
  color: #f3d7a7;
}

.newsletter-form .button:hover {
  background: #005b31;
}

@media (max-width: 880px) {
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .newsletter-section::before {
    opacity: 0.28;
  }
}

/* Cariama palette lock */
body {
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 208, 184, 0.54), transparent 30%),
    linear-gradient(180deg, #f3d7a7 0%, rgba(243, 215, 167, 0.92) 46%, #c9d0b8 100%);
  color: #005b31;
}

.site-header,
.home-header.site-header,
.home-header.site-header.is-scrolled,
.home-header.site-header:not(.is-open),
.store-header.site-header {
  background: #005b31;
  color: #f3d7a7;
}

.site-nav a,
.footer-menu a,
.header-icon-link {
  color: #f3d7a7;
}

.site-nav a::after,
.site-nav a[aria-current="page"]::after,
.button-primary,
.hero-media-arrow:hover {
  background: #f47b50;
}

.button-primary {
  color: #f3d7a7;
}

.button-secondary {
  border-color: #b99d77;
  color: #005b31;
}

.hero,
.store-hero,
.cariama-about-hero,
.section:not(.featured-section),
.product-grid-section {
  background:
    linear-gradient(90deg, rgba(243, 215, 167, 0.98) 0 52%, rgba(201, 208, 184, 0.88) 52% 100%),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.hero h1,
.store-hero h1,
.section-heading h2,
.featured-product-copy h3,
.product-info h3,
.about-story-heading h1,
.cariama-story h2 {
  color: #005b31;
}

.hero-label,
.section-kicker,
.featured-product-copy span,
.product-tag,
.newsletter-copy .section-kicker {
  color: #b99d77;
}

.hero p,
.store-hero p,
.section-lead,
.featured-product-copy p,
.product-info p,
.about-story-copy p,
.newsletter-copy p {
  color: rgba(0, 91, 49, 0.78);
}

.marquee,
.home-marquee {
  background: #f47b50;
  color: #f3d7a7;
}

.marquee span,
.home-marquee span,
.home-marquee span:nth-child(even) {
  color: #f3d7a7;
  text-shadow: 0 1px 0 rgba(0, 91, 49, 0.18);
}

.featured-section {
  background:
    linear-gradient(180deg, #005b31 0%, #005b31 100%),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.featured-section .section-heading h2,
.featured-section .section-lead {
  color: #f3d7a7;
}

.featured-product-spotlight,
.product-card,
.product-card-featured,
.cart-panel,
.newsletter-panel {
  border-color: rgba(185, 157, 119, 0.74);
  background:
    linear-gradient(135deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.86)),
    url("../artes/underscore.png");
  background-size: auto, 170px auto;
  box-shadow: 0 26px 70px rgba(0, 91, 49, 0.18);
}

.featured-packshot,
.product-image {
  background:
    radial-gradient(circle at 50% 58%, rgba(244, 123, 80, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(201, 208, 184, 0.76), rgba(243, 215, 167, 0.55));
}

.newsletter-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(201, 208, 184, 0.76), transparent 30%),
    linear-gradient(115deg, #005b31 0 36%, #c9d0b8 36% 62%, #f3d7a7 62% 100%);
}

.newsletter-section::before {
  background-image: url("../artes/icon-bird --.png");
  filter: sepia(1) saturate(2) hue-rotate(318deg) brightness(0.94);
}

.newsletter-form {
  border-color: rgba(185, 157, 119, 0.62);
  background: rgba(201, 208, 184, 0.48);
}

.newsletter-form input {
  border-color: rgba(185, 157, 119, 0.82);
  background: rgba(243, 215, 167, 0.96);
  color: #005b31;
}

.site-footer {
  background:
    linear-gradient(90deg, #f47b50 0%, #f47b50 100%),
    url("../artes/underscore.png");
  background-blend-mode: normal, soft-light;
}

.site-footer::before,
.footer-menu,
.footer-social,
.footer-contact,
.footer-map-card,
.footer-payment-group {
  border-color: #b99d77;
}

.site-footer .brand strong,
.site-footer .brand small,
.site-footer p,
.site-footer address a,
.site-footer address span,
.site-footer address strong,
.footer-map-card a {
  color: #005b31;
}

.footer-social span,
.footer-payment-group span,
.footer-menu a {
  color: #f3d7a7;
}

.footer-social-icons a {
  background: #f3d7a7;
}

.about-title-mark {
  max-width: min(1040px, 92vw);
  margin-bottom: clamp(52px, 7vw, 96px);
}

.about-title-mark span {
  display: none;
}

.about-title-mark img {
  width: min(720px, 88vw);
  filter: drop-shadow(0 20px 36px rgba(0, 91, 49, 0.13));
}

.cariama-about-hero {
  background:
    linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.92)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.canastra-band {
  background:
    linear-gradient(135deg, #005b31, #005b31),
    url("../artes/underscore.png");
  color: #f3d7a7;
}

.canastra-symbol h2,
.canastra-text p {
  color: #f3d7a7;
}

.cariama-story {
  background:
    linear-gradient(90deg, #f3d7a7 0 62%, rgba(201, 208, 184, 0.88) 62% 100%),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

/* Sales-focused hero and clickable product details */
.hero-content {
  position: relative;
}

.hero-content::before {
  position: absolute;
  left: clamp(-26px, -2vw, -12px);
  top: clamp(84px, 11vw, 132px);
  width: 5px;
  height: clamp(220px, 38vw, 430px);
  border-radius: 999px;
  background: linear-gradient(180deg, #f47b50, #b99d77);
  content: "";
  box-shadow: 0 18px 38px rgba(244, 123, 80, 0.24);
}

.hero-content h1 {
  max-width: 780px;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content > p:not(.hero-label) {
  max-width: 660px;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 700;
}

.hero-highlight {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin-top: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(185, 157, 119, 0.62);
  border-radius: 8px;
  background: rgba(201, 208, 184, 0.38);
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.12);
  padding: 10px 12px;
}

.hero-highlight span,
.hero-highlight strong,
.hero-highlight a {
  font-family: var(--footer-font);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-highlight span {
  color: #b99d77;
}

.hero-highlight strong {
  color: #005b31;
}

.hero-highlight a {
  border-radius: 999px;
  background: #f47b50;
  color: #f3d7a7;
  padding: 10px 14px;
  transition: transform 0.24s ease, background 0.24s ease;
}

.hero-highlight a:hover {
  background: #005b31;
  transform: translateY(-2px);
}

.product-card[data-product] {
  cursor: pointer;
  outline: 0;
}

.product-card-featured .product-info {
  padding-bottom: clamp(68px, 7vw, 92px);
}

.product-card[data-product]::after {
  position: absolute;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(24px, 2.4vw, 36px);
  border: 1px solid rgba(185, 157, 119, 0.72);
  border-radius: 999px;
  background: rgba(243, 215, 167, 0.88);
  color: #005b31;
  content: "Clique para conhecer";
  font-family: var(--footer-font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0;
  padding: 9px 12px;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.product-card[data-product]:hover::after,
.product-card[data-product]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.product-card-featured .product-info p {
  max-width: 520px;
}

body.product-detail-open {
  overflow: hidden;
}

.product-detail-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  pointer-events: none;
}

.product-detail-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 91, 49, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product-detail-drawer.is-open .product-detail-backdrop {
  opacity: 1;
}

.product-detail-panel {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  top: 50%;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  width: min(980px, calc(100% - 36px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  border: 1px solid #b99d77;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 215, 167, 0.98), rgba(201, 208, 184, 0.92)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
  box-shadow: 0 34px 90px rgba(0, 91, 49, 0.34);
  padding: clamp(22px, 4vw, 54px);
  transform: translate(24px, -50%);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.2, 0.8, 0.22, 1);
}

.product-detail-drawer.is-open .product-detail-panel {
  opacity: 1;
  transform: translate(0, -50%);
}

.product-detail-close {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(185, 157, 119, 0.72);
  border-radius: 50%;
  background: #f3d7a7;
  color: #005b31;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.product-detail-image {
  display: grid;
  min-height: 420px;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 55%, rgba(244, 123, 80, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(201, 208, 184, 0.86), rgba(243, 215, 167, 0.62));
}

.product-detail-image img {
  width: min(82%, 430px);
  filter: drop-shadow(0 28px 40px rgba(0, 91, 49, 0.24));
}

.product-detail-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  padding-right: 22px;
}

.product-detail-copy h2 {
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(42px, 4.6vw, 74px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-detail-copy p,
.product-detail-copy li {
  color: rgba(0, 91, 49, 0.78);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.product-detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .hero-content::before {
    display: none;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
  }

  .product-detail-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .product-detail-image {
    min-height: 320px;
  }
}

.product-detail-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 82px);
  min-height: calc(100vh - 180px);
  align-items: center;
  padding: clamp(84px, 9vw, 148px) clamp(24px, 7vw, 112px);
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 208, 184, 0.68), transparent 30%),
    linear-gradient(90deg, rgba(243, 215, 167, 0.98) 0 54%, rgba(201, 208, 184, 0.9) 54% 100%),
    url("../artes/underscore.png");
  background-size: auto, auto, 180px auto;
}

.product-detail-visual {
  display: grid;
  min-height: clamp(460px, 48vw, 660px);
  place-items: center;
  border: 1px solid rgba(185, 157, 119, 0.62);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(244, 123, 80, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(201, 208, 184, 0.82), rgba(243, 215, 167, 0.64));
  box-shadow: 0 34px 86px rgba(0, 91, 49, 0.18);
}

.product-detail-visual img {
  width: min(82%, 520px);
  filter: drop-shadow(0 34px 46px rgba(0, 91, 49, 0.26));
}

.product-detail-page-copy {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  align-content: center;
}

.product-detail-page-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(50px, 6.4vw, 104px);
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.product-detail-page-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(0, 91, 49, 0.78);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.product-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.product-detail-facts div {
  min-height: 94px;
  border: 1px solid rgba(185, 157, 119, 0.62);
  border-radius: 8px;
  background: rgba(243, 215, 167, 0.58);
  padding: 16px;
}

.product-detail-facts strong,
.product-detail-facts span {
  display: block;
}

.product-detail-facts strong {
  color: #b99d77;
  font-family: var(--footer-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-facts span {
  margin-top: 8px;
  color: #005b31;
  font-weight: 800;
  line-height: 1.25;
}

.product-price-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(185, 157, 119, 0.72);
  border-radius: 999px;
  background: rgba(243, 215, 167, 0.82);
  color: #005b31;
  font-family: var(--footer-font);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1;
  padding: 12px 18px;
}

.product-detail-page .button-primary {
  background: #b99d77;
  color: #fff;
  text-transform: uppercase;
}

.product-experience-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(68px, 7vw, 104px) clamp(24px, 7vw, 112px);
  background:
    linear-gradient(90deg, #005b31 0%, #005b31 100%),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
  color: #f3d7a7;
}

.product-experience-copy h2,
.product-origin-text h2 {
  margin: 0;
  font-family: var(--strong-font);
  font-size: clamp(42px, 5vw, 78px);
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-experience-copy h2 {
  color: #f3d7a7;
}

.product-experience-copy p {
  max-width: 620px;
  color: rgba(243, 215, 167, 0.78);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 700;
  line-height: 1.6;
}

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

.product-note-card {
  min-height: 180px;
  border: 1px solid rgba(185, 157, 119, 0.72);
  border-radius: 8px;
  background: rgba(243, 215, 167, 0.1);
  padding: clamp(20px, 2.4vw, 30px);
}

.product-note-card strong,
.product-note-card span {
  display: block;
}

.product-note-card strong {
  color: #b99d77;
  font-family: var(--footer-font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-note-card span {
  margin-top: 18px;
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-origin-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(62px, 7vw, 98px) clamp(24px, 7vw, 112px);
  background:
    linear-gradient(90deg, #f47b50 0%, #f47b50 100%),
    url("../artes/underscore.png");
  background-blend-mode: normal, soft-light;
}

.product-origin-text h2 {
  color: #005b31;
}

.product-origin-list {
  display: grid;
  gap: 18px;
  align-content: center;
}

.product-origin-list p {
  max-width: 700px;
  margin: 0;
  color: rgba(0, 91, 49, 0.84);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .product-detail-page,
  .product-experience-section,
  .product-origin-band {
    grid-template-columns: 1fr;
  }

  .product-detail-facts,
  .product-note-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile polish */
@media (max-width: 620px) {
  .home-header.site-header,
  .home-header.site-header.is-scrolled,
  .home-header.site-header:not(.is-open) {
    min-height: 102px;
    padding: 12px 16px;
    align-items: center;
  }

  .home-header .brand {
    width: 118px;
    height: 78px;
    justify-items: start;
  }

  .home-header .brand img {
    width: 118px;
    max-height: 92px;
    object-fit: contain;
  }

  .home-header .menu-toggle {
    width: 44px;
    height: 44px;
    border-color: rgba(243, 215, 167, 0.8);
    background: rgba(0, 91, 49, 0.62);
  }

  .home-header + main .hero,
  .hero {
    min-height: auto;
    padding: 34px 17px 38px;
    background:
      linear-gradient(90deg, rgba(243, 215, 167, 0.98) 0 54%, rgba(201, 208, 184, 0.9) 54% 100%),
      url("../artes/underscore.png");
    background-size: auto, 150px auto;
  }

  .hero-content {
    display: grid;
    gap: 18px;
    width: 100%;
    padding: 0;
    order: 2;
  }

  .hero-logo {
    display: none;
  }

  .hero-label {
    max-width: 100%;
    margin: 4px 0 0;
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1.35;
  }

  .hero-content h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(42px, 13.2vw, 58px);
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero-content > p:not(.hero-label) {
    max-width: 100%;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin: 6px 0 0;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    border-radius: 6px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(185, 157, 119, 0.66);
    padding-top: 14px;
  }

  .hero-proof div {
    border-top: 0;
    border-radius: 6px;
    background: rgba(243, 215, 167, 0.44);
    padding: 10px 8px;
  }

  .hero-proof dt {
    font-size: 21px;
    line-height: 1;
  }

  .hero-proof dd {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-media {
    min-height: 0;
    height: auto;
    aspect-ratio: var(--hero-active-aspect, 16 / 9);
    margin: 10px 2px 26px;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(243, 215, 167, 0.96), rgba(201, 208, 184, 0.86)),
      url("../artes/underscore.png");
    background-size: auto, 150px auto;
    border: 1px solid rgba(185, 157, 119, 0.55);
    order: 1;
    overflow: visible;
    box-shadow:
      0 18px 42px rgba(0, 91, 49, 0.14),
      8px 10px 0 rgba(201, 208, 184, 0.52);
  }

  .hero-media::before,
  .hero-media::after {
    display: none;
  }

  .hero-media img,
  .hero-media img.hero-image-cover {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: transparent;
    object-fit: cover;
    object-position: center;
  }

  .hero-media-arrow {
    top: 50%;
    bottom: auto;
    width: 34px;
    height: 34px;
    border-color: rgba(243, 215, 167, 0.9);
    background: rgba(0, 91, 49, 0.82);
    box-shadow: 0 12px 26px rgba(0, 91, 49, 0.18);
    font-size: 30px;
    transform: none;
  }

  .hero-media-arrow-prev {
    left: 10px;
  }

  .hero-media-arrow-next {
    right: 10px;
  }

  .hero-media-arrow:hover {
    transform: scale(1.04);
  }

  .hero-media-dots {
    right: 14px;
    bottom: -20px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(243, 215, 167, 0.82);
    box-shadow: 0 8px 18px rgba(0, 91, 49, 0.12);
  }

  .hero-media-dots button {
    width: 24px;
    height: 5px;
  }

  .hero-media-dots button.is-active {
    width: 34px;
  }
}

/* Store purchase area polish */
.store-header + main .product-section {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 10vw, 154px) clamp(22px, 6vw, 86px) clamp(64px, 8vw, 108px);
  background:
    linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.94)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.store-header + main .product-section::before {
  position: absolute;
  right: max(-180px, -10vw);
  top: 68px;
  width: min(520px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(201, 208, 184, 0.48);
  content: "";
}

.product-section .section-heading {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 640px;
  margin: 0 auto clamp(28px, 3.6vw, 44px);
  text-align: center;
}

.product-section .section-heading h2 {
  max-width: 640px;
  margin: 0 auto;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
}

.product-section .section-heading h1 {
  max-width: 760px;
  margin: 0 auto;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.92;
  text-transform: uppercase;
}

.product-section .section-lead {
  max-width: 520px;
  margin: 16px auto 0;
  color: rgba(0, 91, 49, 0.74);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 800;
  line-height: 1.5;
}

.product-grid {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  justify-content: center;
}

.product-card-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  max-width: 1060px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 157, 119, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #fff 0 46%, rgba(243, 215, 167, 0.92) 46% 100%),
    url("../artes/underscore.png");
  background-size: auto, 160px auto;
  box-shadow: 0 24px 58px rgba(0, 91, 49, 0.16);
}

.product-card-featured::before {
  display: none;
}

.product-card-featured .product-image {
  min-height: clamp(330px, 34vw, 460px);
  background:
    radial-gradient(ellipse at 50% 67%, rgba(0, 91, 49, 0.16), transparent 31%),
    #fff;
}

.product-card-featured .product-image img {
  width: min(84%, 410px);
  max-height: 430px;
}

.product-card-featured .product-info {
  padding: clamp(30px, 4.8vw, 58px);
  background: transparent;
}

.product-info::before,
.product-card[data-product]::after {
  display: none;
}

.product-info h3 {
  max-width: 470px;
  font-family: var(--strong-font);
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 0.94;
  text-transform: uppercase;
}

.product-card-featured .product-info p {
  max-width: 460px;
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 700;
}

.product-info div {
  max-width: 460px;
  align-items: center;
}

.product-info .button-small {
  min-width: 148px;
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .product-card-featured {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, #fff 0 44%, rgba(243, 215, 167, 0.92) 44% 100%),
      url("../artes/underscore.png");
    background-size: auto, 150px auto;
  }

  .product-card-featured .product-info {
    padding-top: 10px;
  }
}

/* Product page redesign */
.store-header + main .product-detail-page,
.product-detail-page {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.84fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 5vw, 74px);
  min-height: auto;
  align-items: center;
  padding: clamp(118px, 10vw, 158px) clamp(24px, 7vw, 112px) clamp(70px, 8vw, 112px);
  background:
    linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.94)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.product-detail-page::before {
  position: absolute;
  right: max(-220px, -14vw);
  top: clamp(68px, 9vw, 130px);
  width: min(560px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 123, 80, 0.14);
  content: "";
}

.product-detail-page::after {
  position: absolute;
  left: clamp(20px, 5vw, 82px);
  bottom: clamp(20px, 4vw, 64px);
  width: clamp(86px, 11vw, 178px);
  aspect-ratio: 1;
  background: url("../artes/icon-bird --.png") center / contain no-repeat;
  content: "";
  filter: sepia(1) saturate(1.6) hue-rotate(315deg);
  opacity: 0.16;
  pointer-events: none;
}

.product-detail-visual,
.product-detail-page-copy {
  position: relative;
  z-index: 1;
}

.product-detail-visual {
  min-height: clamp(360px, 39vw, 560px);
  border: 1px solid rgba(185, 157, 119, 0.66);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 60%, rgba(0, 91, 49, 0.08), transparent 36%),
    #fff;
  box-shadow: 0 24px 58px rgba(0, 91, 49, 0.14);
}

.product-detail-visual img {
  width: min(78%, 500px);
  filter: drop-shadow(0 24px 34px rgba(0, 91, 49, 0.22));
}

.product-detail-page-copy {
  gap: clamp(16px, 1.7vw, 22px);
  align-content: center;
  max-width: 650px;
}

.product-detail-page-copy .section-kicker {
  margin-bottom: 0;
  color: #b99d77;
}

.product-detail-page-copy h1 {
  max-width: 620px;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
}

.product-detail-page-copy p {
  max-width: 580px;
  color: rgba(0, 91, 49, 0.78);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  line-height: 1.58;
}

.product-price-tag {
  border: 0;
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
  box-shadow: 0 16px 34px rgba(0, 91, 49, 0.18);
  font-size: clamp(24px, 2.6vw, 38px);
  padding: 12px 18px 10px;
}

.product-detail-facts {
  max-width: 620px;
  gap: 10px;
}

.product-detail-facts div {
  min-height: auto;
  border-color: rgba(185, 157, 119, 0.58);
  background: rgba(243, 215, 167, 0.48);
  padding: 14px;
}

.product-detail-actions {
  margin-top: 0;
}

.product-detail-page .button {
  min-height: 48px;
  border-radius: 8px;
}

.product-detail-page .button-primary {
  background: #f47b50;
  color: #f3d7a7;
  box-shadow: 0 16px 32px rgba(244, 123, 80, 0.22);
}

.product-detail-page .button-secondary {
  border-color: rgba(0, 91, 49, 0.36);
  color: #005b31;
}

.product-detail-page .product-detail-actions .button-secondary {
  display: none;
}

.product-detail-page .product-detail-actions .button-primary {
  width: min(260px, 100%);
}

.product-buy-panel {
  display: grid;
  gap: 16px;
  max-width: 620px;
  border: 1px solid rgba(185, 157, 119, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 215, 167, 0.88), rgba(243, 215, 167, 0.62)),
    url("../artes/underscore.png");
  background-size: auto, 150px auto;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.1);
  padding: clamp(18px, 2.4vw, 28px);
}

.product-buy-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.product-buy-main span,
.product-buy-actions label > span,
.product-continue-link {
  color: #b99d77;
  font-family: var(--footer-font);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-buy-main strong {
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.9;
}

.product-buy-actions {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
}

.product-buy-actions label {
  display: grid;
  gap: 7px;
}

.product-buy-actions input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(0, 91, 49, 0.24);
  border-radius: 8px;
  background: rgba(243, 215, 167, 0.82);
  color: #005b31;
  font-weight: 900;
  padding: 0 12px;
}

.product-buy-actions .button {
  width: 100%;
  min-height: 50px;
  align-self: end;
  font-size: 15px;
}

.product-buy-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-self: end;
}

.product-buy-buttons .product-buy-now {
  background: #f47b50;
  color: #fff6e2;
}

.product-buy-buttons .product-add-cart {
  border: 1px solid rgba(0, 91, 49, 0.36);
  background: rgba(255, 246, 226, 0.7);
  color: #005b31;
}

.product-continue-link {
  width: fit-content;
  color: #005b31;
  opacity: 0.72;
}

.product-continue-link:hover {
  opacity: 1;
}

@media (max-width: 620px) {
  .product-buy-actions,
  .product-buy-buttons {
    grid-template-columns: 1fr;
  }
}

.product-experience-section {
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  background:
    linear-gradient(180deg, rgba(201, 208, 184, 0.72), rgba(201, 208, 184, 0.58)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
  color: #005b31;
}

.product-experience-copy h2,
.product-note-card span {
  color: #005b31;
}

.product-experience-copy p {
  color: rgba(0, 91, 49, 0.76);
}

.product-note-card {
  border-color: rgba(185, 157, 119, 0.62);
  background: rgba(243, 215, 167, 0.5);
}

.product-origin-band {
  background:
    linear-gradient(90deg, #f47b50 0%, #f47b50 100%),
    url("../artes/underscore.png");
  background-blend-mode: normal, soft-light;
}

@media (max-width: 920px) {
  .product-detail-page {
    grid-template-columns: 1fr;
  }

  .product-detail-page-copy {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .product-detail-page {
    padding: 120px 18px 56px;
  }

  .product-detail-visual {
    min-height: 320px;
  }

  .product-detail-page-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }
}

/* Contact page */
.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(116px, 10vw, 158px) clamp(24px, 7vw, 112px) clamp(70px, 8vw, 108px);
  background:
    linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.93)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.contact-page-hero::before {
  position: absolute;
  right: max(-180px, -10vw);
  top: 76px;
  width: min(520px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 123, 80, 0.14);
  content: "";
}

.contact-page-copy,
.contact-page-grid {
  position: relative;
  z-index: 1;
}

.contact-page-copy {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 62px);
  text-align: center;
}

.contact-page-copy h1,
.contact-map-copy h2 {
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-page-copy p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(0, 91, 49, 0.76);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 800;
  line-height: 1.55;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
}

.contact-info-panel,
.contact-form,
.contact-map-frame {
  border: 1px solid rgba(185, 157, 119, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 215, 167, 0.88), rgba(243, 215, 167, 0.68)),
    url("../artes/underscore.png");
  background-size: auto, 160px auto;
  box-shadow: 0 22px 54px rgba(0, 91, 49, 0.12);
}

.contact-info-panel {
  display: grid;
}

.contact-info-panel article {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(185, 157, 119, 0.5);
  padding: clamp(18px, 2.5vw, 28px);
}

.contact-info-panel article:last-child {
  border-bottom: 0;
}

.contact-info-panel strong,
.contact-form label > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-left: 4px solid #f47b50;
  border-radius: 3px;
  background: rgba(255, 246, 226, 0.72);
  color: #005b31;
  font-family: var(--footer-font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 7px 10px 7px 9px;
  text-transform: uppercase;
}

.contact-info-panel a,
.contact-info-panel span {
  color: #005b31;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 800;
  line-height: 1.3;
}

.contact-social-icons {
  display: flex;
  gap: 10px;
}

.contact-social-icons a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #f3d7a7;
}

.contact-social-icons img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 36px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 91, 49, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #005b31;
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border-radius: 8px;
}

.contact-form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(0, 91, 49, 0.76);
  font-weight: 800;
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(64px, 7vw, 104px) clamp(24px, 7vw, 112px);
  background: #005b31;
  color: #f3d7a7;
}

.contact-map-copy h2 {
  color: #f3d7a7;
  font-size: clamp(42px, 5vw, 78px);
}

.contact-map-frame {
  overflow: hidden;
  background: #f3d7a7;
  padding: 12px;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 6px;
}

.contact-map-frame .button {
  width: fit-content;
  margin-top: 12px;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .contact-page-grid,
  .contact-map-section {
    grid-template-columns: 1fr;
  }
}

/* WooCommerce account page */
.cariama-generic-page {
  min-height: 58vh;
  background:
    linear-gradient(90deg, rgba(243, 215, 167, 0.98) 0 62%, rgba(201, 208, 184, 0.82) 62% 100%),
    url("../artes/underscore.png");
  background-size: auto, 190px auto;
}

.cariama-generic-page .section-heading {
  max-width: 1120px;
}

.cariama-generic-page h1 {
  margin: 0 0 28px;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(44px, 5vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
}

.cariama-wc-account {
  color: #005b31;
  font-size: 17px;
  font-weight: 700;
}

.cariama-wc-account .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) !important;
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  width: 100%;
}

.cariama-wc-account .woocommerce::before,
.cariama-wc-account .woocommerce::after {
  display: none !important;
  content: none !important;
}

.cariama-wc-account .woocommerce-MyAccount-navigation,
.cariama-wc-account .woocommerce-MyAccount-content {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  max-width: none !important;
}

.cariama-wc-account .woocommerce-MyAccount-navigation {
  grid-column: 1;
}

.cariama-wc-account .woocommerce-MyAccount-content {
  grid-column: 2;
}

.cariama-wc-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cariama-wc-account .woocommerce-MyAccount-navigation a,
.cariama-wc-account .button,
.cariama-wc-account button,
.cariama-wc-account input[type="submit"] {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 91, 49, 0.2);
  border-radius: 8px;
  background: rgba(255, 246, 226, 0.78);
  color: #005b31;
  font-weight: 900;
  text-decoration: none;
}

.cariama-wc-account .woocommerce-MyAccount-navigation a {
  width: 100%;
  justify-content: flex-start;
  padding: 0 16px;
}

.cariama-wc-account .woocommerce-MyAccount-navigation .is-active a,
.cariama-wc-account .button,
.cariama-wc-account button,
.cariama-wc-account input[type="submit"] {
  border-color: #005b31;
  background: #005b31;
  color: #f3d7a7;
}

.cariama-wc-account .woocommerce-MyAccount-content {
  border: 1px solid rgba(185, 157, 119, 0.68);
  border-radius: 8px;
  background: rgba(255, 246, 226, 0.7);
  box-shadow: 0 22px 54px rgba(0, 91, 49, 0.1);
  padding: clamp(22px, 4vw, 38px);
  min-width: 0;
  box-sizing: border-box;
}

.cariama-wc-account .woocommerce-MyAccount-content > * {
  max-width: none;
}

.cariama-wc-account .woocommerce-orders-table,
.cariama-wc-account table.shop_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.cariama-wc-account .woocommerce-orders-table th,
.cariama-wc-account .woocommerce-orders-table td,
.cariama-wc-account table.shop_table th,
.cariama-wc-account table.shop_table td {
  border-bottom: 1px solid rgba(0, 91, 49, 0.14);
  padding: 14px 12px;
  text-align: left;
  vertical-align: middle;
}

.cariama-wc-account .woocommerce-orders-table__cell-order-actions .button,
.cariama-wc-account td .button {
  min-height: 40px;
  padding: 0 14px;
}

.cariama-wc-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 24px;
}

.cariama-wc-account .woocommerce-Address {
  position: relative;
  float: none !important;
  width: 100% !important;
  border: 1px solid rgba(0, 91, 49, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 16px 34px rgba(0, 91, 49, 0.08);
}

.cariama-wc-account .woocommerce-Address-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cariama-wc-account .woocommerce-Address-title h2,
.cariama-wc-account .woocommerce-column__title,
.cariama-wc-account .woocommerce form h3 {
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.cariama-wc-account .woocommerce-Address-title a.edit {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #005b31;
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 0 14px;
  text-decoration: none;
}

.cariama-wc-account address {
  color: #005b31;
  font-style: normal;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.48;
}

.cariama-wc-account .woocommerce-address-fields__field-wrapper,
.cariama-wc-account .woocommerce-EditAccountForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.cariama-wc-account .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.cariama-wc-account .form-row-wide,
.cariama-wc-account fieldset,
.cariama-wc-account .woocommerce-EditAccountForm > p:last-child {
  grid-column: 1 / -1;
}

.cariama-wc-account label {
  display: grid;
  gap: 7px;
  color: #005b31;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.cariama-wc-account fieldset {
  border: 1px solid rgba(0, 91, 49, 0.16);
  border-radius: 8px;
  margin: 8px 0 0;
  padding: 18px;
}

.cariama-wc-account legend {
  padding: 0 8px;
  color: #005b31;
  font-weight: 900;
}

/* WooCommerce product archive polish */
.cariama-shop-archive .product-grid {
  max-width: 1280px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 28px);
}

.product-card-woocommerce {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  border: 1px solid rgba(185, 157, 119, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0 48%, rgba(255, 246, 226, 0.94) 48% 100%),
    url("../artes/underscore.png");
  background-size: auto, 150px auto;
  box-shadow: 0 18px 44px rgba(0, 91, 49, 0.12);
}

.product-card-woocommerce .product-image {
  display: grid;
  min-height: 0;
  aspect-ratio: 1 / 1;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(0, 91, 49, 0.14), transparent 35%),
    #fff;
}

.product-card-woocommerce .product-image img {
  width: min(82%, 330px);
  height: min(82%, 330px);
  object-fit: contain;
}

.product-card-woocommerce .product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 28px);
}

.cariama-shop-archive .product-card h2 {
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 0.98;
  text-transform: uppercase;
}

.cariama-shop-archive .product-card h2 a {
  color: inherit;
  text-decoration: none;
}

.product-card-woocommerce .product-info > span {
  color: rgba(0, 91, 49, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-woocommerce .product-info p {
  margin: 0;
  color: rgba(0, 91, 49, 0.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.product-card-woocommerce .product-info > div:last-child {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card-woocommerce .product-info strong {
  color: #005b31;
  font-size: 24px;
  font-weight: 900;
}

.product-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.product-rating-row small {
  color: rgba(0, 91, 49, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.star-rating {
  position: relative;
  display: inline-block;
  width: 5.4em;
  height: 1.1em;
  overflow: hidden;
  color: #f47b50;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.star-rating::before {
  content: "★★★★★";
  color: rgba(0, 91, 49, 0.22);
}

.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  padding-top: 1.3em;
}

.star-rating span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
}

.woocommerce-review-link,
.woocommerce-product-rating {
  color: #005b31;
  font-weight: 900;
}

.product-info .star-rating,
.product-detail-page-copy .star-rating {
  margin: 2px 0 4px;
}

/* WooCommerce product cards compact premium layout */
.cariama-shop-archive .product-grid {
  max-width: 1180px;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.cariama-shop-archive .product-card-woocommerce {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 43%, rgba(255, 246, 226, 0.98) 43% 100%),
    url("../artes/underscore.png");
  background-size: auto, 140px auto;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cariama-shop-archive .product-card-woocommerce:hover {
  border-color: rgba(0, 91, 49, 0.34);
  box-shadow: 0 28px 62px rgba(0, 91, 49, 0.18);
  transform: translateY(-5px);
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  position: relative;
  aspect-ratio: 1.22 / 1;
  min-height: 250px;
  padding: 24px;
  background:
    radial-gradient(ellipse at 50% 76%, rgba(0, 91, 49, 0.16), transparent 36%),
    linear-gradient(180deg, #fff, #fffaf0);
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cariama-shop-archive .product-card-woocommerce .product-info {
  gap: 11px;
  padding: 22px 24px 24px;
}

.cariama-shop-archive .product-card-woocommerce .product-info > span {
  width: fit-content;
  border-left: 4px solid #f47b50;
  border-radius: 3px;
  background: rgba(243, 215, 167, 0.42);
  color: #005b31;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 7px 9px;
}

.cariama-shop-archive .product-card h2 {
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.02;
}

.cariama-shop-archive .product-card-woocommerce .product-info p {
  min-height: 44px;
  color: rgba(0, 91, 49, 0.72);
  font-size: 14px;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
  border-top: 1px solid rgba(0, 91, 49, 0.14);
  padding-top: 16px;
}

.cariama-shop-archive .product-card-woocommerce .product-info strong {
  color: #005b31;
  font-size: 25px;
  line-height: 1;
}

.cariama-shop-archive .product-card-woocommerce .button-small {
  min-width: 128px;
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
  text-transform: uppercase;
}

/* Keep product showcase at the larger display size requested */
.cariama-shop-archive .product-grid {
  max-width: 1280px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  aspect-ratio: 1 / 1;
  min-height: 296px;
  padding: clamp(26px, 3vw, 38px);
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  width: min(100%, 330px);
  height: min(100%, 330px);
}

.cariama-shop-archive .product-card h2 {
  font-size: clamp(26px, 2.05vw, 34px);
}

.cariama-shop-archive {
  padding-top: clamp(42px, 5vw, 72px);
}

.cariama-shop-archive .shop-heading-compact {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.star-rating::before,
.star-rating span::before {
  content: "\2605\2605\2605\2605\2605";
}

/* Fixed product showcase sizing: cards must not stretch when there are few products */
.cariama-shop-archive .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 300px));
  justify-content: center;
  align-items: stretch;
}

.cariama-shop-archive .product-card-woocommerce {
  width: 100%;
  max-width: 300px;
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  min-height: 286px;
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  width: min(100%, 245px);
  height: min(100%, 245px);
}

.cariama-shop-archive .product-card h2 {
  font-size: clamp(25px, 1.65vw, 31px);
}

/* Final WooCommerce showcase: match the requested 4-card storefront */
.cariama-shop-archive {
  padding-top: clamp(34px, 4vw, 54px);
}

.cariama-shop-archive .product-grid {
  max-width: 1288px;
  grid-template-columns: repeat(4, 300px);
  gap: 28px;
  justify-content: center;
}

.cariama-shop-archive .product-card-woocommerce {
  display: grid;
  width: 300px;
  max-width: 300px;
  min-height: 700px;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border: 1px solid rgba(185, 157, 119, 0.55);
  border-radius: 8px;
  background: #f3d7a7;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.12);
  transform: none;
}

.cariama-shop-archive .product-card-woocommerce:hover {
  border-color: rgba(0, 91, 49, 0.28);
  box-shadow: 0 24px 58px rgba(0, 91, 49, 0.16);
  transform: translateY(-3px);
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  display: grid;
  min-height: 300px;
  aspect-ratio: auto;
  place-items: center;
  padding: 26px;
  background: #fff;
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cariama-shop-archive .product-card-woocommerce .product-info {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  gap: 12px;
  padding: 28px 28px 26px;
  background: #f3d7a7;
}

.cariama-shop-archive .product-card-woocommerce .product-info > span {
  border: 0;
  background: transparent;
  color: rgba(0, 91, 49, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 0;
}

.cariama-shop-archive .product-card h2 {
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: 32px;
  line-height: 1.02;
  text-transform: uppercase;
}

.cariama-shop-archive .product-rating-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.cariama-shop-archive .product-rating-row small {
  justify-self: end;
  color: #2d8a5d;
  font-size: 12px;
}

.cariama-shop-archive .product-card-woocommerce .product-info p {
  min-height: 54px;
  margin: 0;
  color: #2d8a5d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: auto;
  border-top: 0;
  padding-top: 0;
}

.cariama-shop-archive .product-card-woocommerce .product-info strong {
  color: #005b31;
  font-size: 22px;
  font-weight: 900;
}

.cariama-shop-archive .product-card-woocommerce .button-small {
  width: 148px;
  min-width: 148px;
  min-height: 48px;
  justify-self: end;
  border-radius: 4px;
  background: #eeeaf1;
  color: #555;
  font-size: 14px;
  text-transform: uppercase;
}

.cariama-shop-archive .star-rating {
  color: #f47b50;
  font-size: 17px;
}

.cariama-shop-archive .product-rating-row small {
  color: #005b31;
}

/* Wider single product page with reviews */
.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1fr);
  gap: clamp(44px, 5vw, 86px);
  padding-inline: clamp(44px, 7vw, 128px);
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  min-height: clamp(520px, 52vw, 720px);
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  max-width: 720px;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  font-size: clamp(58px, 6vw, 104px);
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  max-width: 720px;
}

.product-reviews-section {
  padding: clamp(54px, 7vw, 92px) clamp(24px, 7vw, 128px);
  background:
    linear-gradient(180deg, rgba(243, 215, 167, 0.98), rgba(243, 215, 167, 0.94)),
    url("../artes/underscore.png");
  background-size: auto, 180px auto;
}

.product-reviews-shell {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(185, 157, 119, 0.6);
  border-radius: 8px;
  background: rgba(255, 246, 226, 0.74);
  box-shadow: 0 20px 48px rgba(0, 91, 49, 0.1);
  padding: clamp(24px, 4vw, 44px);
}

.product-reviews-shell h2,
.product-reviews-shell .comment-reply-title {
  margin: 0 0 18px;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
}

.product-reviews-shell .commentlist {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.product-reviews-shell .comment,
.product-reviews-shell .review {
  border: 1px solid rgba(0, 91, 49, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  padding: 18px;
}

.product-reviews-shell .comment-text p,
.product-reviews-shell .description p {
  color: #005b31;
  font-weight: 700;
  line-height: 1.55;
}

.product-reviews-shell input,
.product-reviews-shell textarea,
.product-reviews-shell select {
  width: 100%;
  border: 1px solid rgba(0, 91, 49, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #005b31;
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
}

.product-reviews-shell .submit {
  width: auto;
  border: 0;
  background: #005b31;
  color: #f3d7a7;
  cursor: pointer;
}

@media (max-width: 980px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr;
  }
}

/* Final rating polish */
.product-rating-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.product-rating-row .star-rating,
.woocommerce-product-rating .star-rating,
.product-reviews-shell .star-rating {
  position: relative;
  display: inline-block;
  width: 6.1em;
  height: 1.15em;
  overflow: hidden;
  color: #d99a28;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.product-rating-row .star-rating::before,
.woocommerce-product-rating .star-rating::before,
.product-reviews-shell .star-rating::before {
  content: "\2605\2605\2605\2605\2605";
  color: rgba(0, 91, 49, 0.2);
}

.product-rating-row .star-rating span,
.woocommerce-product-rating .star-rating span,
.product-reviews-shell .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  padding-top: 1.35em;
}

.product-rating-row .star-rating span::before,
.woocommerce-product-rating .star-rating span::before,
.product-reviews-shell .star-rating span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2605\2605\2605\2605\2605";
}

.cariama-shop-archive .product-rating-row {
  display: grid;
  grid-template-columns: auto 1fr;
}

.product-rating-row small {
  width: max-content;
  border-radius: 999px;
  background: rgba(255, 246, 226, 0.5);
  color: #005b31;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 6px 8px;
  text-transform: uppercase;
}

.cariama-shop-archive .product-rating-row small {
  justify-self: end;
}

@media (max-width: 1320px) {
  .cariama-shop-archive .product-grid {
    grid-template-columns: repeat(3, 300px);
  }
}

@media (max-width: 980px) {
  .cariama-shop-archive .product-grid {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 660px) {
  .cariama-shop-archive .product-grid {
    grid-template-columns: minmax(0, 300px);
  }
}

.cariama-wc-account p {
  max-width: 720px;
  line-height: 1.65;
}

.cariama-wc-account a {
  color: #005b31;
  font-weight: 900;
}

.cariama-wc-account input,
.cariama-wc-account select,
.cariama-wc-account textarea {
  width: 100%;
  border: 1px solid rgba(0, 91, 49, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #005b31;
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
}

@media (max-width: 760px) {
  .cariama-wc-account .woocommerce {
    grid-template-columns: 1fr !important;
  }

  .cariama-wc-account .woocommerce-MyAccount-navigation,
  .cariama-wc-account .woocommerce-MyAccount-content {
    grid-column: 1;
  }

  .cariama-wc-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr 1fr;
  }

  .cariama-wc-account .woocommerce-Addresses,
  .cariama-wc-account .woocommerce-address-fields__field-wrapper,
  .cariama-wc-account .woocommerce-EditAccountForm {
    grid-template-columns: 1fr;
  }

  .cariama-wc-account .woocommerce-Address-title {
    display: grid;
  }
}

/* Simple yellow rating stars */
.product-rating-row {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.product-rating-row .star-rating,
.woocommerce-product-rating .star-rating,
.product-reviews-shell .star-rating {
  width: 5.35em !important;
  height: 1em !important;
  color: #f5b928 !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}

.product-rating-row .star-rating::before,
.woocommerce-product-rating .star-rating::before,
.product-reviews-shell .star-rating::before {
  content: "\2605\2605\2605\2605\2605" !important;
  color: #f5d891 !important;
}

.product-rating-row .star-rating span,
.woocommerce-product-rating .star-rating span,
.product-reviews-shell .star-rating span {
  padding-top: 1.15em !important;
}

.product-rating-row .star-rating span::before,
.woocommerce-product-rating .star-rating span::before,
.product-reviews-shell .star-rating span::before {
  content: "\2605\2605\2605\2605\2605" !important;
  color: #f5b928 !important;
}

.product-rating-row small,
.cariama-shop-archive .product-rating-row small {
  width: auto !important;
  justify-self: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #005b31 !important;
  font-size: 11px !important;
  padding: 0 !important;
}

/* Clean large yellow stars without WooCommerce text bleed */
.product-rating-row .star-rating,
.woocommerce-product-rating .star-rating,
.product-reviews-shell .star-rating,
.cariama-shop-archive .star-rating {
  position: relative !important;
  display: inline-block !important;
  width: 6.25em !important;
  height: 1.18em !important;
  overflow: hidden !important;
  color: #f4b326 !important;
  font-family: Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.18 !important;
  letter-spacing: 0.04em !important;
  vertical-align: middle !important;
}

.product-rating-row .star-rating::before,
.woocommerce-product-rating .star-rating::before,
.product-reviews-shell .star-rating::before,
.cariama-shop-archive .star-rating::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  content: "\2605\2605\2605\2605\2605" !important;
  color: #efd391 !important;
}

.product-rating-row .star-rating span,
.woocommerce-product-rating .star-rating span,
.product-reviews-shell .star-rating span,
.cariama-shop-archive .star-rating span {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  padding: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.product-rating-row .star-rating span *,
.woocommerce-product-rating .star-rating span *,
.product-reviews-shell .star-rating span *,
.cariama-shop-archive .star-rating span * {
  display: inline !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.product-rating-row .star-rating span::before,
.woocommerce-product-rating .star-rating span::before,
.product-reviews-shell .star-rating span::before,
.cariama-shop-archive .star-rating span::before {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  content: "\2605\2605\2605\2605\2605" !important;
  color: #f4b326 !important;
  font-family: Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.18 !important;
  letter-spacing: 0.04em !important;
}

.cariama-shop-archive .product-rating-row .star-rating strong,
.product-detail-page-copy .product-rating-row .star-rating strong,
.product-reviews-shell .star-rating strong {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Product review section: clean title, yellow stars and polished form */
.product-reviews-shell {
  max-width: 1180px;
}

.cariama-reviews-heading {
  margin-bottom: 24px;
}

.cariama-reviews-heading h2,
.product-reviews-shell .comment-reply-title {
  margin: 0;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
}

.cariama-reviews-heading p {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(0, 91, 49, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.cariama-review-list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.cariama-review-card article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(0, 91, 49, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  padding: 16px;
}

.cariama-review-avatar img {
  border-radius: 50%;
}

.cariama-review-body header {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cariama-review-body strong {
  color: #005b31;
  font-weight: 900;
}

.cariama-review-body time {
  color: rgba(0, 91, 49, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.cariama-review-text p {
  margin: 8px 0 0;
  color: #005b31;
  font-weight: 700;
  line-height: 1.55;
}

.product-reviews-shell .comment-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.product-reviews-shell .comment-form-rating,
.product-reviews-shell .comment-form-comment,
.product-reviews-shell .comment-form-author,
.product-reviews-shell .comment-form-email,
.product-reviews-shell .comment-form-cookies-consent {
  margin: 0;
}

.product-reviews-shell label {
  display: block;
  margin-bottom: 7px;
  color: #005b31;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-reviews-shell .submit.button {
  min-height: 52px;
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
  font-weight: 900;
  text-transform: uppercase;
}

/* Final product purchase panel polish */
.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  border-color: rgba(0, 91, 49, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 246, 226, 0.95), rgba(243, 215, 167, 0.82)),
    url("../artes/underscore.png");
  box-shadow: 0 24px 58px rgba(0, 91, 49, 0.14);
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  border-bottom: 1px solid rgba(0, 91, 49, 0.14);
  padding-bottom: 14px;
}

.single-product .product-buy-buttons .product-buy-now,
.product-template-default .product-buy-buttons .product-buy-now {
  border-radius: 8px;
  background: #f47b50;
  color: #fff6e2;
  box-shadow: 0 12px 24px rgba(244, 123, 80, 0.25);
}

.single-product .product-buy-buttons .product-add-cart,
.product-template-default .product-buy-buttons .product-add-cart {
  border: 1px solid #005b31;
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
}

/* Native WooCommerce cart and checkout fields */
.woocommerce-cart .cariama-generic-page,
.woocommerce-checkout .cariama-generic-page {
  background:
    linear-gradient(90deg, rgba(243, 215, 167, 0.98) 0 72%, rgba(201, 208, 184, 0.7) 72% 100%),
    url("../artes/underscore.png");
  background-size: auto, 190px auto;
}

.woocommerce-cart .cariama-generic-page .section-heading,
.woocommerce-checkout .cariama-generic-page .section-heading {
  max-width: 1180px;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  color: #005b31;
  font-weight: 700;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-cart-form,
.cart-collaterals .cart_totals {
  border: 1px solid rgba(185, 157, 119, 0.62);
  border-radius: 8px;
  background: rgba(255, 246, 226, 0.78);
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.1);
  padding: clamp(18px, 3vw, 30px);
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
}

.woocommerce-checkout h3,
.cart-collaterals h2 {
  margin: 0 0 18px;
  color: #005b31;
  font-family: var(--strong-font);
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
}

.woocommerce form .form-row {
  margin: 0 0 14px;
}

.woocommerce form .form-row label {
  color: #005b31;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  min-height: 48px;
  border: 1px solid rgba(0, 91, 49, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #005b31;
  font: inherit;
  font-weight: 700;
  padding: 11px 13px;
}

.woocommerce #payment {
  border-radius: 8px;
  background: rgba(255, 246, 226, 0.82);
}

.woocommerce #payment ul.payment_methods {
  border-bottom: 1px solid rgba(0, 91, 49, 0.14);
}

.woocommerce #payment #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .button {
  border-radius: 8px;
  background: #005b31;
  color: #f3d7a7;
  font-weight: 900;
  text-transform: uppercase;
}

.woocommerce-cart .shipping-calculator-button,
.woocommerce-checkout .woocommerce-shipping-fields label {
  color: #005b31;
  font-weight: 900;
}

@media (max-width: 860px) {
  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
  }
}

/* Final mobile menu fix */
@media (max-width: 980px) {
  .site-header,
  .home-header.site-header,
  .site-header.is-open,
  .home-header.site-header.is-open {
    position: relative;
    overflow: visible !important;
    z-index: 999;
  }

  .site-header .menu-toggle,
  .home-header .menu-toggle {
    display: grid !important;
    place-items: center;
  }

  .site-header .site-nav,
  .home-header .site-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border: 1px solid rgba(0, 91, 49, 0.18) !important;
    border-radius: 8px !important;
    background: #f3d7a7 !important;
    box-shadow: 0 22px 54px rgba(0, 91, 49, 0.22) !important;
    padding: 8px !important;
    color: #005b31 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-header.is-open .site-nav,
  .home-header.site-header.is-open .site-nav {
    display: grid !important;
  }

  .site-header .site-nav a,
  .home-header .site-nav a {
    display: flex !important;
    width: 100% !important;
    min-height: 46px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border-bottom: 1px solid rgba(0, 91, 49, 0.12) !important;
    color: #005b31 !important;
    font-family: var(--main-font) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
    padding: 0 14px !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
  }

  .site-header .site-nav a:last-child,
  .home-header .site-nav a:last-child {
    border-bottom: 0 !important;
  }

  .site-header .site-nav a::after,
  .home-header .site-nav a::after {
    display: none !important;
  }

  .site-header.is-open .home-header-actions,
  .home-header.site-header.is-open .home-header-actions {
    display: flex !important;
    position: absolute !important;
    top: calc(100% + 226px) !important;
    right: 16px !important;
    z-index: 1000 !important;
    gap: 10px !important;
  }
}

/* Final single product visual correction */
.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 0.85fr) !important;
  gap: clamp(34px, 4vw, 68px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  display: grid !important;
  min-height: clamp(430px, 43vw, 620px) !important;
  place-items: center !important;
  background: #fff !important;
  box-shadow: 0 22px 48px rgba(0, 91, 49, 0.13) !important;
}

.single-product .product-detail-visual img,
.product-template-default .product-detail-visual img {
  width: min(82%, 560px) !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  max-width: 620px !important;
  gap: clamp(12px, 1.4vw, 18px) !important;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  max-width: 620px !important;
  font-size: clamp(44px, 4.5vw, 74px) !important;
  line-height: 0.96 !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  max-width: 620px !important;
  border-left: 5px solid #f47b50 !important;
  background: rgba(255, 246, 226, 0.42) !important;
  padding: 18px 20px !important;
  font-size: 18px !important;
  line-height: 1.62 !important;
}

.single-product .single-product-description h1,
.single-product .single-product-description h2,
.single-product .single-product-description h3,
.product-template-default .single-product-description h1,
.product-template-default .single-product-description h2,
.product-template-default .single-product-description h3 {
  margin: 0 0 10px !important;
  color: #005b31 !important;
  font-family: var(--main-font) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.single-product .single-product-description p,
.product-template-default .single-product-description p {
  margin: 0 !important;
  color: rgba(0, 91, 49, 0.82) !important;
  font-size: inherit !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-detail-page-copy h1,
  .product-template-default .product-detail-page-copy h1 {
    font-size: clamp(40px, 12vw, 58px) !important;
  }
}

/* Responsive WooCommerce rescue: fluid cards, clean stars and product page */
.cariama-shop-archive {
  overflow-x: clip !important;
}

.cariama-shop-archive .product-grid {
  width: min(100%, 1320px) !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 300px)) !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: clamp(18px, 2.2vw, 30px) !important;
  margin-inline: auto !important;
  padding-inline: clamp(14px, 3vw, 24px) !important;
}

.cariama-shop-archive .product-card-woocommerce {
  width: 100% !important;
  max-width: 300px !important;
  min-height: 0 !important;
  grid-template-rows: 300px minmax(405px, auto) !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  width: 100% !important;
  min-height: 300px !important;
  aspect-ratio: 1 / 1 !important;
  padding: clamp(22px, 7vw, 30px) !important;
  background: #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  width: 100% !important;
  max-width: 244px !important;
  height: 100% !important;
  max-height: 244px !important;
  object-fit: contain !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info {
  min-height: 405px !important;
  padding: clamp(22px, 2.6vw, 28px) !important;
}

.cariama-shop-archive .product-card h2 {
  font-size: clamp(27px, 2.2vw, 32px) !important;
  line-height: 1.04 !important;
  overflow-wrap: anywhere !important;
}

.cariama-shop-archive .product-rating-row,
.single-product .product-rating-row,
.product-template-default .product-rating-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 12px !important;
  align-items: center !important;
}

.cariama-shop-archive .star-rating,
.single-product .star-rating,
.product-template-default .star-rating,
.product-reviews-shell .star-rating,
.woocommerce-product-rating .star-rating {
  position: relative !important;
  display: inline-block !important;
  width: 5.8em !important;
  height: 1.15em !important;
  overflow: hidden !important;
  color: #f4b326 !important;
  font-family: Arial, sans-serif !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0.03em !important;
  vertical-align: middle !important;
}

.cariama-shop-archive .star-rating::before,
.single-product .star-rating::before,
.product-template-default .star-rating::before,
.product-reviews-shell .star-rating::before,
.woocommerce-product-rating .star-rating::before {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  content: "\2605\2605\2605\2605\2605" !important;
  color: rgba(244, 179, 38, 0.34) !important;
}

.cariama-shop-archive .star-rating span,
.single-product .star-rating span,
.product-template-default .star-rating span,
.product-reviews-shell .star-rating span,
.woocommerce-product-rating .star-rating span {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  padding: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
}

.cariama-shop-archive .star-rating span::before,
.single-product .star-rating span::before,
.product-template-default .star-rating span::before,
.product-reviews-shell .star-rating span::before,
.woocommerce-product-rating .star-rating span::before {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  content: "\2605\2605\2605\2605\2605" !important;
  color: #f4b326 !important;
  font-family: Arial, sans-serif !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0.03em !important;
  text-indent: 0 !important;
}

.cariama-shop-archive .star-rating strong,
.cariama-shop-archive .star-rating .rating,
.single-product .star-rating strong,
.single-product .star-rating .rating,
.product-template-default .star-rating strong,
.product-template-default .star-rating .rating,
.product-reviews-shell .star-rating strong,
.product-reviews-shell .star-rating .rating,
.woocommerce-product-rating .star-rating strong,
.woocommerce-product-rating .star-rating .rating {
  display: none !important;
}

.cariama-shop-archive .product-rating-row small,
.single-product .product-rating-row small,
.product-template-default .product-rating-row small {
  color: #005b31 !important;
  font-size: clamp(10px, 0.9vw, 12px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 14px !important;
  align-items: center !important;
  margin-top: auto !important;
  padding-top: 18px !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child > strong {
  color: #005b31 !important;
  font-size: clamp(18px, 1.5vw, 22px) !important;
  font-weight: 900 !important;
}

.cariama-shop-archive .product-card-woocommerce .button-small {
  width: auto !important;
  min-width: 148px !important;
  min-height: 48px !important;
  justify-self: end !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  width: min(100%, 1720px) !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 0.86fr) !important;
  gap: clamp(26px, 4vw, 72px) !important;
  align-items: center !important;
  margin-inline: auto !important;
  padding: clamp(36px, 6vw, 92px) clamp(16px, 5vw, 96px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  width: 100% !important;
  min-height: clamp(330px, 43vw, 640px) !important;
  aspect-ratio: 1.12 / 1 !important;
  border: 1px solid rgba(0, 91, 49, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 22px 48px rgba(0, 91, 49, 0.13) !important;
  padding: clamp(18px, 4vw, 48px) !important;
}

.single-product .product-detail-visual img,
.product-template-default .product-detail-visual img {
  width: min(100%, 620px) !important;
  max-height: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  width: 100% !important;
  max-width: 660px !important;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  max-width: 12ch !important;
  font-size: clamp(42px, 5vw, 82px) !important;
  line-height: 0.96 !important;
  overflow-wrap: anywhere !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description,
.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  width: 100% !important;
  max-width: 660px !important;
}

@media (max-width: 1120px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .single-product .product-detail-page-copy,
  .product-template-default .product-detail-page-copy {
    max-width: 760px !important;
  }

  .single-product .product-detail-page-copy h1,
  .product-template-default .product-detail-page-copy h1 {
    max-width: 14ch !important;
  }
}

@media (max-width: 680px) {
  .cariama-shop-archive .product-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 390px !important;
  }

  .cariama-shop-archive .product-card-woocommerce {
    max-width: none !important;
    grid-template-rows: minmax(240px, 72vw) auto !important;
  }

  .cariama-shop-archive .product-card-woocommerce .product-image {
    min-height: 240px !important;
  }

  .cariama-shop-archive .product-card-woocommerce .product-info {
    min-height: 0 !important;
  }

  .cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .cariama-shop-archive .product-card-woocommerce .button-small {
    width: 100% !important;
    justify-self: stretch !important;
  }

  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    padding-inline: 14px !important;
  }

  .single-product .product-detail-page-copy h1,
  .product-template-default .product-detail-page-copy h1 {
    max-width: 100% !important;
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions,
  .single-product .product-buy-buttons,
  .product-template-default .product-buy-buttons {
    grid-template-columns: 1fr !important;
  }
}

/* WooCommerce flow pages: never show old builder shortcode text */
.cariama-woocommerce-page .section-heading {
  max-width: min(1180px, calc(100vw - 32px)) !important;
  text-align: left !important;
}

.cariama-wc-flow,
.cariama-wc-flow .woocommerce {
  width: 100% !important;
  max-width: 100% !important;
}

.cariama-wc-flow .woocommerce-notices-wrapper,
.cariama-wc-flow .cart-empty,
.cariama-wc-flow .return-to-shop {
  max-width: 100% !important;
}

/* Single product: use only the product image background, not a second white frame */
.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  min-height: 0 !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.single-product .product-detail-visual img,
.product-template-default .product-detail-visual img {
  display: block !important;
  width: min(100%, 760px) !important;
  max-height: min(72vh, 720px) !important;
  margin-inline: auto !important;
  border-radius: 8px !important;
  object-fit: contain !important;
}

@media (max-width: 1120px) {
  .single-product .product-detail-visual img,
  .product-template-default .product-detail-visual img {
    width: min(100%, 680px) !important;
    max-height: 620px !important;
  }
}

@media (max-width: 680px) {
  .single-product .product-detail-visual img,
  .product-template-default .product-detail-visual img {
    width: 100% !important;
    max-height: none !important;
  }
}

/* Product info and grind choice final layout */
.single-product .single-product-description,
.product-template-default .single-product-description {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.85fr) !important;
  gap: clamp(16px, 2vw, 26px) !important;
  align-items: center !important;
  border-left: 5px solid #f47b50 !important;
  border-radius: 0 8px 8px 0 !important;
  background: rgba(255, 246, 226, 0.52) !important;
  padding: clamp(18px, 2.2vw, 26px) !important;
}

.single-product .product-description-copy,
.product-template-default .product-description-copy {
  min-width: 0 !important;
}

.single-product .product-description-copy p,
.product-template-default .product-description-copy p {
  max-width: 50ch !important;
  margin: 0 !important;
  font-size: clamp(15px, 1.05vw, 18px) !important;
  line-height: 1.58 !important;
}

.single-product .single-product-description > :not(.product-description-copy),
.product-template-default .single-product-description > :not(.product-description-copy) {
  min-width: 0 !important;
}

.single-product .single-product-description img,
.product-template-default .single-product-description img {
  max-width: min(100%, 180px) !important;
  height: auto !important;
  justify-self: center !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: 104px minmax(0, 1fr) !important;
  align-items: end !important;
}

.single-product .product-grind-options,
.product-template-default .product-grind-options {
  display: grid !important;
  grid-column: 1 / -1 !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 0 4px !important;
  border: 0 !important;
  padding: 0 !important;
}

.single-product .product-grind-options legend,
.product-template-default .product-grind-options legend {
  grid-column: 1 / -1 !important;
  margin: 0 0 2px !important;
  color: #b99d77 !important;
  font-family: var(--footer-font) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.single-product .product-grind-options label,
.product-template-default .product-grind-options label {
  position: relative !important;
  display: flex !important;
  min-height: 50px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(0, 91, 49, 0.26) !important;
  border-radius: 8px !important;
  background: rgba(255, 246, 226, 0.74) !important;
  color: #005b31 !important;
  cursor: pointer !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.single-product .product-grind-options input,
.product-template-default .product-grind-options input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.single-product .product-grind-options label:has(input:checked),
.product-template-default .product-grind-options label:has(input:checked) {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #f3d7a7 !important;
  box-shadow: 0 12px 24px rgba(0, 91, 49, 0.16) !important;
}

@media (max-width: 760px) {
  .single-product .single-product-description,
  .product-template-default .single-product-description,
  .single-product .product-grind-options,
  .product-template-default .product-grind-options {
    grid-template-columns: 1fr !important;
  }

  .single-product .single-product-description img,
  .product-template-default .single-product-description img {
    justify-self: start !important;
  }
}

/* Product page reference layout: clean white storefront */
.single-product main#inicio,
.product-template-default main#inicio {
  background: #fff !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  width: min(100%, 1220px) !important;
  min-height: auto !important;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 0.92fr) !important;
  gap: clamp(38px, 7vw, 92px) !important;
  align-items: start !important;
  padding: clamp(48px, 8vw, 86px) clamp(18px, 5vw, 64px) 42px !important;
  background: #fff !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  display: grid !important;
  justify-items: center !important;
  gap: clamp(24px, 4vw, 54px) !important;
  background: #fff !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  position: relative !important;
  display: grid !important;
  width: 100% !important;
  min-height: clamp(360px, 48vw, 520px) !important;
  place-items: center !important;
  background: #fff !important;
  text-decoration: none !important;
}

.single-product .product-main-image::after,
.product-template-default .product-main-image::after {
  content: "\1F50D" !important;
  position: absolute !important;
  top: clamp(24px, 5vw, 54px) !important;
  right: clamp(18px, 4vw, 48px) !important;
  color: #111 !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

.single-product .product-detail-visual img,
.product-template-default .product-detail-visual img {
  width: min(100%, 520px) !important;
  max-height: 520px !important;
  border-radius: 0 !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 26px !important;
  width: 100% !important;
}

.single-product .product-detail-thumbs img,
.product-template-default .product-detail-thumbs img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
  opacity: 0.72 !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  display: grid !important;
  width: 86px !important;
  height: 86px !important;
  place-items: center !important;
  border: 2px solid transparent !important;
  border-radius: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.single-product .product-thumb-button:hover,
.single-product .product-thumb-button.is-active,
.product-template-default .product-thumb-button:hover,
.product-template-default .product-thumb-button.is-active {
  border-color: #005b31 !important;
}

.single-product .product-thumb-button:hover img,
.single-product .product-thumb-button.is-active img,
.product-template-default .product-thumb-button:hover img,
.product-template-default .product-thumb-button.is-active img {
  opacity: 1 !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  display: grid !important;
  justify-items: center !important;
  gap: 20px !important;
  max-width: none !important;
  padding-top: 0 !important;
  text-align: center !important;
}

.single-product .product-detail-page-copy .section-kicker,
.product-template-default .product-detail-page-copy .section-kicker {
  display: none !important;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  max-width: 100% !important;
  color: #0b0b0b !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

.single-product .product-rating-row,
.product-template-default .product-rating-row {
  justify-content: center !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  width: 100% !important;
  max-width: 520px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #d7d7d7 !important;
  border-radius: 0 !important;
  background: #fff !important;
  padding: 8px 0 34px !important;
  text-align: center !important;
}

.single-product .product-description-copy,
.product-template-default .product-description-copy {
  display: none !important;
}

.single-product .product-description-facts,
.product-template-default .product-description-facts {
  display: grid !important;
  justify-items: center !important;
  gap: 16px !important;
}

.single-product .product-description-facts div,
.product-template-default .product-description-facts div {
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.single-product .product-description-facts div:nth-child(1)::before,
.product-template-default .product-description-facts div:nth-child(1)::before {
  content: "FAZENDA\A BOM SUCESSO" !important;
  display: grid !important;
  width: 220px !important;
  min-height: 120px !important;
  margin: 0 auto 14px !important;
  place-items: end center !important;
  color: #5c4f4d !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  line-height: 0.95 !important;
  text-align: center !important;
  white-space: pre !important;
}

.single-product .product-description-facts div:nth-child(1) span,
.product-template-default .product-description-facts div:nth-child(1) span,
.single-product .product-description-facts div:nth-child(3),
.product-template-default .product-description-facts div:nth-child(3) {
  display: none !important;
}

.single-product .product-description-facts strong,
.product-template-default .product-description-facts strong {
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}

.single-product .product-description-facts div:nth-child(2),
.product-template-default .product-description-facts div:nth-child(2) {
  display: block !important;
}

.single-product .product-description-facts div:nth-child(2) span,
.product-template-default .product-description-facts div:nth-child(2) span {
  display: none !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  width: 100% !important;
  max-width: 520px !important;
  border: 1px solid #dedede !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  padding: 20px !important;
  text-align: center !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  justify-content: center !important;
  border-bottom: 1px solid #e6e6e6 !important;
  text-align: center !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: 88px minmax(0, 1fr) !important;
  justify-content: center !important;
  align-items: end !important;
}

.single-product .product-buy-actions > label,
.product-template-default .product-buy-actions > label {
  text-align: left !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  justify-self: center !important;
  width: 100% !important;
  max-width: 390px !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.single-product .product-grind-options,
.product-template-default .product-grind-options {
  justify-self: center !important;
  width: min(100%, 390px) !important;
}

.single-product .product-continue-link,
.product-template-default .product-continue-link {
  margin-inline: auto !important;
}

@media (max-width: 920px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
  }
}

/* Product page: stronger Cariama beige and brand watermark */
.single-product main#inicio,
.product-template-default main#inicio {
  background:
    linear-gradient(180deg, #fffaf0 0%, #f8e0ac 100%) !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0 50%, rgba(248, 224, 172, 0.88) 50% 100%) !important;
}

.single-product .product-detail-page::before,
.single-product .product-detail-page::after,
.product-template-default .product-detail-page::before,
.product-template-default .product-detail-page::after {
  display: none !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  position: relative !important;
  isolation: isolate !important;
  border-radius: 0 !important;
}

.single-product .product-detail-page-copy::before,
.product-template-default .product-detail-page-copy::before {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  right: -52px !important;
  top: 40px !important;
  width: min(38vw, 340px) !important;
  height: min(48vw, 430px) !important;
  background: url("../artes/icon-bird --.png") center / contain no-repeat !important;
  opacity: 0.18 !important;
  filter: saturate(1.25) contrast(1.08) !important;
  pointer-events: none !important;
}

.single-product .product-detail-page-copy > *,
.product-template-default .product-detail-page-copy > * {
  position: relative !important;
  z-index: 1 !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  border-bottom-color: rgba(111, 83, 47, 0.26) !important;
  background: rgba(255, 241, 204, 0.54) !important;
}

.single-product .product-description-facts div,
.product-template-default .product-description-facts div {
  color: #3b2b1d !important;
}

.single-product .product-description-facts div:nth-child(1)::before,
.product-template-default .product-description-facts div:nth-child(1)::before {
  color: #5a443b !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  border-color: rgba(111, 83, 47, 0.22) !important;
  background: #fff0cf !important;
  box-shadow: 0 18px 42px rgba(92, 64, 25, 0.12) !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  border-bottom-color: rgba(111, 83, 47, 0.18) !important;
}

.single-product .product-buy-actions input,
.product-template-default .product-buy-actions input {
  border-color: rgba(111, 83, 47, 0.32) !important;
  background: #f6d99b !important;
  color: #005b31 !important;
}

.single-product .product-grind-options label,
.product-template-default .product-grind-options label {
  border-color: rgba(111, 83, 47, 0.32) !important;
  background: #fff7df !important;
  color: #7b653f !important;
}

.single-product .product-grind-options label:has(input:checked),
.product-template-default .product-grind-options label:has(input:checked) {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #f8e0ac !important;
}

.single-product .product-buy-buttons .product-buy-now,
.product-template-default .product-buy-buttons .product-buy-now {
  background: #f47b50 !important;
  color: #fff6e2 !important;
  box-shadow: 0 14px 28px rgba(244, 123, 80, 0.26) !important;
}

.single-product .product-buy-buttons .product-add-cart,
.product-template-default .product-buy-buttons .product-add-cart {
  background: #005b31 !important;
  color: #f8e0ac !important;
}

@media (max-width: 920px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(248, 224, 172, 0.9)) !important;
  }

  .single-product .product-detail-page-copy::before,
  .product-template-default .product-detail-page-copy::before {
    right: -22px !important;
    top: 20px !important;
    width: 260px !important;
    height: 330px !important;
    opacity: 0.12 !important;
  }
}

/* Product reviews: no count in title, bigger yellow stars */
.product-reviews-section {
  background:
    linear-gradient(180deg, #f8e0ac 0%, #fff0cf 100%),
    url("../artes/underscore.png") !important;
  background-size: auto, 180px auto !important;
}

.product-reviews-shell {
  max-width: 1080px !important;
  border-color: rgba(111, 83, 47, 0.28) !important;
  background: rgba(255, 246, 226, 0.88) !important;
  box-shadow: 0 22px 58px rgba(92, 64, 25, 0.13) !important;
}

.cariama-product-reviews .cariama-reviews-heading h2,
.product-reviews-shell .cariama-reviews-heading h2 {
  max-width: 780px !important;
  margin-bottom: 10px !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(42px, 4.5vw, 70px) !important;
  line-height: 0.96 !important;
  text-transform: uppercase !important;
}

.cariama-product-reviews .cariama-reviews-heading p,
.product-reviews-shell .cariama-reviews-heading p {
  color: rgba(0, 91, 49, 0.76) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.cariama-product-reviews .commentlist,
.product-reviews-shell .commentlist {
  display: grid !important;
  gap: 18px !important;
  margin: 28px 0 42px !important;
  padding: 0 !important;
}

.cariama-product-reviews .comment,
.cariama-product-reviews .review,
.product-reviews-shell .comment,
.product-reviews-shell .review {
  list-style: none !important;
}

.cariama-product-reviews .comment_container,
.product-reviews-shell .comment_container,
.cariama-review-card article {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 16px !important;
  border: 1px solid rgba(111, 83, 47, 0.18) !important;
  border-radius: 8px !important;
  background: rgba(255, 250, 240, 0.72) !important;
  box-shadow: 0 12px 28px rgba(92, 64, 25, 0.07) !important;
  padding: 18px !important;
}

.cariama-product-reviews .avatar,
.product-reviews-shell .avatar,
.cariama-review-avatar img {
  width: 48px !important;
  height: 48px !important;
  border: 2px solid rgba(244, 179, 38, 0.45) !important;
  border-radius: 50% !important;
  background: #fff7df !important;
  padding: 2px !important;
}

.cariama-product-reviews .comment-text,
.product-reviews-shell .comment-text {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
}

.cariama-product-reviews .meta,
.product-reviews-shell .meta,
.cariama-review-body header {
  color: rgba(0, 91, 49, 0.82) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.cariama-product-reviews .description p,
.product-reviews-shell .description p,
.cariama-review-text p {
  margin: 0 !important;
  color: #005b31 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
}

.product-reviews-shell .star-rating,
.cariama-product-reviews .star-rating {
  width: 6.4em !important;
  height: 1.22em !important;
  color: #f4b326 !important;
  font-size: 25px !important;
  letter-spacing: 0.04em !important;
}

.product-reviews-shell .star-rating::before,
.cariama-product-reviews .star-rating::before {
  color: rgba(244, 179, 38, 0.32) !important;
}

.product-reviews-shell .star-rating span::before,
.cariama-product-reviews .star-rating span::before {
  color: #f4b326 !important;
  font-size: 25px !important;
}

.cariama-review-form-wrapper,
.product-reviews-shell #review_form_wrapper {
  border-top: 1px solid rgba(111, 83, 47, 0.2) !important;
  padding-top: 30px !important;
}

.product-reviews-shell .comment-reply-title {
  display: block !important;
  margin-bottom: 10px !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(34px, 3.5vw, 56px) !important;
  line-height: 0.96 !important;
  text-transform: uppercase !important;
}

.product-reviews-shell .comment-form-rating .stars {
  margin: 8px 0 0 !important;
}

.product-reviews-shell .comment-form-rating .stars a {
  color: #f4b326 !important;
  font-size: 32px !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.product-reviews-shell .comment-form-rating select {
  max-width: 280px !important;
}

@media (max-width: 680px) {
  .cariama-product-reviews .comment_container,
  .product-reviews-shell .comment_container,
  .cariama-review-card article {
    grid-template-columns: 1fr !important;
  }
}

/* Keep v40 product-checkout visual while preserving newer functionality */
.single-product main#inicio,
.product-template-default main#inicio {
  background: #fff !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  width: min(100%, 1220px) !important;
  min-height: auto !important;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 0.92fr) !important;
  gap: clamp(38px, 7vw, 92px) !important;
  align-items: start !important;
  padding: clamp(48px, 8vw, 86px) clamp(18px, 5vw, 64px) 42px !important;
  background: #fff !important;
}

.single-product .product-detail-page::before,
.single-product .product-detail-page::after,
.product-template-default .product-detail-page::before,
.product-template-default .product-detail-page::after,
.single-product .product-detail-page-copy::before,
.product-template-default .product-detail-page-copy::before {
  display: none !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual,
.single-product .product-main-image,
.product-template-default .product-main-image {
  background: #fff !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  display: grid !important;
  justify-items: center !important;
  gap: 20px !important;
  max-width: none !important;
  padding-top: 0 !important;
  text-align: center !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  width: 100% !important;
  max-width: 520px !important;
  border: 0 !important;
  border-bottom: 1px solid #d7d7d7 !important;
  border-radius: 0 !important;
  background: #fff !important;
  padding: 8px 0 34px !important;
  text-align: center !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  width: 100% !important;
  max-width: 520px !important;
  border: 1px solid #dedede !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  padding: 20px !important;
  text-align: center !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  border-bottom: 1px solid #e6e6e6 !important;
}

.single-product .product-buy-actions input,
.product-template-default .product-buy-actions input {
  border-color: rgba(0, 91, 49, 0.24) !important;
  background: rgba(243, 215, 167, 0.82) !important;
  color: #005b31 !important;
}

.single-product .product-grind-options label,
.product-template-default .product-grind-options label {
  border-color: rgba(0, 91, 49, 0.26) !important;
  background: rgba(255, 246, 226, 0.74) !important;
  color: #005b31 !important;
}

.single-product .product-grind-options label:has(input:checked),
.product-template-default .product-grind-options label:has(input:checked) {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #f3d7a7 !important;
}

.single-product .product-buy-buttons .product-buy-now,
.product-template-default .product-buy-buttons .product-buy-now {
  background: #f47b50 !important;
  color: #fff6e2 !important;
  box-shadow: none !important;
}

.single-product .product-buy-buttons .product-add-cart,
.product-template-default .product-buy-buttons .product-add-cart {
  background: #005b31 !important;
  color: #f3d7a7 !important;
}

/* WooCommerce archive final layout: stable product cards */
.cariama-shop-archive {
  padding-top: clamp(118px, 12vw, 150px) !important;
  background:
    linear-gradient(rgba(243, 215, 167, 0.9), rgba(243, 215, 167, 0.9)),
    url("../artes/underscore.png") !important;
  background-size: auto, 170px auto !important;
}

.cariama-shop-archive .shop-heading-compact {
  width: min(100%, 860px) !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.cariama-shop-archive .product-grid {
  display: grid !important;
  width: min(100%, 1280px) !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 330px)) !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: clamp(20px, 2.5vw, 34px) !important;
  margin: clamp(30px, 4vw, 48px) auto 0 !important;
  padding: 0 clamp(14px, 3vw, 24px) !important;
}

.cariama-shop-archive .product-card-woocommerce {
  display: grid !important;
  width: 100% !important;
  max-width: 330px !important;
  min-height: 640px !important;
  grid-template-rows: 270px 1fr !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: #f3d7a7 !important;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.1) !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  display: grid !important;
  width: 100% !important;
  min-height: 270px !important;
  aspect-ratio: auto !important;
  place-items: center !important;
  padding: 26px !important;
  background: #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  width: 100% !important;
  max-width: 230px !important;
  height: 100% !important;
  max-height: 230px !important;
  object-fit: contain !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info {
  display: flex !important;
  min-height: 0 !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 26px 26px 22px !important;
  background: #f3d7a7 !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > span {
  min-height: 14px !important;
  color: rgba(0, 91, 49, 0.72) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
}

.cariama-shop-archive .product-card h2 {
  min-height: 72px !important;
  margin: 0 !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: 30px !important;
  line-height: 1.02 !important;
  text-transform: uppercase !important;
  overflow-wrap: anywhere !important;
}

.cariama-shop-archive .product-rating-row {
  display: flex !important;
  min-height: 24px !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.cariama-shop-archive .product-rating-row small {
  flex: 0 0 auto !important;
  max-width: 92px !important;
  color: #005b31 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-align: right !important;
  text-transform: uppercase !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info p {
  min-height: 50px !important;
  margin: 0 !important;
  color: #008159 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  margin-top: auto !important;
  padding-top: 18px !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child > strong,
.cariama-shop-archive .product-card-woocommerce .price {
  min-width: 0 !important;
  color: #7f6b45 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
}

.cariama-shop-archive .product-card-woocommerce .button-small {
  display: inline-flex !important;
  width: 148px !important;
  min-width: 148px !important;
  min-height: 48px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 4px !important;
  background: #eeeaf1 !important;
  color: #555 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.cariama-shop-archive .product-card-woocommerce .button-small:hover {
  background: #005b31 !important;
  color: #f3d7a7 !important;
}

/* Product image zoom: keep the customer on the product page */
body.product-lightbox-open {
  overflow: hidden !important;
}

.product-image-lightbox {
  position: fixed !important;
  z-index: 9999 !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: clamp(16px, 4vw, 48px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.18s ease !important;
}

.product-image-lightbox.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.product-lightbox-backdrop {
  position: absolute !important;
  inset: 0 !important;
  border: 0 !important;
  background: rgba(0, 0, 0, 0.78) !important;
  cursor: zoom-out !important;
}

.product-lightbox-dialog {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  width: min(92vw, 980px) !important;
  max-height: 90vh !important;
  place-items: center !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: clamp(16px, 3vw, 34px) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38) !important;
}

.product-lightbox-dialog img {
  width: 100% !important;
  max-height: calc(90vh - 80px) !important;
  object-fit: contain !important;
}

.product-lightbox-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #005b31 !important;
  color: #f3d7a7 !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

/* Single product facts: use WooCommerce product data instead of fixed artwork text */
.single-product .product-description-facts,
.product-template-default .product-description-facts {
  display: grid !important;
  justify-items: center !important;
  gap: 16px !important;
}

.single-product .product-description-facts div,
.product-template-default .product-description-facts div {
  display: grid !important;
  justify-items: center !important;
  gap: 7px !important;
  color: #111 !important;
}

.single-product .product-description-facts div::before,
.product-template-default .product-description-facts div::before {
  display: none !important;
  content: none !important;
}

.single-product .product-description-facts div:nth-child(1) span,
.product-template-default .product-description-facts div:nth-child(1) span,
.single-product .product-description-facts div:nth-child(2) span,
.product-template-default .product-description-facts div:nth-child(2) span,
.single-product .product-description-facts div:nth-child(3),
.product-template-default .product-description-facts div:nth-child(3) {
  display: grid !important;
}

.single-product .product-description-facts span,
.product-template-default .product-description-facts span {
  color: #b99d77 !important;
  font-family: var(--main-font) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

.single-product .product-description-facts strong,
.product-template-default .product-description-facts strong {
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(18px, 2vw, 25px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

/* WooCommerce archive prices: stronger visibility on every product card */
.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child > strong,
.cariama-shop-archive .product-card-woocommerce .price,
.cariama-shop-archive .product-card-woocommerce .woocommerce-Price-amount,
.cariama-shop-archive .product-card-woocommerce .woocommerce-Price-amount bdi {
  display: inline !important;
  min-height: 0 !important;
  color: #2f2113 !important;
  font-family: var(--main-font) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.cariama-shop-archive .product-card-woocommerce .product-card-price {
  display: flex !important;
  min-height: 52px !important;
  align-items: center !important;
}

.cariama-shop-archive .product-card-woocommerce .woocommerce-Price-currencySymbol {
  color: #2f2113 !important;
  font-size: 0.92em !important;
  font-weight: 900 !important;
  margin-right: 3px !important;
  opacity: 1 !important;
}

.cariama-shop-archive .product-card-woocommerce .price del,
.cariama-shop-archive .product-card-woocommerce .price del .woocommerce-Price-amount,
.cariama-shop-archive .product-card-woocommerce .price del .woocommerce-Price-amount bdi {
  color: rgba(63, 47, 29, 0.62) !important;
  font-size: 16px !important;
  text-decoration-thickness: 2px !important;
}

.cariama-shop-archive .product-card-woocommerce .price ins,
.cariama-shop-archive .product-card-woocommerce .price ins .woocommerce-Price-amount,
.cariama-shop-archive .product-card-woocommerce .price ins .woocommerce-Price-amount bdi {
  color: #2f2113 !important;
  font-size: 25px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
  grid-template-columns: minmax(96px, 1fr) auto !important;
}

@media (max-width: 680px) {
  .cariama-shop-archive .product-grid {
    grid-template-columns: minmax(0, 340px) !important;
  }

  .cariama-shop-archive .product-card-woocommerce {
    max-width: none !important;
    min-height: 0 !important;
    grid-template-rows: minmax(230px, auto) auto !important;
  }

  .cariama-shop-archive .product-card h2 {
    min-height: 0 !important;
    font-size: 26px !important;
  }

  .cariama-shop-archive .product-rating-row {
    flex-wrap: wrap !important;
  }

  .cariama-shop-archive .product-card-woocommerce .product-info > div:last-child {
    grid-template-columns: 1fr !important;
  }

  .cariama-shop-archive .product-card-woocommerce .product-info > div:last-child > strong,
  .cariama-shop-archive .product-card-woocommerce .price,
  .cariama-shop-archive .product-card-woocommerce .woocommerce-Price-amount,
  .cariama-shop-archive .product-card-woocommerce .woocommerce-Price-amount bdi {
    min-height: 0 !important;
    font-size: 22px !important;
  }

  .cariama-shop-archive .product-card-woocommerce .button-small {
    width: 100% !important;
  }
}

/* Published-inspired home */
.published-home {
  overflow: hidden !important;
  background: #fff !important;
  color: #005b31 !important;
}

.published-home-header.site-header,
.published-home-header.site-header.is-scrolled,
.published-home-header.site-header:not(.is-open) {
  background:
    url("../artes/icon-bird --.png") left -96px center / 240px auto no-repeat,
    url("../artes/icon-bird --.png") right -104px center / 240px auto no-repeat,
    #005b31 !important;
  color: #f3d7a7 !important;
}

.published-home .published-hero {
  padding: 0 !important;
  background: #005b31 !important;
}

.published-hero-slider {
  position: relative !important;
  width: 100% !important;
  min-height: clamp(520px, calc(100vh - 110px), 860px) !important;
  overflow: hidden !important;
  background: transparent !important;
}

.published-hero-slider > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 0 !important;
  transition: opacity 0.55s ease !important;
}

.published-hero-slider > img.is-active {
  opacity: 1 !important;
}

.published-hero-slider .hero-media-arrow {
  z-index: 3 !important;
}

.published-hero-slider .hero-media-dots {
  z-index: 3 !important;
  bottom: 28px !important;
}

.published-taste {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr) !important;
  gap: clamp(28px, 6vw, 92px) !important;
  align-items: center !important;
  padding: clamp(68px, 8vw, 116px) clamp(18px, 6vw, 96px) !important;
  background:
    radial-gradient(circle at 78% 42%, rgba(244, 123, 80, 0.1), transparent 30%),
    linear-gradient(90deg, #fff 0%, #fff 62%, #f7f9f4 62% 100%) !important;
  text-align: center !important;
}

.published-taste-copy {
  display: grid !important;
  justify-items: center !important;
  gap: 30px !important;
}

.published-seal {
  width: clamp(96px, 12vw, 150px) !important;
  height: auto !important;
}

.published-taste-copy p {
  max-width: 780px !important;
  margin: 0 !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(42px, 6vw, 86px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.92 !important;
  text-transform: uppercase !important;
}

.published-package {
  display: grid !important;
  justify-items: center !important;
  padding: clamp(18px, 3vw, 34px) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 26px 70px rgba(0, 91, 49, 0.12) !important;
  text-decoration: none !important;
}

.published-package img {
  width: min(100%, 390px) !important;
  max-height: 520px !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  filter: drop-shadow(0 30px 42px rgba(0, 91, 49, 0.16)) !important;
}

.published-buy-image {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  display: inline-grid !important;
  margin-top: -14px !important;
}

.published-buy-image img {
  width: clamp(180px, 20vw, 290px) !important;
  transition: transform 0.18s ease !important;
}

.published-buy-image {
  border-radius: 8px !important;
  filter: saturate(0.96) hue-rotate(124deg) !important;
}

.published-buy-image:hover img {
  transform: translateY(-3px) scale(1.02) !important;
}

.published-origins {
  display: grid !important;
  gap: clamp(34px, 5vw, 70px) !important;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 6vw, 96px) !important;
  background: #fff6e2 !important;
}

.published-origin-logo {
  display: grid !important;
  justify-items: center !important;
}

.published-origin-logo img {
  width: min(100%, 620px) !important;
}

.published-icons {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 28px) !important;
  width: min(100%, 1180px) !important;
  margin-inline: auto !important;
}

.published-icons figure {
  display: grid !important;
  justify-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  color: #005b31 !important;
  text-align: center !important;
}

.published-icons img {
  width: clamp(66px, 7vw, 112px) !important;
  height: clamp(66px, 7vw, 112px) !important;
  object-fit: contain !important;
}

.published-icons figcaption {
  max-width: 140px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

.published-newsletter {
  position: relative !important;
  display: grid !important;
  justify-items: center !important;
  gap: 22px !important;
  padding: clamp(62px, 7vw, 104px) clamp(18px, 5vw, 78px) !important;
  overflow: hidden !important;
  background: #005b31 !important;
  color: #f3d7a7 !important;
  text-align: center !important;
}

.published-newsletter > img {
  width: clamp(72px, 9vw, 130px) !important;
  opacity: 0.95 !important;
}

.published-newsletter h2 {
  max-width: 900px !important;
  margin: 0 !important;
  color: #f3d7a7 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(36px, 5vw, 72px) !important;
  line-height: 0.96 !important;
  text-transform: uppercase !important;
}

.published-newsletter-form {
  display: grid !important;
  grid-template-columns: minmax(240px, 420px) auto !important;
  gap: 10px !important;
  align-items: center !important;
  width: min(100%, 620px) !important;
}

.published-newsletter-form label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.published-newsletter-form input,
.published-newsletter-form button,
.published-store-link {
  min-height: 52px !important;
  border-radius: 4px !important;
  font-weight: 900 !important;
}

.published-newsletter-form input {
  width: 100% !important;
  border: 1px solid rgba(243, 215, 167, 0.35) !important;
  background: #fff6e2 !important;
  color: #005b31 !important;
  padding: 0 16px !important;
}

.published-newsletter-form button,
.published-store-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  background: #f47b50 !important;
  color: #fff6e2 !important;
  padding: 0 22px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.published-newsletter-form .newsletter-status {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  min-height: 20px !important;
  color: #f3d7a7 !important;
}

.published-store-link {
  background: #f3d7a7 !important;
  color: #005b31 !important;
  text-decoration: none !important;
}

@media (max-width: 860px) {
  .published-taste {
    grid-template-columns: 1fr !important;
  }

  .published-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .published-newsletter-form {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .published-hero-slider {
    min-height: calc(100svh - 96px) !important;
  }

  .published-taste-copy p {
    font-size: clamp(34px, 13vw, 56px) !important;
  }

  .published-icons {
    grid-template-columns: 1fr !important;
  }
}

/* Home product hero polish: responsive, lighter, product-forward */
.published-taste {
  position: relative !important;
  isolation: isolate !important;
  grid-template-columns: minmax(320px, 0.86fr) minmax(280px, 0.7fr) !important;
  min-height: min(720px, calc(100vh - 96px)) !important;
  gap: clamp(24px, 4vw, 68px) !important;
  padding: clamp(44px, 6vw, 82px) clamp(18px, 7vw, 110px) !important;
  overflow: hidden !important;
  background: linear-gradient(90deg, #fff 0%, #fff 66%, #f7f9f4 66% 100%) !important;
  text-align: left !important;
}

.published-taste::before {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  right: clamp(22px, 6vw, 120px) !important;
  top: 50% !important;
  width: clamp(280px, 34vw, 540px) !important;
  height: clamp(360px, 42vw, 680px) !important;
  background: url("../artes/icon-bird --.png") center / contain no-repeat !important;
  opacity: 0.13 !important;
  filter: saturate(1.35) hue-rotate(338deg) brightness(1.05) !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

.published-taste::after {
  display: none !important;
  content: none !important;
}

.published-taste-copy {
  align-self: center !important;
  gap: clamp(18px, 3vw, 30px) !important;
  justify-items: start !important;
  text-align: left !important;
}

.published-seal {
  width: clamp(76px, 7vw, 118px) !important;
}

.published-taste-copy p {
  max-width: 680px !important;
  font-size: clamp(38px, 4.6vw, 76px) !important;
  line-height: 0.95 !important;
  text-align: left !important;
}

.published-package {
  position: relative !important;
  align-self: center !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.published-package::before {
  display: none !important;
  content: none !important;
}

.published-package img {
  width: min(100%, 560px) !important;
  max-height: min(62vh, 620px) !important;
  mix-blend-mode: multiply !important;
  filter: drop-shadow(0 28px 36px rgba(0, 91, 49, 0.16)) !important;
}

.published-package,
.published-package:hover,
.published-package:focus {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline-offset: 8px !important;
}

/* Remove every old product halo/card layer from previous iterations */
.published-taste .published-package::after,
.published-taste .published-package > *::before,
.published-taste .published-package > *::after {
  display: none !important;
  content: none !important;
}

.published-taste {
  background: #fff !important;
}

.published-buy-image {
  grid-column: 1 / 2 !important;
  justify-self: start !important;
  align-self: start !important;
  margin-top: -6px !important;
}

.published-buy-image img {
  width: clamp(170px, 17vw, 260px) !important;
}

@media (max-width: 920px) {
  .published-taste {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    text-align: center !important;
  }

  .published-taste-copy {
    justify-items: center !important;
    text-align: center !important;
  }

  .published-taste-copy p {
    text-align: center !important;
  }

  .published-package {
    order: 2 !important;
  }

  .published-buy-image {
    order: 3 !important;
    grid-column: auto !important;
    justify-self: center !important;
    margin-top: 0 !important;
  }

  .published-taste::before {
    right: 50% !important;
    top: 54% !important;
    width: min(72vw, 360px) !important;
    height: min(92vw, 520px) !important;
    opacity: 0.08 !important;
    transform: translate(50%, -50%) !important;
  }
}

/* Home origin section: avoid repeating the package image shown in the hero */
.published-taste .published-package {
  display: none !important;
}

.published-taste {
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1fr) !important;
  align-items: center !important;
}

.published-origin-panel {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  min-height: clamp(520px, 46vw, 700px) !important;
  align-content: center !important;
  justify-items: center !important;
}

.published-origin-panel::before {
  position: absolute !important;
  z-index: -1 !important;
  inset: 50% auto auto 50% !important;
  width: clamp(380px, 42vw, 660px) !important;
  height: clamp(380px, 42vw, 660px) !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle, rgba(255, 248, 236, 0.9) 0 42%, rgba(0, 91, 49, 0.12) 43% 62%, transparent 63%),
    url("../artes/underscore.png") center / 150px auto repeat !important;
  content: "" !important;
  opacity: 0.92 !important;
  transform: translate(-50%, -50%) !important;
}

.published-origin-main {
  width: min(88%, 620px) !important;
  aspect-ratio: 4 / 3 !important;
  border: 10px solid rgba(255, 248, 236, 0.9) !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  box-shadow: 0 34px 80px rgba(0, 91, 49, 0.2) !important;
  transform: rotate(-3deg) translateX(3%) !important;
}

.published-origin-side {
  position: absolute !important;
  left: clamp(0px, 3vw, 40px) !important;
  bottom: clamp(26px, 5vw, 76px) !important;
  width: clamp(150px, 18vw, 260px) !important;
  aspect-ratio: 4 / 5 !important;
  border: 8px solid rgba(255, 248, 236, 0.92) !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  box-shadow: 0 24px 58px rgba(0, 91, 49, 0.18) !important;
  transform: rotate(5deg) !important;
}

.published-origin-note {
  position: absolute !important;
  right: clamp(10px, 4vw, 78px) !important;
  bottom: clamp(16px, 4vw, 54px) !important;
  display: grid !important;
  gap: 4px !important;
  max-width: 250px !important;
  border-left: 6px solid #f47b50 !important;
  padding: 12px 0 12px 16px !important;
  background: rgba(255, 248, 236, 0.72) !important;
  color: #005b31 !important;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.1) !important;
}

.published-origin-note span,
.published-origin-note strong {
  font-family: var(--footer-font) !important;
  text-transform: uppercase !important;
}

.published-origin-note span {
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
}

.published-origin-note strong {
  font-size: clamp(18px, 1.6vw, 25px) !important;
  line-height: 1.02 !important;
}

.published-taste .published-buy-image {
  position: absolute !important;
  left: clamp(28px, 7vw, 120px) !important;
  bottom: clamp(46px, 7vw, 92px) !important;
  z-index: 3 !important;
  margin-top: 0 !important;
  background: #005b31 !important;
}

@media (max-width: 920px) {
  .published-origin-panel {
    min-height: 520px !important;
  }

  .published-origin-main {
    width: min(94vw, 560px) !important;
    transform: rotate(-2deg) !important;
  }

  .published-origin-side {
    left: 10px !important;
    width: min(36vw, 190px) !important;
  }

  .published-origin-note {
    right: 8px !important;
    bottom: 22px !important;
  }

  .published-taste .published-buy-image {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    grid-column: 1 !important;
    justify-self: center !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 520px) {
  .published-taste {
    overflow: hidden !important;
    padding-inline: 14px !important;
  }

  .published-taste-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .published-taste-copy p {
    max-width: calc(100vw - 28px) !important;
    font-size: clamp(42px, 12.8vw, 54px) !important;
    line-height: 0.92 !important;
    overflow-wrap: anywhere !important;
  }

  .published-taste-copy small {
    max-width: calc(100vw - 34px) !important;
    font-size: 18px !important;
    overflow-wrap: anywhere !important;
  }

  .published-launch-points {
    width: 100% !important;
    justify-content: center !important;
  }

  .published-launch-points span {
    max-width: calc(50vw - 22px) !important;
    padding: 8px 11px !important;
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .published-origin-panel {
    width: 100% !important;
    min-height: 520px !important;
  }

  .published-origin-main {
    width: min(96vw, 430px) !important;
  }

  .published-origin-note {
    right: 0 !important;
    max-width: 180px !important;
    padding-left: 12px !important;
  }

  .published-origin-note strong {
    font-size: 19px !important;
  }
}

/* Polished initial hero: seamless image transitions and softer wave divider */
.published-home .published-hero-slider,
body.home .published-home .published-hero-slider,
body.front-page .published-home .published-hero-slider,
body.page-template-front-page .published-home .published-hero-slider {
  isolation: isolate !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.97) 0 42%, rgba(255, 248, 236, 0.76) 52%, rgba(232, 241, 227, 0.92) 100%),
    url("../artes/underscore.png") center / 205px auto repeat !important;
}

.published-home .published-hero-slider::before,
body.home .published-home .published-hero-slider::before,
body.front-page .published-home .published-hero-slider::before,
body.page-template-front-page .published-home .published-hero-slider::before {
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.98) 0 39%, rgba(255, 248, 236, 0.58) 50%, rgba(255, 248, 236, 0) 61%),
    radial-gradient(circle at 73% 35%, rgba(0, 91, 49, 0.12), transparent 32%),
    url("../artes/underscore.png") center / 205px auto repeat !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.published-home .published-hero-slider::after,
body.home .published-home .published-hero-slider::after,
body.front-page .published-home .published-hero-slider::after,
body.page-template-front-page .published-home .published-hero-slider::after {
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99) 0 37%, rgba(255, 248, 236, 0.84) 45%, rgba(255, 248, 236, 0.18) 56%, rgba(255, 248, 236, 0) 68%),
    linear-gradient(120deg, rgba(255, 248, 236, 0) 0 49%, rgba(0, 91, 49, 0.07) 49.2% 53.5%, rgba(255, 248, 236, 0) 53.7% 100%) !important;
  content: "" !important;
  pointer-events: none !important;
}

.published-home .published-hero-slider > img,
body.home .published-home .published-hero-slider > img,
body.front-page .published-home .published-hero-slider > img,
body.page-template-front-page .published-home .published-hero-slider > img {
  will-change: opacity, transform, filter !important;
  opacity: 0 !important;
  visibility: visible !important;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 980ms ease !important;
  filter: blur(8px) saturate(0.98) contrast(0.98) !important;
  transform: translate3d(12px, 0, 0) scale(1.018) !important;
  backface-visibility: hidden !important;
}

.published-home .published-hero-slider > img.is-active,
body.home .published-home .published-hero-slider > img.is-active,
body.front-page .published-home .published-hero-slider > img.is-active,
body.page-template-front-page .published-home .published-hero-slider > img.is-active {
  opacity: 1 !important;
  filter: blur(0) saturate(1.04) contrast(1.02) !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.published-home .published-hero-slider > img.published-cover-image,
body.home .published-home .published-hero-slider > img.published-cover-image,
body.front-page .published-home .published-hero-slider > img.published-cover-image,
body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
  transition:
    opacity 1050ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1350ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1050ms ease !important;
  transform: translateY(-50%) translate3d(16px, -2px, 0) rotate(-4deg) scale(1.015) !important;
}

.published-home .published-hero-slider > img.published-cover-image.is-active,
body.home .published-home .published-hero-slider > img.published-cover-image.is-active,
body.front-page .published-home .published-hero-slider > img.published-cover-image.is-active,
body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image.is-active {
  transform: translateY(-50%) translate3d(0, 0, 0) rotate(-4deg) scale(1) !important;
}

.published-home .published-hero-slider.is-transitioning .published-cover-callout,
body.home .published-home .published-hero-slider.is-transitioning .published-cover-callout,
body.front-page .published-home .published-hero-slider.is-transitioning .published-cover-callout,
body.page-template-front-page .published-home .published-hero-slider.is-transitioning .published-cover-callout {
  transition:
    opacity 820ms ease,
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.published-cover-callout,
body.home .published-cover-callout,
body.front-page .published-cover-callout,
body.page-template-front-page .published-cover-callout {
  transition:
    opacity 920ms ease,
    transform 1120ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.published-cover-callout::after,
body.home .published-cover-callout::after,
body.front-page .published-cover-callout::after,
body.page-template-front-page .published-cover-callout::after {
  position: absolute !important;
  z-index: 0 !important;
  top: 50% !important;
  left: min(320px, 30vw) !important;
  width: clamp(180px, 22vw, 360px) !important;
  height: clamp(160px, 20vw, 330px) !important;
  background: linear-gradient(90deg, rgba(255, 248, 236, 0.74), rgba(255, 248, 236, 0)) !important;
  content: "" !important;
  pointer-events: none !important;
  transform: translateY(-50%) skewX(-11deg) !important;
}

.published-home .published-hero-slider .hero-media-dots button,
body.home .published-home .published-hero-slider .hero-media-dots button,
body.front-page .published-home .published-hero-slider .hero-media-dots button,
body.page-template-front-page .published-home .published-hero-slider .hero-media-dots button {
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    background-color 360ms ease,
    transform 360ms ease !important;
}

.published-home .published-hero-slider .hero-media-dots button.is-active,
body.home .published-home .published-hero-slider .hero-media-dots button.is-active,
body.front-page .published-home .published-hero-slider .hero-media-dots button.is-active,
body.page-template-front-page .published-home .published-hero-slider .hero-media-dots button.is-active {
  transform: translateY(-1px) !important;
}

@media (max-width: 980px) {
  .published-home .published-hero-slider::after,
  body.home .published-home .published-hero-slider::after,
  body.front-page .published-home .published-hero-slider::after,
  body.page-template-front-page .published-home .published-hero-slider::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0 44%, rgba(255, 248, 236, 0.24) 63%, rgba(255, 248, 236, 0) 100%),
      linear-gradient(170deg, rgba(255, 248, 236, 0) 0 60%, rgba(0, 91, 49, 0.07) 60.4% 66%, rgba(255, 248, 236, 0) 66.4% 100%) !important;
  }

  .published-home .published-hero-slider > img.published-cover-image,
  body.home .published-home .published-hero-slider > img.published-cover-image,
  body.front-page .published-home .published-hero-slider > img.published-cover-image,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
    transform: translateX(50%) translate3d(10px, 6px, 0) rotate(-4deg) scale(1.012) !important;
  }

  .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.home .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.front-page .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image.is-active {
    transform: translateX(50%) translate3d(0, 0, 0) rotate(-4deg) scale(1) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .published-home .published-hero-slider > img,
  body.home .published-home .published-hero-slider > img,
  body.front-page .published-home .published-hero-slider > img,
  body.page-template-front-page .published-home .published-hero-slider > img,
  .published-cover-callout,
  body.home .published-cover-callout,
  body.front-page .published-cover-callout,
  body.page-template-front-page .published-cover-callout {
    transition: opacity 180ms ease !important;
  }
}

/* End override: Canastra icon without backing circle */
.canastra-symbol img,
body .canastra-symbol img {
  width: clamp(180px, 18vw, 280px) !important;
  max-width: 72vw !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 20px rgba(62, 36, 20, 0.18)) !important;
}

.canastra-symbol,
body .canastra-symbol {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 680px) {
  .canastra-symbol img,
  body .canastra-symbol img {
    width: min(64vw, 240px) !important;
  }
}

@media (max-width: 560px) {
  .published-taste {
    padding: 42px 16px 54px !important;
  }

  .published-taste-copy p {
    font-size: clamp(34px, 11vw, 52px) !important;
  }

  .published-package img {
    max-height: 390px !important;
  }
}

/* Storefront aligned with the new main/home visual */
.cariama-shop-archive {
  position: relative !important;
  isolation: isolate !important;
  background: linear-gradient(90deg, #fff 0%, #fff 72%, #f7f9f4 72% 100%) !important;
}

.cariama-shop-archive::before {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  right: clamp(24px, 6vw, 110px) !important;
  top: clamp(110px, 16vw, 230px) !important;
  width: clamp(260px, 32vw, 500px) !important;
  height: clamp(360px, 44vw, 660px) !important;
  background: url("../artes/icon-bird --.png") center / contain no-repeat !important;
  opacity: 0.14 !important;
  filter: saturate(1.35) hue-rotate(338deg) brightness(1.05) !important;
  pointer-events: none !important;
}

.cariama-shop-archive::after {
  display: none !important;
  content: none !important;
}

.cariama-shop-archive .shop-heading-compact {
  color: #005b31 !important;
}

.cariama-shop-archive .shop-heading-compact .section-kicker,
.cariama-shop-archive .section-kicker {
  color: #f47b50 !important;
}

.cariama-shop-archive .shop-heading-compact h1,
.cariama-shop-archive .shop-heading-compact h2 {
  color: #005b31 !important;
}

.cariama-shop-archive .shop-heading-compact p,
.cariama-shop-archive .section-lead {
  color: rgba(0, 91, 49, 0.74) !important;
}

.cariama-shop-archive .product-card-woocommerce {
  position: relative !important;
  z-index: 1 !important;
  border-color: rgba(0, 91, 49, 0.13) !important;
  background: #fff !important;
  box-shadow: 0 24px 70px rgba(0, 91, 49, 0.1) !important;
}

.cariama-shop-archive .product-card-woocommerce:hover {
  border-color: rgba(244, 123, 80, 0.35) !important;
  box-shadow: 0 30px 84px rgba(0, 91, 49, 0.15) !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image {
  background: #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image img {
  mix-blend-mode: multiply !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info {
  background: #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > span {
  color: #f47b50 !important;
}

.cariama-shop-archive .product-card h2,
.cariama-shop-archive .product-card h2 a {
  color: #005b31 !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info p {
  color: rgba(0, 129, 89, 0.92) !important;
}

.cariama-shop-archive .product-card-woocommerce .button-small {
  background: #005b31 !important;
  color: #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .button-small:hover {
  background: #f47b50 !important;
  color: #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > div:last-child > strong,
.cariama-shop-archive .product-card-woocommerce .price,
.cariama-shop-archive .product-card-woocommerce .woocommerce-Price-amount,
.cariama-shop-archive .product-card-woocommerce .woocommerce-Price-amount bdi,
.cariama-shop-archive .product-card-woocommerce .woocommerce-Price-currencySymbol {
  color: #2f2113 !important;
}

@media (max-width: 760px) {
  .cariama-shop-archive::before {
    right: -28px !important;
    top: 150px !important;
    width: 260px !important;
    height: 390px !important;
    opacity: 0.08 !important;
  }
}

/* Home slider full bleed: no boxed edges */
.published-home,
body.home .published-home,
body.front-page .published-home,
body.page-template-front-page .published-home {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
}

.published-home .published-hero,
body.home .published-home .published-hero,
body.front-page .published-home .published-hero,
body.page-template-front-page .published-home .published-hero {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
}

.published-home .published-hero-slider,
body.home .published-home .published-hero-slider,
body.front-page .published-home .published-hero-slider,
body.page-template-front-page .published-home .published-hero-slider {
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  min-width: 100vw !important;
  margin: 0 !important;
  height: calc(100svh - 120px) !important;
  min-height: calc(100svh - 120px) !important;
  background: #fff !important;
}

.published-home .published-hero-slider::before,
body.home .published-home .published-hero-slider::before,
body.front-page .published-home .published-hero-slider::before,
body.page-template-front-page .published-home .published-hero-slider::before {
  content: "" !important;
  position: absolute !important;
  inset: -28px !important;
  z-index: 0 !important;
  background-image: var(--hero-active-image) !important;
  background-position: center center !important;
  background-size: cover !important;
  filter: blur(16px) saturate(1.08) brightness(0.74) !important;
  transform: scale(1.04) !important;
  opacity: 1 !important;
}

.published-home .published-hero-slider::after,
body.home .published-home .published-hero-slider::after,
body.front-page .published-home .published-hero-slider::after,
body.page-template-front-page .published-home .published-hero-slider::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.16)) !important;
  pointer-events: none !important;
}

.published-home .published-hero-slider > img,
body.home .published-home .published-hero-slider > img,
body.front-page .published-home .published-hero-slider > img,
body.page-template-front-page .published-home .published-hero-slider > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 100vw !important;
  max-width: none !important;
  min-width: 100vw !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.22)) !important;
}

.published-home .published-hero-slider .hero-media-arrow,
.published-home .published-hero-slider .hero-media-dots {
  z-index: 4 !important;
}

.published-home .published-hero-slider.is-cover-active {
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 248, 236, 0.96) 0 18%, rgba(0, 91, 49, 0.24) 19% 38%, transparent 39%),
    linear-gradient(110deg, #fff8ec 0 55%, #dfe9dd 55% 100%) !important;
}

.published-home .published-hero-slider.is-cover-active::before {
  background:
    repeating-linear-gradient(0deg, rgba(244, 123, 80, 0.12) 0 2px, transparent 2px 68px),
    linear-gradient(110deg, rgba(255, 248, 236, 0.98), rgba(0, 91, 49, 0.55)) !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.published-home .published-hero-slider.is-cover-active::after {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.94) 0 35%, rgba(255, 248, 236, 0.22) 57%, rgba(0, 91, 49, 0.14) 100%),
    radial-gradient(circle at 82% 62%, rgba(244, 123, 80, 0.22), transparent 34%) !important;
}

.published-home .published-hero-slider > img.published-cover-image {
  z-index: 2 !important;
  width: min(66vw, 1040px) !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: min(76vh, 780px) !important;
  inset: 50% clamp(48px, 7vw, 140px) auto auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: translateY(-48%) rotate(-2deg) !important;
  filter: drop-shadow(0 32px 48px rgba(0, 52, 28, 0.2)) !important;
  animation: cariamaCoverFloat 5.8s ease-in-out infinite !important;
}

.published-cover-callout {
  position: absolute !important;
  z-index: 3 !important;
  left: clamp(22px, 8vw, 154px) !important;
  top: 50% !important;
  display: grid !important;
  max-width: min(42vw, 680px) !important;
  gap: clamp(16px, 2vw, 26px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-44%) translateX(-18px) !important;
  transition: opacity 0.38s ease, transform 0.45s ease !important;
}

.published-cover-callout.is-active {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(-50%) translateX(0) !important;
}

.published-cover-kicker {
  width: fit-content !important;
  border-left: 6px solid #f47b50 !important;
  padding: 5px 0 5px 14px !important;
  color: #005b31 !important;
  font-family: var(--footer-font) !important;
  font-size: clamp(13px, 1vw, 17px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
}

.published-cover-callout strong {
  color: #005b31 !important;
  font-family: var(--display-font) !important;
  font-size: clamp(54px, 7.4vw, 138px) !important;
  font-weight: 900 !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.published-cover-callout em {
  max-width: 560px !important;
  color: #56381f !important;
  font-family: var(--body-font) !important;
  font-size: clamp(18px, 1.7vw, 29px) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.published-cover-callout a {
  display: inline-flex !important;
  width: fit-content !important;
  min-height: 58px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  padding: 0 34px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  font-family: var(--footer-font) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 20px 44px rgba(0, 91, 49, 0.22) !important;
}

@keyframes cariamaCoverFloat {
  0%, 100% {
    transform: translateY(-48%) rotate(-2deg);
  }
  50% {
    transform: translateY(-51%) rotate(-1deg);
  }
}

@media (max-width: 900px) {
  .published-home .published-hero-slider.is-cover-active {
    min-height: 720px !important;
    height: 720px !important;
  }

  .published-home .published-hero-slider > img.published-cover-image {
    width: min(92vw, 720px) !important;
    inset: auto 50% 62px auto !important;
    transform: translateX(50%) rotate(-2deg) !important;
    animation: none !important;
  }

  .published-cover-callout {
    left: 22px !important;
    right: 22px !important;
    top: 68px !important;
    max-width: none !important;
    transform: translateY(0) translateX(-14px) !important;
  }

  .published-cover-callout.is-active {
    transform: translateY(0) translateX(0) !important;
  }
}

@media (max-width: 782px) {
  .published-home .published-hero-slider,
  body.home .published-home .published-hero-slider,
  body.front-page .published-home .published-hero-slider,
  body.page-template-front-page .published-home .published-hero-slider {
    height: calc(100svh - 92px) !important;
    min-height: calc(100svh - 92px) !important;
  }
}

/* Keep the shop Cariama watermark clear of product cards */
.cariama-shop-archive::before {
  right: clamp(18px, 4vw, 92px) !important;
  top: clamp(240px, 24vw, 360px) !important;
  width: clamp(220px, 24vw, 390px) !important;
  height: clamp(330px, 36vw, 560px) !important;
  opacity: 0.1 !important;
}

.cariama-shop-archive .product-grid,
.cariama-shop-archive .shop-heading-compact {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 900px) {
  .cariama-shop-archive::before {
    right: 16px !important;
    top: 300px !important;
    width: 210px !important;
    height: 330px !important;
    opacity: 0.08 !important;
  }
}

@media (max-width: 620px) {
  .cariama-shop-archive::before {
    right: -28px !important;
    top: 360px !important;
    width: 170px !important;
    height: 270px !important;
    opacity: 0.06 !important;
  }
}

/* Home carousel: full-width artwork with no cropped text */
.published-home .published-hero-slider,
body.home .published-home .published-hero-slider,
body.front-page .published-home .published-hero-slider,
body.page-template-front-page .published-home .published-hero-slider {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  background: #0f0804 !important;
}

.published-home .published-hero-slider > img:not(.published-cover-image),
body.home .published-home .published-hero-slider > img:not(.published-cover-image),
body.front-page .published-home .published-hero-slider > img:not(.published-cover-image),
body.page-template-front-page .published-home .published-hero-slider > img:not(.published-cover-image) {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: none !important;
}

.published-home .published-hero-slider:not(.is-cover-active)::before {
  inset: 0 !important;
  background-image: var(--hero-active-image) !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: blur(18px) brightness(0.52) saturate(1.08) !important;
  transform: scale(1.04) !important;
}

.published-home .published-hero-slider:not(.is-cover-active)::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.36)) !important;
}

.published-home .published-hero-slider .hero-media-arrow {
  top: 50% !important;
  width: clamp(44px, 4.2vw, 62px) !important;
  height: clamp(44px, 4.2vw, 62px) !important;
  border: 1px solid rgba(243, 215, 167, 0.95) !important;
  background: rgba(0, 91, 49, 0.92) !important;
  color: #f3d7a7 !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
}

.published-home .published-hero-slider .hero-media-arrow:hover {
  background: #f47b50 !important;
  color: #fff8ec !important;
  transform: translateY(-50%) scale(1.04) !important;
}

.published-home .published-hero-slider .hero-media-arrow-prev {
  left: clamp(14px, 2.5vw, 42px) !important;
}

.published-home .published-hero-slider .hero-media-arrow-next {
  right: clamp(14px, 2.5vw, 42px) !important;
}

.published-home .published-hero-slider .hero-media-dots {
  right: clamp(18px, 3vw, 48px) !important;
  bottom: clamp(14px, 2vw, 28px) !important;
}

@media (max-width: 782px) {
  .published-home .published-hero-slider,
  body.home .published-home .published-hero-slider,
  body.front-page .published-home .published-hero-slider,
  body.page-template-front-page .published-home .published-hero-slider {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
  }
}

/* Premium new package showcase */
.published-taste {
  overflow: hidden !important;
}

.published-package {
  min-height: clamp(430px, 45vw, 640px) !important;
  align-content: center !important;
  justify-items: center !important;
  perspective: 1200px !important;
}

.published-package::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  inset: 50% auto auto 50% !important;
  width: clamp(360px, 38vw, 620px) !important;
  height: clamp(360px, 38vw, 620px) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle, rgba(255, 248, 236, 0.96) 0 38%, rgba(0, 91, 49, 0.12) 39% 62%, transparent 63%),
    radial-gradient(circle, rgba(244, 123, 80, 0.16), transparent 68%) !important;
  box-shadow: 0 34px 86px rgba(0, 91, 49, 0.18) !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
}

.published-package span {
  position: absolute !important;
  z-index: 3 !important;
  top: clamp(28px, 4vw, 60px) !important;
  right: clamp(10px, 2vw, 34px) !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 999px !important;
  padding: 0 18px !important;
  background: rgba(255, 248, 236, 0.88) !important;
  color: #005b31 !important;
  font-family: var(--footer-font) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  box-shadow: 0 14px 36px rgba(0, 91, 49, 0.1) !important;
}

.published-package img {
  width: min(100%, 690px) !important;
  max-height: min(70vh, 720px) !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
  transform: rotate(-4deg) translateX(4%) !important;
  filter: drop-shadow(0 34px 42px rgba(0, 68, 37, 0.2)) !important;
  transition: transform 0.35s ease, filter 0.35s ease !important;
}

.published-package:hover img {
  transform: rotate(-3deg) translateX(4%) translateY(-8px) scale(1.025) !important;
  filter: drop-shadow(0 42px 52px rgba(0, 68, 37, 0.24)) !important;
}

@media (max-width: 920px) {
  .published-package {
    min-height: 390px !important;
  }

  .published-package span {
    top: 16px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  .published-package img {
    width: min(96vw, 560px) !important;
    transform: rotate(-3deg) !important;
  }
}

/* Package must stay transparent: no artificial panel behind it */
.published-package::before,
.published-package::after {
  display: none !important;
  content: none !important;
  background: none !important;
  box-shadow: none !important;
}

.published-package span {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #005b31 !important;
}

.published-package img {
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 26px 32px rgba(0, 68, 37, 0.18)) !important;
}

/* Launch-grade product section */
.published-taste {
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 0.9fr) !important;
  min-height: clamp(690px, 82vh, 860px) !important;
  gap: clamp(28px, 6vw, 104px) !important;
  align-items: center !important;
  padding: clamp(68px, 8vw, 118px) clamp(28px, 7vw, 120px) !important;
  background:
    linear-gradient(90deg, #fff 0 58%, #fbfdf9 58% 100%) !important;
}

.published-taste::before {
  right: clamp(-90px, -5vw, -42px) !important;
  top: 52% !important;
  width: clamp(260px, 25vw, 420px) !important;
  height: clamp(340px, 34vw, 560px) !important;
  opacity: 0.07 !important;
  transform: translateY(-50%) rotate(2deg) !important;
}

.published-taste-copy {
  max-width: 760px !important;
  gap: clamp(14px, 2vw, 22px) !important;
}

.published-seal {
  width: clamp(86px, 6.6vw, 126px) !important;
  margin-bottom: clamp(14px, 2vw, 26px) !important;
}

.published-launch-kicker {
  display: inline-flex !important;
  width: fit-content !important;
  border-left: 6px solid #f47b50 !important;
  padding: 5px 0 5px 14px !important;
  color: #005b31 !important;
  font-family: var(--footer-font) !important;
  font-size: clamp(12px, 0.95vw, 16px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.published-taste-copy p {
  max-width: 720px !important;
  color: #005b31 !important;
  font-size: clamp(54px, 6.4vw, 112px) !important;
  line-height: 0.86 !important;
  text-transform: uppercase !important;
}

.published-taste-copy small {
  display: block !important;
  max-width: 590px !important;
  color: #5d3c20 !important;
  font-family: var(--body-font) !important;
  font-size: clamp(18px, 1.5vw, 25px) !important;
  font-weight: 700 !important;
  line-height: 1.32 !important;
}

.published-launch-points {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 6px !important;
}

.published-launch-points span {
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 999px !important;
  padding: 9px 14px !important;
  background: #fff8ec !important;
  color: #005b31 !important;
  font-family: var(--footer-font) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.published-package {
  min-height: clamp(500px, 50vw, 760px) !important;
  justify-self: stretch !important;
}

.published-package span {
  top: clamp(0px, 2vw, 22px) !important;
  right: clamp(8px, 4vw, 86px) !important;
  letter-spacing: 0.16em !important;
}

.published-package img {
  width: min(104%, 780px) !important;
  max-height: min(78vh, 800px) !important;
  transform: rotate(-6deg) translateX(2%) translateY(-2%) !important;
  filter: drop-shadow(0 36px 46px rgba(0, 68, 37, 0.2)) !important;
}

.published-package:hover img {
  transform: rotate(-5deg) translateX(2%) translateY(-12px) scale(1.025) !important;
}

.published-buy-image {
  display: inline-grid !important;
  min-width: 245px !important;
  min-height: 70px !important;
  align-items: center !important;
  justify-items: center !important;
  border: 1px solid rgba(0, 91, 49, 0.28) !important;
  border-radius: 999px !important;
  padding: 10px 28px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  box-shadow: 0 22px 48px rgba(0, 91, 49, 0.22) !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}

.published-buy-image strong,
.published-buy-image span {
  color: inherit !important;
  font-family: var(--footer-font) !important;
  font-style: normal !important;
  text-transform: uppercase !important;
}

.published-buy-image strong {
  font-size: 18px !important;
  letter-spacing: 0.06em !important;
}

.published-buy-image span {
  font-size: 10px !important;
  letter-spacing: 0.11em !important;
  opacity: 0.82 !important;
}

.published-buy-image:hover {
  background: #f47b50 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 26px 54px rgba(244, 123, 80, 0.22) !important;
}

@media (max-width: 920px) {
  .published-taste {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 58px 20px 72px !important;
  }

  .published-taste-copy {
    justify-items: center !important;
  }

  .published-taste-copy p,
  .published-taste-copy small {
    text-align: center !important;
  }

  .published-launch-points {
    justify-content: center !important;
  }

  .published-package {
    min-height: 430px !important;
  }

  .published-package img {
    width: min(98vw, 620px) !important;
    transform: rotate(-4deg) !important;
  }
}

/* Clean launch slide: product and copy never overlap */
.published-home .published-hero-slider.is-cover-active,
body.home .published-home .published-hero-slider.is-cover-active,
body.front-page .published-home .published-hero-slider.is-cover-active,
body.page-template-front-page .published-home .published-hero-slider.is-cover-active {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.92) 0 48%, rgba(238, 245, 235, 0.9) 48% 100%),
    url("../artes/underscore.png") center / 210px auto repeat !important;
}

.published-home .published-hero-slider.is-cover-active::before,
body.home .published-home .published-hero-slider.is-cover-active::before,
body.front-page .published-home .published-hero-slider.is-cover-active::before,
body.page-template-front-page .published-home .published-hero-slider.is-cover-active::before {
  inset: 0 !important;
  background:
    radial-gradient(circle at 78% 48%, rgba(0, 91, 49, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(255, 248, 236, 0.38), rgba(238, 245, 235, 0.28)),
    url("../artes/underscore.png") center / 210px auto repeat !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.published-home .published-hero-slider.is-cover-active::after,
body.home .published-home .published-hero-slider.is-cover-active::after,
body.front-page .published-home .published-hero-slider.is-cover-active::after,
body.page-template-front-page .published-home .published-hero-slider.is-cover-active::after {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0 44%, rgba(255, 248, 236, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)) !important;
}

.published-home .published-hero-slider > img.published-cover-image,
body.home .published-home .published-hero-slider > img.published-cover-image,
body.front-page .published-home .published-hero-slider > img.published-cover-image,
body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
  z-index: 2 !important;
  top: 50% !important;
  right: clamp(88px, 8vw, 150px) !important;
  bottom: auto !important;
  left: auto !important;
  width: min(42vw, 660px) !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: calc(100% - 160px) !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: translateY(-50%) rotate(-4deg) !important;
  filter: drop-shadow(0 28px 42px rgba(0, 68, 37, 0.22)) !important;
  animation: none !important;
}

.published-cover-callout,
body.home .published-cover-callout,
body.front-page .published-cover-callout,
body.page-template-front-page .published-cover-callout {
  isolation: isolate !important;
  left: clamp(82px, 8vw, 150px) !important;
  top: 50% !important;
  width: min(39vw, 560px) !important;
  max-width: 560px !important;
  gap: clamp(14px, 1.8vw, 24px) !important;
  transform: translateY(-48%) translateX(-16px) !important;
}

.published-cover-callout::before,
body.home .published-cover-callout::before,
body.front-page .published-cover-callout::before,
body.page-template-front-page .published-cover-callout::before {
  position: absolute !important;
  z-index: 0 !important;
  left: clamp(-102px, -7vw, -54px) !important;
  top: 47% !important;
  width: clamp(610px, 53vw, 860px) !important;
  aspect-ratio: 1.92 / 1 !important;
  background: url("../artes/Plano de Fundo.png") center 55% / contain no-repeat !important;
  content: "" !important;
  filter: saturate(1.1) contrast(1.08) !important;
  mix-blend-mode: multiply !important;
  opacity: 0.42 !important;
  pointer-events: none !important;
  transform: translateY(-50%) rotate(-2deg) !important;
}

.published-cover-callout > * {
  position: relative !important;
  z-index: 1 !important;
}

.published-cover-callout.is-active {
  transform: translateY(-50%) translateX(0) !important;
}

.published-cover-callout strong {
  max-width: 520px !important;
  font-size: clamp(54px, 5.5vw, 96px) !important;
  line-height: 0.9 !important;
}

.published-cover-callout em {
  max-width: 480px !important;
  color: #5b3b22 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
}

.published-cover-callout a {
  min-height: 56px !important;
  padding: 0 30px !important;
}

@media (max-width: 980px) {
  .published-home .published-hero-slider.is-cover-active,
  body.home .published-home .published-hero-slider.is-cover-active,
  body.front-page .published-home .published-hero-slider.is-cover-active,
  body.page-template-front-page .published-home .published-hero-slider.is-cover-active {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 760px !important;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.92) 0 54%, rgba(238, 245, 235, 0.9) 54% 100%),
      url("../artes/underscore.png") center / 180px auto repeat !important;
  }

  .published-cover-callout,
  body.home .published-cover-callout,
  body.front-page .published-cover-callout,
  body.page-template-front-page .published-cover-callout {
    left: 24px !important;
    right: 24px !important;
    top: 64px !important;
    width: auto !important;
    max-width: none !important;
    text-align: left !important;
    transform: translateY(0) translateX(-12px) !important;
  }

  .published-cover-callout::before,
  body.home .published-cover-callout::before,
  body.front-page .published-cover-callout::before,
  body.page-template-front-page .published-cover-callout::before {
    left: 50% !important;
    top: 52% !important;
    width: min(116vw, 680px) !important;
    opacity: 0.24 !important;
    transform: translate(-50%, -50%) rotate(-1deg) !important;
  }

  .published-cover-callout.is-active {
    transform: translateY(0) translateX(0) !important;
  }

  .published-cover-callout strong {
    max-width: 340px !important;
    font-size: clamp(44px, 14vw, 66px) !important;
  }

  .published-cover-callout em {
    max-width: min(82vw, 330px) !important;
    font-size: 18px !important;
    overflow-wrap: break-word !important;
  }

  .published-home .published-hero-slider .hero-media-arrow,
  body.home .published-home .published-hero-slider .hero-media-arrow,
  body.front-page .published-home .published-hero-slider .hero-media-arrow,
  body.page-template-front-page .published-home .published-hero-slider .hero-media-arrow {
    top: 62% !important;
  }

  .published-home .published-hero-slider > img.published-cover-image,
  body.home .published-home .published-hero-slider > img.published-cover-image,
  body.front-page .published-home .published-hero-slider > img.published-cover-image,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
    right: 50% !important;
    top: auto !important;
    bottom: 52px !important;
    width: min(86vw, 560px) !important;
    max-height: 360px !important;
    transform: translateX(50%) rotate(-4deg) !important;
  }
}

/* Checkout layout: readable billing fields and order review */
.woocommerce-checkout .cariama-generic-page {
  min-height: 100vh !important;
  padding-inline: clamp(18px, 5vw, 72px) !important;
}

.woocommerce-checkout .cariama-generic-page .section-heading,
.woocommerce-checkout .woocommerce {
  width: min(1180px, 100%) !important;
  margin-inline: auto !important;
}

.woocommerce-checkout .cariama-generic-page .section-heading {
  max-width: 1180px !important;
}

.woocommerce-checkout .cariama-wc-flow {
  width: 100% !important;
  margin-top: clamp(24px, 4vw, 44px) !important;
}

.woocommerce-checkout .woocommerce {
  display: block !important;
}

.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr) !important;
  gap: clamp(24px, 4vw, 52px) !important;
  align-items: start !important;
  width: 100% !important;
}

.woocommerce-checkout form.checkout > .col2-set {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  float: none !important;
  width: 100% !important;
}

.woocommerce-checkout form.checkout > h3,
.woocommerce-checkout form.checkout > #order_review {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.woocommerce-checkout form.checkout > h3 {
  margin: 0 0 -6px !important;
}

.woocommerce-checkout #order_review {
  float: none !important;
  width: 100% !important;
  margin-top: clamp(58px, 6vw, 76px) !important;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout-review-order {
  width: 100% !important;
  max-width: none !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 14px !important;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
  float: none !important;
  clear: none !important;
  width: 100% !important;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1 !important;
}

.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea,
.woocommerce-checkout .woocommerce form .form-row select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100% !important;
}

.woocommerce-checkout .woocommerce form .form-row textarea {
  min-height: 112px !important;
  resize: vertical !important;
}

.woocommerce-checkout table.shop_table {
  margin: 0 0 18px !important;
}

.woocommerce-checkout #payment {
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  box-shadow: none !important;
}

.woocommerce-checkout #payment #place_order {
  width: 100% !important;
  min-height: 54px !important;
}

.woocommerce-checkout .woocommerce-info {
  width: min(1180px, 100%) !important;
  margin: 0 auto 28px !important;
  border-top-color: #005b31 !important;
  background: rgba(255, 246, 226, 0.9) !important;
  color: #005b31 !important;
}

@media (max-width: 900px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-checkout form.checkout > h3,
  .woocommerce-checkout form.checkout > #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .woocommerce-checkout #order_review {
    margin-top: 0 !important;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  html,
  body.woocommerce-checkout {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .woocommerce-checkout .cariama-generic-page {
    padding-inline: 14px !important;
    overflow-x: hidden !important;
  }

  .woocommerce-checkout .cariama-generic-page .section-heading,
  .woocommerce-checkout .woocommerce,
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout .col2-set,
  .woocommerce-checkout .col-1,
  .woocommerce-checkout .col-2 {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .woocommerce-checkout .woocommerce,
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout table.shop_table {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .woocommerce-checkout .woocommerce-info {
    white-space: normal !important;
    line-height: 1.35 !important;
  }

  .woocommerce-checkout h3,
  .woocommerce-checkout .cart-collaterals h2 {
    font-size: clamp(28px, 9vw, 34px) !important;
    line-height: 0.98 !important;
    overflow-wrap: anywhere !important;
  }

  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-shipping-fields,
  .woocommerce-checkout .woocommerce-additional-fields,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout table.shop_table {
    padding: 16px !important;
  }
}

/* Cariama page: extend the wave divider behind the mark to the viewport edges */
.cariama-about-hero .about-title-mark {
  isolation: isolate !important;
  overflow: visible !important;
}

.cariama-about-hero .about-title-mark span {
  position: absolute !important;
  z-index: 0 !important;
  left: 50% !important;
  right: auto !important;
  top: 35% !important;
  display: block !important;
  width: 100vw !important;
  height: clamp(42px, 3.8vw, 58px) !important;
  background: url("../artes/underscore.png") center / 86px auto repeat !important;
  opacity: 0.9 !important;
  transform: translateX(-50%) !important;
}

.cariama-about-hero .about-title-mark img {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 700px) {
  .cariama-about-hero .about-title-mark span {
    top: 37% !important;
    background-size: 72px auto !important;
  }
}

/* Final mobile guard for the origin block */
@media (max-width: 520px) {
  .published-taste {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .published-taste .published-taste-copy,
  .published-taste .published-origin-panel {
    width: 100% !important;
    max-width: calc(100vw - 28px) !important;
    justify-self: center !important;
  }

  .published-taste .published-taste-copy p {
    max-width: 330px !important;
    font-size: 38px !important;
    line-height: 0.96 !important;
    text-align: center !important;
    justify-self: center !important;
  }

  .published-taste .published-taste-copy small {
    max-width: 270px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    text-align: center !important;
    justify-self: center !important;
  }

  .published-taste .published-launch-points span {
    max-width: 160px !important;
    white-space: normal !important;
  }

  .published-taste .published-origin-note {
    display: none !important;
  }
}

/* Home launch section: richer editorial treatment */
.published-taste {
  position: relative !important;
  grid-template-columns: minmax(340px, 0.88fr) minmax(420px, 1fr) !important;
  min-height: clamp(700px, 80vh, 840px) !important;
  overflow: hidden !important;
  background:
    linear-gradient(102deg, rgba(255, 248, 236, 0.98) 0 47%, rgba(224, 234, 218, 0.9) 47% 100%),
    url("../artes/underscore.png") center / 190px auto repeat !important;
}

.published-taste::before {
  position: absolute !important;
  inset: 0 auto 0 44% !important;
  display: block !important;
  width: min(42vw, 620px) !important;
  height: 100% !important;
  border-radius: 0 !important;
  background:
    linear-gradient(132deg, rgba(0, 91, 49, 0.12), rgba(0, 91, 49, 0.03) 56%, transparent 57%) !important;
  content: "" !important;
  opacity: 1 !important;
  transform: skewX(-10deg) !important;
  pointer-events: none !important;
}

.published-taste::after {
  position: absolute !important;
  right: clamp(34px, 6vw, 120px) !important;
  bottom: clamp(42px, 7vw, 96px) !important;
  width: min(26vw, 420px) !important;
  aspect-ratio: 1.45 / 1 !important;
  background: url("../artes/icon-bird --.png") center / contain no-repeat !important;
  content: "" !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
}

.published-taste-copy {
  position: relative !important;
  z-index: 2 !important;
  align-self: center !important;
  max-width: 700px !important;
  padding-block: clamp(28px, 4vw, 54px) !important;
}

.published-seal {
  width: clamp(76px, 5.4vw, 104px) !important;
  margin-bottom: clamp(28px, 4vw, 48px) !important;
}

.published-launch-kicker {
  border-left-color: #f47b50 !important;
  color: #005b31 !important;
}

.published-taste-copy p {
  max-width: 680px !important;
  font-size: clamp(58px, 6.1vw, 104px) !important;
  line-height: 0.9 !important;
}

.published-taste-copy small {
  max-width: 620px !important;
  color: #51351f !important;
  position: relative !important;
  margin-top: 4px !important;
  padding-left: clamp(16px, 1.6vw, 22px) !important;
  font-size: clamp(18px, 1.35vw, 22px) !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
}

.published-taste-copy small::before {
  position: absolute !important;
  left: 0 !important;
  top: 0.32em !important;
  width: 4px !important;
  height: calc(100% - 0.58em) !important;
  border-radius: 999px !important;
  background: #f47b50 !important;
  content: "" !important;
}

.published-launch-points span {
  border-color: rgba(0, 91, 49, 0.22) !important;
  background: rgba(255, 248, 236, 0.82) !important;
  box-shadow: 0 12px 28px rgba(0, 91, 49, 0.08) !important;
}

.published-package {
  position: relative !important;
  z-index: 2 !important;
  min-height: clamp(560px, 54vw, 780px) !important;
}

.published-package::before {
  position: absolute !important;
  z-index: -1 !important;
  inset: 50% auto auto 50% !important;
  display: block !important;
  width: clamp(360px, 38vw, 620px) !important;
  height: clamp(360px, 38vw, 620px) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle, rgba(255, 248, 236, 0.96) 0 38%, rgba(0, 91, 49, 0.12) 39% 62%, transparent 63%),
    radial-gradient(circle, rgba(244, 123, 80, 0.12), transparent 68%) !important;
  box-shadow: 0 38px 90px rgba(0, 91, 49, 0.16) !important;
  content: "" !important;
  transform: translate(-50%, -50%) !important;
}

.published-package img {
  width: min(104%, 780px) !important;
  transform: rotate(-7deg) translateX(1%) translateY(-2%) !important;
  filter: drop-shadow(0 42px 52px rgba(0, 68, 37, 0.24)) !important;
}

.published-buy-image {
  border: 0 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  filter: none !important;
  box-shadow: 0 24px 54px rgba(0, 91, 49, 0.24) !important;
}

@media (max-width: 920px) {
  .published-taste {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 58px 20px 72px !important;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(224, 234, 218, 0.9)),
      url("../artes/underscore.png") center / 150px auto repeat !important;
  }

  .published-taste::before {
    inset: auto -24% 18% auto !important;
    width: 92vw !important;
    height: 45% !important;
    transform: skewY(-8deg) !important;
  }

  .published-taste::after {
    right: -12vw !important;
    bottom: 24% !important;
    width: 72vw !important;
  }
}

/* Final mobile guard for the origin block */
@media (max-width: 520px) {
  .published-taste {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .published-taste .published-taste-copy,
  .published-taste .published-origin-panel {
    width: 100% !important;
    max-width: calc(100vw - 28px) !important;
    justify-self: center !important;
  }

  .published-taste .published-taste-copy p {
    max-width: 330px !important;
    font-size: 38px !important;
    line-height: 0.96 !important;
    text-align: center !important;
    justify-self: center !important;
  }

  .published-taste .published-taste-copy small {
    max-width: 292px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    padding-left: 0 !important;
    text-align: center !important;
    justify-self: center !important;
  }

  .published-taste .published-taste-copy small::before {
    display: none !important;
  }

  .published-taste .published-launch-points span {
    max-width: 160px !important;
    white-space: normal !important;
  }

  .published-taste .published-origin-note {
    right: 14px !important;
    max-width: 160px !important;
    overflow: hidden !important;
  }
}

/* Final hero smoothness override */
.published-home .published-hero-slider,
body.home .published-home .published-hero-slider,
body.front-page .published-home .published-hero-slider,
body.page-template-front-page .published-home .published-hero-slider {
  isolation: isolate !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.98) 0 40%, rgba(255, 248, 236, 0.72) 53%, rgba(232, 241, 227, 0.93) 100%),
    url("../artes/underscore.png") center / 205px auto repeat !important;
}

.published-home .published-hero-slider::before,
body.home .published-home .published-hero-slider::before,
body.front-page .published-home .published-hero-slider::before,
body.page-template-front-page .published-home .published-hero-slider::before {
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99) 0 38%, rgba(255, 248, 236, 0.66) 50%, rgba(255, 248, 236, 0) 62%),
    radial-gradient(circle at 74% 38%, rgba(0, 91, 49, 0.13), transparent 34%),
    url("../artes/underscore.png") center / 205px auto repeat !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.published-home .published-hero-slider::after,
body.home .published-home .published-hero-slider::after,
body.front-page .published-home .published-hero-slider::after,
body.page-template-front-page .published-home .published-hero-slider::after {
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 1) 0 37%, rgba(255, 248, 236, 0.86) 45%, rgba(255, 248, 236, 0.2) 57%, rgba(255, 248, 236, 0) 70%),
    linear-gradient(118deg, rgba(255, 248, 236, 0) 0 49%, rgba(0, 91, 49, 0.075) 49.2% 53.4%, rgba(255, 248, 236, 0) 53.7% 100%) !important;
  content: "" !important;
  pointer-events: none !important;
}

.published-home .published-hero-slider > img,
body.home .published-home .published-hero-slider > img,
body.front-page .published-home .published-hero-slider > img,
body.page-template-front-page .published-home .published-hero-slider > img {
  opacity: 0 !important;
  visibility: visible !important;
  will-change: opacity, transform, filter !important;
  backface-visibility: hidden !important;
  filter: blur(8px) saturate(0.98) contrast(0.98) !important;
  transform: translate3d(12px, 0, 0) scale(1.018) !important;
  transition:
    opacity 980ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 980ms ease !important;
}

.published-home .published-hero-slider > img.is-active,
body.home .published-home .published-hero-slider > img.is-active,
body.front-page .published-home .published-hero-slider > img.is-active,
body.page-template-front-page .published-home .published-hero-slider > img.is-active {
  opacity: 1 !important;
  filter: blur(0) saturate(1.04) contrast(1.02) !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.published-home .published-hero-slider > img.published-cover-image,
body.home .published-home .published-hero-slider > img.published-cover-image,
body.front-page .published-home .published-hero-slider > img.published-cover-image,
body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
  transform: translateY(-50%) translate3d(16px, -2px, 0) rotate(-4deg) scale(1.015) !important;
}

.published-home .published-hero-slider > img.published-cover-image.is-active,
body.home .published-home .published-hero-slider > img.published-cover-image.is-active,
body.front-page .published-home .published-hero-slider > img.published-cover-image.is-active,
body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image.is-active {
  transform: translateY(-50%) translate3d(0, 0, 0) rotate(-4deg) scale(1) !important;
}

.published-cover-callout,
body.home .published-cover-callout,
body.front-page .published-cover-callout,
body.page-template-front-page .published-cover-callout {
  transition:
    opacity 920ms ease,
    transform 1120ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.published-cover-callout::after,
body.home .published-cover-callout::after,
body.front-page .published-cover-callout::after,
body.page-template-front-page .published-cover-callout::after {
  position: absolute !important;
  z-index: 0 !important;
  top: 50% !important;
  left: min(320px, 30vw) !important;
  width: clamp(180px, 22vw, 360px) !important;
  height: clamp(160px, 20vw, 330px) !important;
  background: linear-gradient(90deg, rgba(255, 248, 236, 0.74), rgba(255, 248, 236, 0)) !important;
  content: "" !important;
  pointer-events: none !important;
  transform: translateY(-50%) skewX(-11deg) !important;
}

.published-home .published-hero-slider .hero-media-dots button,
body.home .published-home .published-hero-slider .hero-media-dots button,
body.front-page .published-home .published-hero-slider .hero-media-dots button,
body.page-template-front-page .published-home .published-hero-slider .hero-media-dots button {
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 360ms ease,
    background-color 360ms ease,
    transform 360ms ease !important;
}

.published-home .published-hero-slider .hero-media-dots button.is-active,
body.home .published-home .published-hero-slider .hero-media-dots button.is-active,
body.front-page .published-home .published-hero-slider .hero-media-dots button.is-active,
body.page-template-front-page .published-home .published-hero-slider .hero-media-dots button.is-active {
  transform: translateY(-1px) !important;
}

@media (max-width: 980px) {
  .published-home .published-hero-slider::after,
  body.home .published-home .published-hero-slider::after,
  body.front-page .published-home .published-hero-slider::after,
  body.page-template-front-page .published-home .published-hero-slider::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0 44%, rgba(255, 248, 236, 0.24) 63%, rgba(255, 248, 236, 0) 100%),
      linear-gradient(170deg, rgba(255, 248, 236, 0) 0 60%, rgba(0, 91, 49, 0.07) 60.4% 66%, rgba(255, 248, 236, 0) 66.4% 100%) !important;
  }

  .published-home .published-hero-slider > img.published-cover-image,
  body.home .published-home .published-hero-slider > img.published-cover-image,
  body.front-page .published-home .published-hero-slider > img.published-cover-image,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image {
    transform: translateX(50%) translate3d(10px, 6px, 0) rotate(-4deg) scale(1.012) !important;
  }

  .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.home .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.front-page .published-home .published-hero-slider > img.published-cover-image.is-active,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cover-image.is-active {
    transform: translateX(50%) translate3d(0, 0, 0) rotate(-4deg) scale(1) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .published-home .published-hero-slider > img,
  body.home .published-home .published-hero-slider > img,
  body.front-page .published-home .published-hero-slider > img,
  body.page-template-front-page .published-home .published-hero-slider > img,
  .published-cover-callout,
  body.home .published-cover-callout,
  body.front-page .published-cover-callout,
  body.page-template-front-page .published-cover-callout {
    transition: opacity 180ms ease !important;
  }
}

/* End override: Canastra icon without backing circle */
.canastra-symbol img,
body .canastra-symbol img {
  width: clamp(180px, 18vw, 280px) !important;
  max-width: 72vw !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 20px rgba(62, 36, 20, 0.18)) !important;
}

.canastra-symbol,
body .canastra-symbol {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 680px) {
  .canastra-symbol img,
  body .canastra-symbol img {
    width: min(64vw, 240px) !important;
  }
}
/* End override: Cariama footer palette */
.site-footer,
body .site-footer {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, #005b31 0 18px, transparent 18px),
    radial-gradient(circle at 52% 28%, rgba(166, 29, 32, 0.34), transparent 26%),
    linear-gradient(135deg, #063f26 0%, #005b31 48%, #173b2b 100%) !important;
  color: #fff8ec !important;
  border-top: 0 !important;
}

.site-footer::before,
body .site-footer::before {
  position: absolute !important;
  top: 54px !important;
  left: 50% !important;
  width: min(70vw, 760px) !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(226, 183, 102, 0.72), transparent) !important;
  content: "" !important;
  transform: translateX(-50%) !important;
  opacity: 1 !important;
}

.site-footer::after,
body .site-footer::after {
  position: absolute !important;
  right: -90px !important;
  bottom: -130px !important;
  width: 360px !important;
  height: 360px !important;
  border-radius: 999px !important;
  background: rgba(244, 123, 80, 0.16) !important;
  content: "" !important;
  pointer-events: none !important;
}

.site-footer > *,
body .site-footer > * {
  position: relative !important;
  z-index: 1 !important;
}

.site-footer .footer-brand img,
body .site-footer .footer-brand img {
  width: clamp(132px, 12vw, 188px) !important;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22)) !important;
}

.site-footer .footer-brand strong,
.site-footer .footer-brand small,
.site-footer p,
.site-footer address a,
.site-footer address span,
.site-footer address strong,
.footer-menu a,
.footer-social span,
.footer-payment-group span,
.footer-map-card a,
body .site-footer .footer-brand strong,
body .site-footer .footer-brand small,
body .site-footer p,
body .site-footer address a,
body .site-footer address span,
body .site-footer address strong,
body .footer-menu a,
body .footer-social span,
body .footer-payment-group span,
body .footer-map-card a {
  color: #f3d7a7 !important;
}

.footer-menu a:hover,
.footer-map-card a:hover,
.site-footer address a:hover,
body .footer-menu a:hover,
body .footer-map-card a:hover,
body .site-footer address a:hover {
  color: #fff8ec !important;
}

.footer-social-icons a,
body .footer-social-icons a {
  background: rgba(255, 248, 236, 0.14) !important;
  border: 1px solid rgba(243, 215, 167, 0.34) !important;
}

.footer-payment-group > img,
body .footer-payment-group > img,
.footer-map-card,
body .footer-map-card {
  background: rgba(255, 248, 236, 0.94) !important;
  border-color: rgba(243, 215, 167, 0.32) !important;
}

@media (max-width: 780px) {
  .site-footer,
  body .site-footer {
    background:
      linear-gradient(180deg, #005b31 0 18px, transparent 18px),
      radial-gradient(circle at 50% 22%, rgba(166, 29, 32, 0.32), transparent 34%),
      linear-gradient(180deg, #063f26 0%, #005b31 100%) !important;
  }
}
/* End override: return footer to peach palette */
.site-footer,
body .site-footer {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, #005b31 0 18px, transparent 18px),
    radial-gradient(circle at 50% 32%, rgba(255, 248, 236, 0.16), transparent 34%),
    linear-gradient(180deg, #f47b50 0%, #f47b50 100%) !important;
  color: #fff8ec !important;
  border-top: 0 !important;
}

.site-footer::before,
body .site-footer::before {
  position: absolute !important;
  top: 54px !important;
  left: 50% !important;
  width: min(70vw, 760px) !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(243, 215, 167, 0.64), transparent) !important;
  content: "" !important;
  transform: translateX(-50%) !important;
  opacity: 1 !important;
}

.site-footer::after,
body .site-footer::after {
  background: rgba(255, 248, 236, 0.08) !important;
}

.site-footer .footer-brand strong,
.site-footer .footer-brand small,
.site-footer p,
.site-footer address a,
.site-footer address span,
.site-footer address strong,
.footer-menu a,
.footer-social span,
.footer-payment-group span,
.footer-map-card a,
body .site-footer .footer-brand strong,
body .site-footer .footer-brand small,
body .site-footer p,
body .site-footer address a,
body .site-footer address span,
body .site-footer address strong,
body .footer-menu a,
body .footer-social span,
body .footer-payment-group span,
body .footer-map-card a {
  color: #f3d7a7 !important;
}

.footer-menu a:hover,
.footer-map-card a:hover,
.site-footer address a:hover,
body .footer-menu a:hover,
body .footer-map-card a:hover,
body .site-footer address a:hover {
  color: #fff8ec !important;
}

.footer-social-icons a,
body .footer-social-icons a {
  background: rgba(255, 248, 236, 0.16) !important;
  border: 1px solid rgba(243, 215, 167, 0.38) !important;
}

.footer-payment-group > img,
body .footer-payment-group > img,
.footer-map-card,
body .footer-map-card {
  background: rgba(255, 248, 236, 0.94) !important;
  border-color: rgba(243, 215, 167, 0.38) !important;
}
/* End override: Canastra band with new Cariama logo and no waves */
.canastra-band,
body .canastra-band {
  background:
    radial-gradient(circle at 20% 18%, rgba(243, 215, 167, 0.16), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(244, 123, 80, 0.12), transparent 34%),
    linear-gradient(135deg, #005b31 0%, #063f26 100%) !important;
  color: #f3d7a7 !important;
}

.canastra-symbol img,
body .canastra-symbol img {
  width: clamp(210px, 20vw, 320px) !important;
  max-width: 76vw !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22)) !important;
}

.canastra-symbol,
body .canastra-symbol {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 680px) {
  .canastra-band,
  body .canastra-band {
    background:
      radial-gradient(circle at 50% 18%, rgba(243, 215, 167, 0.14), transparent 38%),
      linear-gradient(180deg, #005b31 0%, #063f26 100%) !important;
  }

  .canastra-symbol img,
  body .canastra-symbol img {
    width: min(72vw, 260px) !important;
  }
}
/* End override: refined checkout layout */
body.woocommerce-checkout,
body.woocommerce-checkout .site-main,
.woocommerce-checkout .cariama-generic-page {
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 123, 80, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 91, 49, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8ec 0%, #f4ddb1 100%) !important;
  overflow-x: hidden !important;
}

.woocommerce-checkout .cariama-generic-page {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 78px) clamp(70px, 8vw, 110px) !important;
}

.woocommerce-checkout .cariama-generic-page::before,
.woocommerce-checkout .cariama-generic-page::after {
  display: none !important;
}

.woocommerce-checkout .cariama-generic-page .section-heading,
.woocommerce-checkout .woocommerce {
  width: min(1220px, 100%) !important;
  max-width: 1220px !important;
  margin-inline: auto !important;
}

.woocommerce-checkout .cariama-generic-page .section-heading {
  margin-bottom: clamp(24px, 3vw, 38px) !important;
}

.woocommerce-checkout .cariama-generic-page .section-heading h1,
.woocommerce-checkout .page-title,
.woocommerce-checkout h1 {
  max-width: 760px !important;
  margin-bottom: 18px !important;
  color: #005b31 !important;
  font-size: clamp(42px, 5.2vw, 76px) !important;
  line-height: 0.92 !important;
}

.woocommerce-checkout .woocommerce-info {
  width: 100% !important;
  max-width: 1220px !important;
  min-height: 46px !important;
  margin: 0 auto 16px !important;
  padding: 14px 18px 14px 52px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-top: 3px solid #005b31 !important;
  border-radius: 0 !important;
  background: rgba(255, 248, 236, 0.94) !important;
  box-shadow: 0 14px 34px rgba(81, 53, 31, 0.08) !important;
  color: #005b31 !important;
}

.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: minmax(520px, 1.18fr) minmax(390px, 0.82fr) !important;
  gap: clamp(28px, 4vw, 64px) !important;
  align-items: start !important;
  width: min(1220px, 100%) !important;
  margin: clamp(26px, 3vw, 42px) auto 0 !important;
}

.woocommerce-checkout form.checkout > .col2-set,
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout-review-order {
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.92) !important;
  box-shadow: 0 22px 54px rgba(81, 53, 31, 0.11) !important;
}

.woocommerce-checkout form.checkout > .col2-set {
  display: block !important;
  padding: clamp(24px, 3vw, 38px) !important;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout form.checkout > h3 {
  margin: 0 0 24px !important;
  color: #005b31 !important;
  font-size: clamp(30px, 2.6vw, 44px) !important;
  line-height: 0.94 !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px 18px !important;
}

.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout .form-row-wide,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #order_comments_field,
.woocommerce-checkout #account_password_field,
.woocommerce-checkout #ship-to-different-address,
.woocommerce-checkout .woocommerce-additional-fields {
  grid-column: 1 / -1 !important;
}

.woocommerce-checkout .woocommerce form .form-row label {
  margin: 0 0 6px !important;
  color: #005b31 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea,
.woocommerce-checkout .woocommerce form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 48px !important;
  border: 1px solid rgba(0, 91, 49, 0.25) !important;
  border-radius: 6px !important;
  background: #fffdf7 !important;
  color: #3a2618 !important;
  font-size: 15px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
}

.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
.woocommerce-checkout .woocommerce form .form-row textarea:focus,
.woocommerce-checkout .woocommerce form .form-row select:focus,
.woocommerce-checkout .select2-container--open .select2-selection--single {
  border-color: #005b31 !important;
  box-shadow: 0 0 0 3px rgba(0, 91, 49, 0.12) !important;
  outline: 0 !important;
}

.woocommerce-checkout form.checkout > h3,
.woocommerce-checkout form.checkout > #order_review {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.woocommerce-checkout form.checkout > h3 {
  position: sticky !important;
  top: 110px !important;
  z-index: 3 !important;
  margin: 0 0 18px !important;
  padding-bottom: 0 !important;
}

.woocommerce-checkout #order_review {
  position: sticky !important;
  top: 174px !important;
  width: 100% !important;
  margin: 58px 0 0 !important;
}

.woocommerce-checkout-review-order {
  padding: clamp(18px, 2vw, 26px) !important;
}

.woocommerce-checkout table.shop_table {
  margin: 0 0 18px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: rgba(255, 248, 236, 0.82) !important;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 16px 14px !important;
  border-color: rgba(0, 91, 49, 0.14) !important;
  color: #005b31 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.woocommerce-checkout #payment {
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.72) !important;
  overflow: hidden !important;
}

.woocommerce-checkout #payment #place_order {
  width: 100% !important;
  min-height: 56px !important;
  border-radius: 6px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  font-size: 15px !important;
  letter-spacing: 0.05em !important;
}

.woocommerce-checkout #payment #place_order:hover {
  background: #064327 !important;
}

@media (max-width: 980px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-checkout form.checkout > h3,
  .woocommerce-checkout form.checkout > #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .woocommerce-checkout form.checkout > h3,
  .woocommerce-checkout #order_review {
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .cariama-generic-page {
    padding: 34px 14px 70px !important;
  }

  .woocommerce-checkout form.checkout,
  .woocommerce-checkout .woocommerce,
  .woocommerce-checkout .cariama-generic-page .section-heading {
    width: 100% !important;
    max-width: 100% !important;
  }

  .woocommerce-checkout form.checkout > .col2-set,
  .woocommerce-checkout-review-order {
    padding: 18px !important;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-checkout .cariama-generic-page .section-heading h1,
  .woocommerce-checkout .page-title,
  .woocommerce-checkout h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }
}
/* End override: remove old about-title wave artwork */
.cariama-about-hero .about-title-mark,
body .cariama-about-hero .about-title-mark {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 0 !important;
  margin: 0 auto clamp(34px, 5vw, 70px) !important;
  padding: clamp(18px, 3vw, 34px) 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.cariama-about-hero .about-title-mark span,
body .cariama-about-hero .about-title-mark span,
.cariama-about-hero .about-title-mark::before,
.cariama-about-hero .about-title-mark::after,
body .cariama-about-hero .about-title-mark::before,
body .cariama-about-hero .about-title-mark::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.cariama-about-hero .about-title-mark img,
body .cariama-about-hero .about-title-mark img {
  width: clamp(170px, 16vw, 260px) !important;
  max-width: 76vw !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 28px rgba(81, 53, 31, 0.16)) !important;
}
/* End override: visible payment method selector with Pix support */
.woocommerce-checkout #payment ul.payment_methods,
body.woocommerce-checkout #payment ul.payment_methods {
  display: grid !important;
  gap: 12px !important;
  padding: 16px !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.14) !important;
  background: rgba(255, 248, 236, 0.8) !important;
}

.woocommerce-checkout #payment ul.payment_methods li,
body.woocommerce-checkout #payment ul.payment_methods li {
  position: relative !important;
  margin: 0 !important;
  padding: 14px 14px 14px 46px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  color: #005b31 !important;
}

.woocommerce-checkout #payment ul.payment_methods li input.input-radio,
body.woocommerce-checkout #payment ul.payment_methods li input.input-radio {
  position: absolute !important;
  left: 16px !important;
  top: 18px !important;
  opacity: 1 !important;
  appearance: auto !important;
}

.woocommerce-checkout #payment ul.payment_methods li > label,
body.woocommerce-checkout #payment ul.payment_methods li > label {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: #005b31 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_cariama_pix > label::after,
body.woocommerce-checkout #payment ul.payment_methods li.payment_method_cariama_pix > label::after {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
  background: rgba(0, 91, 49, 0.1) !important;
  color: #005b31 !important;
  content: "Pix" !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.woocommerce-checkout #payment div.payment_box,
body.woocommerce-checkout #payment div.payment_box {
  margin: 12px 0 0 !important;
  border-radius: 6px !important;
  background: rgba(243, 215, 167, 0.22) !important;
  color: #3a2618 !important;
}

.cariama-pix-instructions,
body .cariama-pix-instructions {
  margin: 24px 0 !important;
  padding: 22px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: #fff8ec !important;
  color: #005b31 !important;
}

.cariama-pix-instructions code,
body .cariama-pix-instructions code {
  display: inline-block !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  background: rgba(0, 91, 49, 0.08) !important;
  color: #005b31 !important;
  font-weight: 900 !important;
}
/* End override: clearer product review count */
.cariama-shop-archive .product-rating-row small,
.product-card-woocommerce .product-rating-row small,
body .cariama-shop-archive .product-rating-row small,
body .product-card-woocommerce .product-rating-row small {
  color: #005b31 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.cariama-shop-archive .product-rating-row,
.product-card-woocommerce .product-rating-row,
body .cariama-shop-archive .product-rating-row,
body .product-card-woocommerce .product-rating-row {
  align-items: center !important;
  gap: 14px !important;
}
/* End override: account login/register as a single switchable flow */
.woocommerce-account .cariama-generic-page,
body.woocommerce-account .cariama-generic-page {
  background:
    radial-gradient(circle at 16% 18%, rgba(244, 123, 80, 0.12), transparent 30%),
    linear-gradient(115deg, #fff8ec 0 58%, #edf4e9 58% 100%) !important;
}

.woocommerce-account #customer_login,
body.woocommerce-account #customer_login {
  display: grid !important;
  grid-template-columns: minmax(0, 560px) !important;
  justify-content: start !important;
  gap: 22px !important;
  max-width: 680px !important;
  margin: 0 !important;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after,
body.woocommerce-account #customer_login::before,
body.woocommerce-account #customer_login::after {
  display: none !important;
  content: none !important;
}

.account-auth-switcher,
body .account-auth-switcher {
  display: inline-grid !important;
  grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
  gap: 6px !important;
  width: min(100%, 420px) !important;
  padding: 6px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.88) !important;
  box-shadow: 0 16px 36px rgba(81, 53, 31, 0.08) !important;
}

.account-auth-switcher button,
body .account-auth-switcher button {
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #005b31 !important;
  cursor: pointer !important;
  font-family: var(--strong-font) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.account-auth-switcher button.is-active,
body .account-auth-switcher button.is-active {
  background: #005b31 !important;
  color: #fff8ec !important;
  box-shadow: 0 10px 22px rgba(0, 91, 49, 0.18) !important;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2,
.woocommerce-account #customer_login .col-1,
.woocommerce-account #customer_login .col-2,
body.woocommerce-account #customer_login .u-column1,
body.woocommerce-account #customer_login .u-column2,
body.woocommerce-account #customer_login .col-1,
body.woocommerce-account #customer_login .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.92) !important;
  box-shadow: 0 24px 58px rgba(81, 53, 31, 0.1) !important;
}

.woocommerce-account #customer_login.is-login-mode .u-column2,
.woocommerce-account #customer_login.is-login-mode .col-2,
.woocommerce-account #customer_login.is-register-mode .u-column1,
.woocommerce-account #customer_login.is-register-mode .col-1,
body.woocommerce-account #customer_login.is-login-mode .u-column2,
body.woocommerce-account #customer_login.is-login-mode .col-2,
body.woocommerce-account #customer_login.is-register-mode .u-column1,
body.woocommerce-account #customer_login.is-register-mode .col-1 {
  display: none !important;
}

.woocommerce-account #customer_login h2,
body.woocommerce-account #customer_login h2 {
  margin: 0 0 22px !important;
  color: #005b31 !important;
  font-size: clamp(38px, 4vw, 54px) !important;
  line-height: 0.94 !important;
  text-align: left !important;
}

.woocommerce-account #customer_login form,
body.woocommerce-account #customer_login form {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.woocommerce-account #customer_login .form-row,
body.woocommerce-account #customer_login .form-row {
  margin: 0 0 16px !important;
}

.woocommerce-account #customer_login label,
body.woocommerce-account #customer_login label {
  color: #005b31 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.woocommerce-account #customer_login input.input-text,
body.woocommerce-account #customer_login input.input-text {
  min-height: 52px !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  border-radius: 6px !important;
  background: #fffdf7 !important;
  color: #3a2618 !important;
  font-size: 16px !important;
}

.woocommerce-account #customer_login .button,
body.woocommerce-account #customer_login .button {
  min-height: 52px !important;
  padding: 0 28px !important;
  border-radius: 6px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
}

.woocommerce-account #customer_login .woocommerce-privacy-policy-text,
body.woocommerce-account #customer_login .woocommerce-privacy-policy-text {
  color: #005b31 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

@media (max-width: 740px) {
  .woocommerce-account #customer_login,
  body.woocommerce-account #customer_login {
    max-width: 100% !important;
  }

  .account-auth-switcher,
  body .account-auth-switcher {
    width: 100% !important;
  }
}
/* End override: readable WooCommerce cart layout */
body.woocommerce-cart,
body.woocommerce-cart .site-main,
.woocommerce-cart .cariama-generic-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(244, 123, 80, 0.12), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(0, 91, 49, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8ec 0%, #f4ddb1 100%) !important;
  overflow-x: hidden !important;
}

.woocommerce-cart .cariama-generic-page {
  min-height: auto !important;
  padding: clamp(40px, 6vw, 82px) clamp(18px, 5vw, 78px) clamp(72px, 8vw, 110px) !important;
}

.woocommerce-cart .cariama-generic-page::before,
.woocommerce-cart .cariama-generic-page::after {
  display: none !important;
  content: none !important;
}

.woocommerce-cart .cariama-generic-page .section-heading,
.woocommerce-cart .woocommerce {
  width: min(1220px, 100%) !important;
  max-width: 1220px !important;
  margin-inline: auto !important;
}

.woocommerce-cart .cariama-generic-page .section-heading h1,
.woocommerce-cart .page-title,
.woocommerce-cart h1 {
  max-width: 760px !important;
  margin: 0 0 28px !important;
  color: #005b31 !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 0.92 !important;
}

.woocommerce-cart .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(620px, 1fr) minmax(340px, 420px) !important;
  gap: clamp(24px, 4vw, 56px) !important;
  align-items: start !important;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
  grid-column: 1 / -1 !important;
}

.woocommerce-cart .woocommerce-cart-form {
  grid-column: 1 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(18px, 2.4vw, 30px) !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.92) !important;
  box-shadow: 0 22px 54px rgba(81, 53, 31, 0.11) !important;
}

.woocommerce-cart table.shop_table,
.woocommerce-cart .woocommerce-cart-form table.shop_table {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  background: transparent !important;
  box-shadow: none !important;
  table-layout: auto !important;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  padding: 16px 14px !important;
  border-color: rgba(0, 91, 49, 0.14) !important;
  color: #005b31 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  vertical-align: middle !important;
}

.woocommerce-cart table.shop_table th {
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.woocommerce-cart table.cart img,
.woocommerce-cart .product-thumbnail img {
  width: 72px !important;
  max-width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  border-radius: 6px !important;
  background: #fffdf7 !important;
}

.woocommerce-cart .product-name a,
.woocommerce-cart .product-name {
  color: #005b31 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.28 !important;
  text-decoration: none !important;
}

.woocommerce-cart .quantity .qty {
  width: 72px !important;
  min-height: 42px !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  border-radius: 6px !important;
  background: #fffdf7 !important;
  color: #005b31 !important;
  font-weight: 900 !important;
  text-align: center !important;
}

.woocommerce-cart .coupon {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  padding-top: 12px !important;
}

.woocommerce-cart .coupon .input-text {
  min-width: 180px !important;
  min-height: 42px !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  border-radius: 6px !important;
  background: #fffdf7 !important;
}

.woocommerce-cart .actions .button,
.woocommerce-cart .coupon .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 46px !important;
  border-radius: 6px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.woocommerce-cart .cart-collaterals {
  grid-column: 2 !important;
  width: 100% !important;
  margin: 0 !important;
}

.woocommerce-cart .cart-collaterals::before,
.woocommerce-cart .cart-collaterals::after {
  display: none !important;
  content: none !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(20px, 2.5vw, 30px) !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.94) !important;
  box-shadow: 0 22px 54px rgba(81, 53, 31, 0.12) !important;
}

.woocommerce-cart .cart-collaterals h2,
.woocommerce-cart .cross-sells h2 {
  margin: 0 0 18px !important;
  color: #005b31 !important;
  font-size: clamp(28px, 2.4vw, 40px) !important;
  line-height: 0.96 !important;
  text-align: left !important;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.12) !important;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 18px 0 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
}

.woocommerce-cart .cross-sells {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-top: clamp(28px, 4vw, 48px) !important;
  padding: 0 !important;
}

.woocommerce-cart .cross-sells ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 0 !important;
}

.woocommerce-cart .cross-sells ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

@media (max-width: 1080px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals,
  .woocommerce-cart .cross-sells {
    grid-column: 1 !important;
  }
}

@media (max-width: 720px) {
  .woocommerce-cart .cariama-generic-page {
    padding: 34px 14px 70px !important;
  }

  .woocommerce-cart .woocommerce-cart-form {
    overflow-x: auto !important;
  }

  .woocommerce-cart table.shop_table th,
  .woocommerce-cart table.shop_table td {
    padding: 12px 10px !important;
    font-size: 13px !important;
  }

  .woocommerce-cart table.cart img,
  .woocommerce-cart .product-thumbnail img {
    width: 56px !important;
    height: 56px !important;
  }

  .woocommerce-cart .cross-sells ul.products {
    grid-template-columns: 1fr !important;
  }
}
/* End override: restore original footer shape */
.site-footer,
body .site-footer {
  display: grid !important;
  grid-template-columns: minmax(170px, 0.82fr) minmax(120px, 0.62fr) minmax(230px, 1fr) minmax(220px, 0.9fr) minmax(220px, 0.86fr) !important;
  align-items: center !important;
  gap: clamp(24px, 3.2vw, 54px) !important;
  min-height: 320px !important;
  padding: clamp(42px, 5vw, 66px) clamp(30px, 7vw, 104px) !important;
  overflow: hidden !important;
  border-top: 8px solid #005b31 !important;
  background:
    linear-gradient(100deg, rgba(244, 123, 80, 0.98) 0%, rgba(244, 123, 80, 0.96) 100%) !important;
  color: #f3d7a7 !important;
}

.site-footer::before,
body .site-footer::before,
.site-footer::after,
body .site-footer::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.site-footer > *,
body .site-footer > * {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
}

.footer-logo-col,
body .footer-logo-col {
  display: grid !important;
  min-width: 0 !important;
  align-self: center !important;
  justify-self: center !important;
  place-items: center !important;
}

.site-footer .footer-brand,
body .site-footer .footer-brand {
  display: grid !important;
  width: clamp(128px, 10vw, 168px) !important;
  margin: 0 !important;
  place-items: center !important;
  line-height: 0 !important;
}

.site-footer .footer-brand img,
body .site-footer .footer-brand img {
  display: block !important;
  width: clamp(128px, 10vw, 168px) !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain !important;
  filter: none !important;
}

.site-footer .brand strong,
.site-footer .brand small,
body .site-footer .brand strong,
body .site-footer .brand small {
  display: none !important;
}

.footer-menu,
.footer-social,
.footer-contact,
.footer-map-card,
body .footer-menu,
body .footer-social,
body .footer-contact,
body .footer-map-card {
  min-height: 150px !important;
  border-left: 1px solid rgba(243, 215, 167, 0.48) !important;
  padding-left: clamp(22px, 2.6vw, 38px) !important;
}

.footer-menu,
body .footer-menu {
  display: grid !important;
  gap: 8px !important;
  align-content: center !important;
}

.footer-menu a,
.footer-social span,
.footer-payment-group span,
.site-footer address strong,
.site-footer address a,
.site-footer address span,
.footer-map-card a,
body .footer-menu a,
body .footer-social span,
body .footer-payment-group span,
body .site-footer address strong,
body .site-footer address a,
body .site-footer address span,
body .footer-map-card a {
  color: #f3d7a7 !important;
}

.footer-menu a,
body .footer-menu a {
  font-size: clamp(18px, 1.45vw, 24px) !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
}

.footer-social,
body .footer-social {
  display: grid !important;
  align-content: center !important;
  gap: 24px !important;
}

.footer-social-group,
.footer-payment-group,
body .footer-social-group,
body .footer-payment-group {
  display: grid !important;
  gap: 12px !important;
}

.footer-payment-group,
body .footer-payment-group {
  border-top: 1px solid rgba(243, 215, 167, 0.48) !important;
  padding-top: 18px !important;
}

.footer-social span,
.footer-payment-group span,
body .footer-social span,
body .footer-payment-group span {
  font-size: 17px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.footer-social-icons,
body .footer-social-icons {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.footer-social-icons a,
body .footer-social-icons a {
  display: inline-flex !important;
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(243, 215, 167, 0.86) !important;
}

.footer-social-icons img,
body .footer-social-icons img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
}

.footer-payment-group > img,
body .footer-payment-group > img {
  width: min(300px, 100%) !important;
  max-width: 300px !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.footer-contact,
body .footer-contact {
  display: grid !important;
  align-content: center !important;
  gap: 10px !important;
  font-style: normal !important;
}

.site-footer address strong,
body .site-footer address strong {
  font-size: 20px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.site-footer address a,
.site-footer address span,
body .site-footer address a,
body .site-footer address span {
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}

.footer-map-card,
body .footer-map-card {
  display: grid !important;
  align-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 280px !important;
  margin: 0 !important;
  padding-left: clamp(22px, 2.6vw, 38px) !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-map-card iframe,
body .footer-map-card iframe {
  display: block !important;
  width: 250px !important;
  max-width: 100% !important;
  height: 150px !important;
  border: 0 !important;
  background: #fff8ec !important;
}

.footer-map-card a,
body .footer-map-card a {
  display: inline-flex !important;
  padding: 0 !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1060px) {
  .site-footer,
  body .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-logo-col,
  body .footer-logo-col {
    justify-self: start !important;
  }
}

@media (max-width: 720px) {
  .site-footer,
  body .site-footer {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 38px 24px !important;
  }

  .footer-logo-col,
  body .footer-logo-col {
    justify-self: center !important;
  }

  .footer-menu,
  .footer-social,
  .footer-contact,
  .footer-map-card,
  body .footer-menu,
  body .footer-social,
  body .footer-contact,
  body .footer-map-card {
    min-height: auto !important;
    max-width: none !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(243, 215, 167, 0.48) !important;
    padding: 22px 0 0 !important;
  }

  .footer-map-card iframe,
  body .footer-map-card iframe {
    width: 100% !important;
    height: 180px !important;
  }
}
/* End override: restore Canastra icon in Canastra section */
.canastra-symbol img,
body .canastra-symbol img {
  width: clamp(190px, 18vw, 270px) !important;
  max-width: 72vw !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18)) !important;
}

.canastra-symbol,
body .canastra-symbol {
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 680px) {
  .canastra-symbol img,
  body .canastra-symbol img {
    width: min(62vw, 230px) !important;
  }
}
/* End override: product cards with buy, cart and view actions */
.cariama-shop-archive .product-card-actions,
.product-card-woocommerce .product-card-actions,
body .cariama-shop-archive .product-card-actions,
body .product-card-woocommerce .product-card-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: auto !important;
}

.cariama-shop-archive .product-card-actions .product-card-price,
.product-card-woocommerce .product-card-actions .product-card-price,
body .cariama-shop-archive .product-card-actions .product-card-price,
body .product-card-woocommerce .product-card-actions .product-card-price {
  grid-column: 1 / -1 !important;
  display: block !important;
  margin: 0 0 4px !important;
  color: #3a2618 !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1 !important;
  text-align: left !important;
}

.cariama-shop-archive .product-card-actions .button,
.product-card-woocommerce .product-card-actions .button,
body .cariama-shop-archive .product-card-actions .button,
body .product-card-woocommerce .product-card-actions .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

.cariama-shop-archive .product-card-actions .product-card-buy-now,
.product-card-woocommerce .product-card-actions .product-card-buy-now,
body .cariama-shop-archive .product-card-actions .product-card-buy-now,
body .product-card-woocommerce .product-card-actions .product-card-buy-now {
  grid-column: 1 / -1 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
}

.cariama-shop-archive .product-card-actions .product-card-add-cart,
.product-card-woocommerce .product-card-actions .product-card-add-cart,
body .cariama-shop-archive .product-card-actions .product-card-add-cart,
body .product-card-woocommerce .product-card-actions .product-card-add-cart {
  background: #f3d7a7 !important;
  color: #005b31 !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
}

.cariama-shop-archive .product-card-actions .product-card-view,
.product-card-woocommerce .product-card-actions .product-card-view,
body .cariama-shop-archive .product-card-actions .product-card-view,
body .product-card-woocommerce .product-card-actions .product-card-view {
  background: transparent !important;
  color: #005b31 !important;
  border: 1px solid rgba(0, 91, 49, 0.28) !important;
}

.cariama-shop-archive .product-card-actions .button:hover,
.product-card-woocommerce .product-card-actions .button:hover,
body .cariama-shop-archive .product-card-actions .button:hover,
body .product-card-woocommerce .product-card-actions .button:hover {
  transform: translateY(-1px) !important;
}

@media (max-width: 560px) {
  .cariama-shop-archive .product-card-actions,
  .product-card-woocommerce .product-card-actions,
  body .cariama-shop-archive .product-card-actions,
  body .product-card-woocommerce .product-card-actions {
    grid-template-columns: 1fr !important;
  }

  .cariama-shop-archive .product-card-actions .product-card-price,
  .cariama-shop-archive .product-card-actions .product-card-buy-now,
  .product-card-woocommerce .product-card-actions .product-card-price,
  .product-card-woocommerce .product-card-actions .product-card-buy-now {
    grid-column: auto !important;
  }
}
/* End override: move shop Cariama watermark left */
.cariama-shop-archive::before,
body .cariama-shop-archive::before {
  right: clamp(110px, 15vw, 260px) !important;
  top: clamp(230px, 23vw, 350px) !important;
  width: clamp(230px, 25vw, 410px) !important;
  height: clamp(340px, 37vw, 580px) !important;
  opacity: 0.1 !important;
}

@media (max-width: 900px) {
  .cariama-shop-archive::before,
  body .cariama-shop-archive::before {
    right: 52px !important;
  }
}
/* End override: require grind selection before buying */
.product-grind-warning,
body .product-grind-warning {
  display: none !important;
  grid-column: 1 / -1 !important;
  margin: -4px 0 4px !important;
  color: #a61d20 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.product-grind-warning.is-visible,
body .product-grind-warning.is-visible {
  display: block !important;
}

.product-buy-panel.needs-grind-selection .product-buy-buttons .button,
.product-buy-buttons .button.is-disabled,
body .product-buy-panel.needs-grind-selection .product-buy-buttons .button,
body .product-buy-buttons .button.is-disabled {
  cursor: not-allowed !important;
  filter: grayscale(0.18) !important;
  opacity: 0.62 !important;
}

.product-buy-panel.needs-grind-selection .product-grind-options,
body .product-buy-panel.needs-grind-selection .product-grind-options {
  border-color: rgba(166, 29, 32, 0.28) !important;
}

.product-buy-panel.shake-selection,
body .product-buy-panel.shake-selection {
  animation: cariama-shake-selection 320ms ease both !important;
}

@keyframes cariama-shake-selection {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
/* End override: premium single product layout */
.single-product main#inicio,
.product-template-default main#inicio {
  background:
    radial-gradient(circle at 15% 16%, rgba(244, 123, 80, 0.1), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(0, 91, 49, 0.08), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ec 100%) !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(420px, 0.95fr) minmax(480px, 1.05fr) !important;
  gap: clamp(44px, 6vw, 92px) !important;
  max-width: 1220px !important;
  padding: clamp(58px, 7vw, 96px) clamp(22px, 5vw, 70px) !important;
  align-items: start !important;
}

.single-product .product-detail-page::before,
.single-product .product-detail-page::after,
.single-product .product-detail-page-copy::before,
.product-template-default .product-detail-page::before,
.product-template-default .product-detail-page::after,
.product-template-default .product-detail-page-copy::before {
  display: none !important;
  content: none !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  position: sticky !important;
  top: 118px !important;
  display: grid !important;
  gap: 18px !important;
  justify-items: center !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 520px) !important;
  aspect-ratio: 1 / 1 !important;
  padding: clamp(18px, 3vw, 38px) !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%) !important;
  box-shadow: 0 24px 58px rgba(81, 53, 31, 0.1) !important;
  overflow: hidden !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img,
.single-product .product-detail-visual img,
.product-template-default .product-detail-visual img {
  width: 100% !important;
  height: 100% !important;
  max-height: 440px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  width: min(100%, 520px) !important;
  margin-top: 0 !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  width: 72px !important;
  height: 72px !important;
  padding: 4px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 6px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

.single-product .product-thumb-button img,
.product-template-default .product-thumb-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.single-product .product-thumb-button.is-active,
.product-template-default .product-thumb-button.is-active {
  border-color: #005b31 !important;
  box-shadow: 0 0 0 2px rgba(0, 91, 49, 0.13) !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  display: grid !important;
  justify-items: start !important;
  gap: 20px !important;
  max-width: 560px !important;
  text-align: left !important;
}

.single-product .product-detail-page-copy .section-kicker,
.product-template-default .product-detail-page-copy .section-kicker {
  color: #b99d77 !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  max-width: 560px !important;
  margin: 0 !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(42px, 4.3vw, 68px) !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.single-product .product-rating-row,
.product-template-default .product-rating-row {
  justify-content: flex-start !important;
  gap: 16px !important;
  width: 100% !important;
}

.single-product .product-rating-row small,
.product-template-default .product-rating-row small {
  color: #005b31 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  display: grid !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-description-copy,
.product-template-default .product-description-copy {
  padding: 18px 20px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(255, 248, 236, 0.88) !important;
}

.single-product .product-description-copy span,
.single-product .product-description-facts span,
.product-template-default .product-description-copy span,
.product-template-default .product-description-facts span {
  display: block !important;
  margin-bottom: 6px !important;
  color: #b99d77 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.single-product .product-description-copy p,
.product-template-default .product-description-copy p {
  margin: 0 !important;
  color: #3a2618 !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  text-align: left !important;
}

.single-product .product-description-facts,
.product-template-default .product-description-facts {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
}

.single-product .product-description-facts div,
.product-template-default .product-description-facts div {
  min-height: 94px !important;
  padding: 16px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.92) !important;
  text-align: left !important;
}

.single-product .product-description-facts div::before,
.product-template-default .product-description-facts div::before {
  display: none !important;
}

.single-product .product-description-facts strong,
.product-template-default .product-description-facts strong {
  display: block !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(20px, 1.8vw, 28px) !important;
  line-height: 0.95 !important;
  text-align: left !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  width: 100% !important;
  margin-top: 8px !important;
  padding: clamp(20px, 2.2vw, 28px) !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(255, 253, 247, 0.94)) !important;
  box-shadow: 0 24px 58px rgba(81, 53, 31, 0.1) !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.13) !important;
}

.single-product .product-buy-main span,
.product-template-default .product-buy-main span {
  color: #b99d77 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
}

.single-product .product-buy-main strong,
.product-template-default .product-buy-main strong {
  color: #3a2618 !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1 !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  display: grid !important;
  grid-template-columns: minmax(100px, 0.36fr) minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: end !important;
}

.single-product .product-grind-options,
.product-template-default .product-grind-options {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.single-product .product-grind-options legend,
.product-template-default .product-grind-options legend {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin: 0 0 2px !important;
  color: #b99d77 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.single-product .product-grind-options label,
.product-template-default .product-grind-options label {
  min-height: 52px !important;
  border-radius: 8px !important;
}

.single-product .product-buy-actions > label input,
.product-template-default .product-buy-actions > label input {
  min-height: 52px !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  min-height: 52px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
}

.single-product .product-continue-link,
.product-template-default .product-continue-link {
  display: inline-flex !important;
  margin-top: 16px !important;
  color: #005b31 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-detail-visual,
  .product-template-default .product-detail-visual {
    position: static !important;
  }

  .single-product .product-detail-page-copy,
  .product-template-default .product-detail-page-copy,
  .single-product .product-detail-page-copy h1,
  .product-template-default .product-detail-page-copy h1 {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    padding: 34px 16px 70px !important;
  }

  .single-product .product-description-facts,
  .product-template-default .product-description-facts,
  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions,
  .single-product .product-buy-buttons,
  .product-template-default .product-buy-buttons {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-buy-main,
  .product-template-default .product-buy-main {
    display: grid !important;
  }
}

/* End override: single product polish v1.1.03 */

/* Cultivation place editorial — v1.1.04 */
.cultivation-place {
  --cultivation-cream: #f4ead9;
  --cultivation-ink: #173f2f;
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 132px) clamp(22px, 6vw, 96px) clamp(88px, 9vw, 148px);
  background:
    radial-gradient(circle at 86% 8%, rgba(244, 123, 80, 0.16), transparent 27%),
    var(--cultivation-cream);
  color: var(--cultivation-ink);
}

.cultivation-place::before {
  position: absolute;
  top: 0;
  right: clamp(22px, 6vw, 96px);
  left: clamp(22px, 6vw, 96px);
  height: 1px;
  background: rgba(0, 91, 49, 0.2);
  content: "";
}

.cultivation-place-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 94px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto clamp(42px, 5vw, 76px);
}

.cultivation-place-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: clamp(-12px, -1vw, -6px);
}

.cultivation-place-intro h2 {
  max-width: 790px;
  margin: 0;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(46px, 6.3vw, 94px);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.cultivation-place-intro p {
  max-width: 520px;
  margin: 0 0 6px;
  color: rgba(23, 63, 47, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.68;
}

.cultivation-landscape {
  position: relative;
  max-width: 1440px;
  min-height: clamp(430px, 58vw, 790px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 48px);
  background: #255440;
  box-shadow: 0 34px 76px rgba(17, 59, 43, 0.2);
}

.cultivation-landscape::after,
.cultivation-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 31, 22, 0.72) 100%);
  pointer-events: none;
  content: "";
}

.cultivation-landscape img,
.cultivation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.24, 1);
}

.cultivation-landscape img {
  position: absolute;
  inset: 0;
}

.cultivation-landscape:hover img,
.cultivation-photo:hover img {
  transform: scale(1.025);
}

.cultivation-landscape figcaption,
.cultivation-photo figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3.5vw, 52px);
  bottom: clamp(22px, 3.5vw, 48px);
  left: clamp(22px, 3.5vw, 52px);
  display: grid;
  gap: 6px;
  color: #fff8ea;
}

.cultivation-landscape figcaption span,
.cultivation-photo figcaption span {
  color: #f3d7a7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cultivation-landscape figcaption strong {
  max-width: 670px;
  font-family: var(--strong-font);
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: 0.92;
  text-transform: uppercase;
}

.cultivation-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(230px, auto) minmax(260px, auto);
  gap: clamp(18px, 2.2vw, 34px);
  max-width: 1240px;
  margin: clamp(28px, 4vw, 58px) auto 0;
}

.cultivation-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2.2vw, 34px);
  background: #255440;
  box-shadow: 0 22px 54px rgba(17, 59, 43, 0.14);
}

.cultivation-photo-rows {
  grid-column: 1 / span 7;
  grid-row: 1;
}

.cultivation-photo-forest {
  grid-column: 8 / -1;
  grid-row: 1 / span 2;
  min-height: 760px;
}

.cultivation-place-copy {
  position: relative;
  grid-column: 1 / span 4;
  grid-row: 2;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: clamp(20px, 2.2vw, 34px);
  padding: clamp(28px, 3.6vw, 52px);
  background: var(--green);
  color: #f3d7a7;
}

.cultivation-index {
  position: absolute;
  top: -22px;
  right: 18px;
  color: rgba(243, 215, 167, 0.1);
  font-family: var(--strong-font);
  font-size: clamp(112px, 14vw, 210px);
  line-height: 1;
}

.cultivation-place-copy h3 {
  position: relative;
  margin: 0 0 16px;
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(35px, 4vw, 58px);
  line-height: 0.94;
  text-transform: uppercase;
}

.cultivation-place-copy p {
  position: relative;
  margin: 0;
  color: rgba(255, 248, 234, 0.84);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.58;
}

.cultivation-photo-plant {
  grid-column: 5 / span 3;
  grid-row: 2;
  min-height: 360px;
}

.cultivation-photo figcaption {
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.cultivation-photo figcaption strong {
  max-width: 430px;
  font-family: var(--strong-font);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.94;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .cultivation-place-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cultivation-place-intro .section-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .cultivation-place-intro p {
    max-width: 720px;
  }

  .cultivation-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .cultivation-photo-rows,
  .cultivation-photo-forest,
  .cultivation-place-copy,
  .cultivation-photo-plant {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .cultivation-photo-rows {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .cultivation-place {
    padding-inline: 18px;
  }

  .cultivation-place::before {
    right: 18px;
    left: 18px;
  }

  .cultivation-place-intro h2 {
    font-size: clamp(42px, 13.6vw, 64px);
  }

  .cultivation-landscape {
    min-height: 520px;
    border-radius: 24px;
  }

  .cultivation-landscape img {
    object-position: 50% center;
  }

  .cultivation-gallery {
    grid-template-columns: 1fr;
  }

  .cultivation-photo-rows,
  .cultivation-photo-forest,
  .cultivation-place-copy,
  .cultivation-photo-plant {
    grid-column: 1;
    min-height: 420px;
  }

  .cultivation-place-copy {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cultivation-landscape img,
  .cultivation-photo img {
    transition: none;
  }
}

/* End cultivation place editorial — v1.1.04 */
.single-product main#inicio,
.product-template-default main#inicio {
  background:
    linear-gradient(110deg, rgba(255, 248, 236, 0.98) 0 58%, rgba(236, 246, 238, 0.92) 58% 100%) !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  max-width: 1240px !important;
  min-height: auto !important;
  margin: 0 auto !important;
  padding: clamp(52px, 7vw, 92px) 28px clamp(70px, 8vw, 104px) !important;
  grid-template-columns: minmax(420px, 0.94fr) minmax(460px, 1fr) !important;
  align-items: start !important;
  gap: clamp(58px, 7vw, 108px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  width: 100% !important;
  max-width: 520px !important;
  margin-left: auto !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  height: clamp(410px, 40vw, 560px) !important;
  padding: 34px !important;
  border: 1px solid rgba(0, 91, 49, 0.13) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 91, 49, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 34px 78px rgba(35, 49, 37, 0.12) !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 28px rgba(58, 38, 24, 0.14)) !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  margin-top: 18px !important;
  justify-content: center !important;
  gap: 14px !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  width: 76px !important;
  height: 76px !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.88) !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  max-width: 580px !important;
  gap: 18px !important;
  align-self: center !important;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  color: #005b31 !important;
  font-size: clamp(48px, 4.7vw, 76px) !important;
  line-height: 0.9 !important;
  max-width: 620px !important;
}

.single-product .product-rating-row,
.product-template-default .product-rating-row {
  margin: 2px 0 6px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.14) !important;
}

.single-product .star-rating,
.product-template-default .star-rating {
  transform: scale(1.12) !important;
  transform-origin: left center !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  gap: 14px !important;
}

.single-product .product-description-copy,
.product-template-default .product-description-copy,
.single-product .product-description-facts div,
.product-template-default .product-description-facts div,
.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  border-color: rgba(0, 91, 49, 0.16) !important;
  background: rgba(255, 253, 247, 0.9) !important;
}

.single-product .product-description-copy,
.product-template-default .product-description-copy {
  padding: 20px 22px !important;
}

.single-product .product-description-copy p,
.product-template-default .product-description-copy p {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.single-product .product-description-facts,
.product-template-default .product-description-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.single-product .product-description-facts div,
.product-template-default .product-description-facts div {
  min-height: 104px !important;
  padding: 18px !important;
}

.single-product .product-description-facts strong,
.product-template-default .product-description-facts strong {
  font-size: clamp(22px, 1.8vw, 30px) !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  margin-top: 4px !important;
  padding: 22px !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  align-items: center !important;
}

.single-product .product-buy-main strong,
.product-template-default .product-buy-main strong {
  font-family: var(--strong-font) !important;
  letter-spacing: 0 !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: 96px minmax(0, 1fr) !important;
}

.single-product .product-grind-warning,
.product-template-default .product-grind-warning {
  grid-column: 1 / -1 !important;
  margin: -4px 0 0 !important;
  color: #b04a2f !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.single-product .product-buy-panel:not(.needs-grind-selection) .product-grind-warning,
.product-template-default .product-buy-panel:not(.needs-grind-selection) .product-grind-warning {
  display: none !important;
}

.single-product .product-buy-buttons .button-primary,
.product-template-default .product-buy-buttons .button-primary {
  background: #f4774f !important;
  color: #fff8ec !important;
}

.single-product .product-buy-buttons .button-secondary,
.product-template-default .product-buy-buttons .button-secondary {
  background: #005b31 !important;
  color: #fff8ec !important;
}

.single-product .product-buy-buttons .button.is-disabled,
.product-template-default .product-buy-buttons .button.is-disabled {
  opacity: 0.52 !important;
  cursor: not-allowed !important;
}

@media (max-width: 980px) {
  .single-product main#inicio,
  .product-template-default main#inicio {
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(236, 246, 238, 0.9)) !important;
  }

  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
    gap: 36px !important;
  }

  .single-product .product-detail-visual,
  .product-template-default .product-detail-visual {
    max-width: 100% !important;
    margin: 0 !important;
  }

  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: clamp(340px, 68vw, 500px) !important;
  }
}

@media (max-width: 640px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    padding: 30px 16px 62px !important;
    gap: 28px !important;
  }

  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: 330px !important;
    padding: 22px !important;
  }

  .single-product .product-detail-page-copy h1,
  .product-template-default .product-detail-page-copy h1 {
    font-size: clamp(38px, 13vw, 52px) !important;
  }

  .single-product .product-detail-thumbs,
  .product-template-default .product-detail-thumbs {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }

  .single-product .product-description-facts,
  .product-template-default .product-description-facts,
  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions,
  .single-product .product-buy-buttons,
  .product-template-default .product-buy-buttons {
    grid-template-columns: 1fr !important;
  }
}
