:root {
  color-scheme: only light;
  --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;
  --body-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);
  -webkit-backdrop-filter: blur(18px);
  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);
  -webkit-backdrop-filter: none;
  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;
  -webkit-backdrop-filter: blur(14px);
  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);
  -webkit-backdrop-filter: blur(12px);
  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("../assets/optimized/cariama-coffee-still-life.webp");
  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("../assets/optimized/cariama-coffee-beans.webp");
  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;
  -webkit-backdrop-filter: blur(8px);
  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;
  }
}

/* Cafeteria carousel editorial refinement — v1.1.103 */
.published-hero-slider [data-hero-region][aria-hidden="true"],
.published-hero-slider [data-hero-cover][aria-hidden="true"],
.published-hero-slider [data-hero-cafeteria][aria-hidden="true"] {
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity 300ms ease, visibility 0s linear 300ms !important;
}

.published-hero-slider [data-hero-region][aria-hidden="false"],
.published-hero-slider [data-hero-cover][aria-hidden="false"],
.published-hero-slider [data-hero-cafeteria][aria-hidden="false"] {
  visibility: visible !important;
}

.published-home .published-hero-slider > img.published-cafeteria-hero-image,
.published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active {
  object-position: 54% 58% !important;
  filter: saturate(1.01) contrast(1.02) brightness(0.98) !important;
}

.published-home .published-hero-slider.is-cafeteria-active::before {
  background:
    linear-gradient(90deg, rgba(8, 42, 26, 0.88) 0%, rgba(8, 42, 26, 0.62) 27%, rgba(8, 42, 26, 0.12) 55%, transparent 76%),
    linear-gradient(180deg, rgba(8, 35, 23, 0.12), transparent 54%, rgba(8, 35, 23, 0.34)) !important;
}

.published-home .published-hero-slider.is-cafeteria-active::after {
  height: 22% !important;
  background: linear-gradient(180deg, transparent, rgba(8, 35, 23, 0.34)) !important;
}

.published-cafeteria-hero {
  display: grid;
  align-items: center;
  padding: clamp(104px, 9vw, 142px) clamp(72px, 8vw, 138px) clamp(78px, 7vw, 108px);
}

.published-cafeteria-hero-panel {
  position: relative;
  width: min(520px, 45vw);
  border-left: 2px solid rgba(243, 215, 167, 0.82);
  padding: clamp(24px, 3vw, 40px) 0 clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px);
}

.published-cafeteria-hero-panel::before {
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 29%;
  background: #f47b50;
  box-shadow: 0 0 22px rgba(244, 123, 80, 0.52);
  content: "";
}

.published-cafeteria-hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.published-cafeteria-hero-kicker::before {
  width: 30px;
  height: 1px;
  background: #f47b50;
  content: "";
}

.published-cafeteria-hero h2 {
  max-width: none;
  margin-bottom: 21px;
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.published-cafeteria-hero-panel > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 248, 234, 0.92);
  font-family: var(--footer-font);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 700;
  line-height: 1.6;
}

.published-cafeteria-hero-points {
  margin: 23px 0 27px;
}

.published-cafeteria-hero-points span {
  border-color: rgba(243, 215, 167, 0.42);
  background: rgba(4, 45, 28, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.published-cafeteria-hero-actions {
  display: flex;
  align-items: center;
  gap: 21px;
}

.published-cafeteria-hero-actions > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f47b50;
  border-radius: 3px;
  padding: 13px 21px;
  background: #f47b50;
  box-shadow: 0 14px 32px rgba(1, 31, 19, 0.25);
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease;
}

.published-cafeteria-hero-actions > a:hover {
  background: #ff8b61;
  transform: translateY(-2px);
}

.published-cafeteria-hero-actions > span {
  display: grid;
  gap: 4px;
}

.published-cafeteria-hero-actions b,
.published-cafeteria-hero-actions small {
  display: block;
  text-transform: uppercase;
}

.published-cafeteria-hero-actions b {
  color: #f3d7a7;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.published-cafeteria-hero-actions small {
  color: rgba(255, 248, 234, 0.67);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.published-cafeteria-hero-stamp {
  top: clamp(108px, 11vw, 158px);
  right: clamp(62px, 7vw, 112px);
  width: clamp(104px, 8vw, 132px);
  border: 1px solid rgba(255, 248, 234, 0.56);
  background: rgba(7, 60, 41, 0.54);
  box-shadow: 0 18px 44px rgba(1, 31, 19, 0.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.published-cafeteria-hero-stamp::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(243, 215, 167, 0.58);
  border-radius: 50%;
  content: "";
}

.published-cafeteria-hero-stamp strong {
  position: relative;
  font-size: clamp(21px, 1.85vw, 28px);
}

@media (max-width: 980px) {
  .published-home .published-hero-slider.is-cafeteria-active::before {
    background:
      linear-gradient(180deg, rgba(7, 43, 27, 0.08) 0%, rgba(7, 43, 27, 0.15) 34%, rgba(7, 43, 27, 0.86) 72%, rgba(7, 43, 27, 0.97) 100%) !important;
  }

  .published-cafeteria-hero {
    display: flex;
    justify-content: flex-end;
    padding: 112px 28px 78px;
  }

  .published-cafeteria-hero-panel {
    width: min(640px, 100%);
    border-left: 0;
    padding: 26px 0 0;
  }

  .published-cafeteria-hero-panel::before {
    top: 0;
    left: 0;
    width: 76px;
    height: 2px;
  }

  .published-cafeteria-hero h2 {
    font-size: clamp(52px, 12vw, 82px);
  }

  .published-cafeteria-hero-stamp {
    top: 92px;
    right: 25px;
    width: 92px;
  }
}

@media (max-width: 620px) {
  .published-home .published-hero-slider > img.published-cafeteria-hero-image,
  .published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active {
    object-position: 63% center !important;
  }

  .published-cafeteria-hero {
    padding: 96px 20px 74px;
  }

  .published-cafeteria-hero-panel {
    padding-top: 19px;
  }

  .published-cafeteria-hero-kicker {
    max-width: 210px;
    margin-bottom: 12px;
    font-size: 8px;
  }

  .published-cafeteria-hero h2 {
    margin-bottom: 12px;
    font-size: clamp(43px, 15vw, 62px);
  }

  .published-cafeteria-hero-panel > p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .published-cafeteria-hero-points {
    margin: 14px 0 17px;
  }

  .published-cafeteria-hero-actions {
    gap: 13px;
  }

  .published-cafeteria-hero-actions > a {
    min-height: 43px;
    padding: 10px 14px;
    font-size: 10px;
  }

  .published-cafeteria-hero-actions small {
    max-width: 96px;
    line-height: 1.35;
  }

  .published-cafeteria-hero-stamp {
    top: 84px;
    right: 17px;
    width: 76px;
  }

  .published-cafeteria-hero-stamp strong {
    font-size: 18px;
  }
}

/* End Cafeteria carousel editorial refinement — v1.1.103 */

/* Nossa Cafeteria story page — v1.1.103 */
.cafeteria-story-page {
  overflow: hidden;
  background: #f7f3e9;
  color: #073c29;
}

.cafeteria-story-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: #073c29;
  color: #fff8ea;
}

.cafeteria-story-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.96) contrast(1.03);
  animation: cafeteria-story-reveal 1600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cafeteria-story-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 45, 29, 0.92), rgba(5, 45, 29, 0.54) 38%, rgba(5, 45, 29, 0.07) 68%),
    linear-gradient(180deg, rgba(4, 31, 21, 0.15), transparent 55%, rgba(4, 31, 21, 0.5));
}

.cafeteria-story-hero-copy {
  position: absolute;
  top: 50%;
  left: clamp(28px, 7vw, 118px);
  z-index: 2;
  width: min(690px, 58vw);
  transform: translateY(-43%);
}

.cafeteria-story-hero-copy > span,
.cafeteria-story-future-copy > span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #f3d7a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.cafeteria-story-hero-copy > span::before,
.cafeteria-story-future-copy > span::before {
  width: 38px;
  height: 2px;
  background: #f47b50;
  content: "";
}

.cafeteria-story-hero-copy h1 {
  margin: 25px 0 26px;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(72px, 8.8vw, 148px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.cafeteria-story-hero-copy p {
  max-width: 590px;
  margin: 0 0 32px;
  color: rgba(255, 248, 234, 0.9);
  font-family: var(--footer-font);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.55;
}

.cafeteria-story-hero-copy a,
.cafeteria-story-future-copy a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f47b50;
  border-radius: 3px;
  padding: 13px 23px;
  background: #f47b50;
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease;
}

.cafeteria-story-hero-copy a:hover,
.cafeteria-story-future-copy a:hover {
  background: #ff8b61;
  transform: translateY(-2px);
}

.cafeteria-story-status {
  position: absolute;
  right: clamp(32px, 6vw, 100px);
  bottom: clamp(64px, 8vw, 118px);
  z-index: 2;
  display: grid;
  width: 210px;
  border-top: 1px solid rgba(243, 215, 167, 0.7);
  gap: 5px;
  padding-top: 16px;
}

.cafeteria-story-status small,
.cafeteria-story-status span {
  color: rgba(255, 248, 234, 0.67);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cafeteria-story-status strong {
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: 24px;
  text-transform: uppercase;
}

.cafeteria-story-scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 48px;
  border: 1px solid rgba(255, 248, 234, 0.52);
  border-radius: 999px;
  place-content: center;
  transform: translateX(-50%);
}

.cafeteria-story-scroll i {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #f3d7a7;
  animation: cafeteria-story-scroll 1500ms ease-in-out infinite;
}

.cafeteria-story-intro {
  position: relative;
  display: grid;
  max-width: 1260px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(110px, 12vw, 190px) clamp(24px, 5vw, 72px);
}

.cafeteria-story-intro-index {
  position: absolute;
  top: 53px;
  right: 4%;
  color: rgba(7, 60, 41, 0.05);
  font-family: var(--strong-font);
  font-size: clamp(150px, 21vw, 330px);
  line-height: 1;
}

.cafeteria-story-intro-heading,
.cafeteria-story-intro-copy {
  position: relative;
  z-index: 1;
}

.cafeteria-story-intro h2,
.cafeteria-story-building-copy h2,
.cafeteria-story-experience h2,
.cafeteria-story-future h2 {
  margin: 18px 0 0;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(48px, 5.7vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.cafeteria-story-intro-copy {
  align-self: end;
  border-left: 1px solid rgba(7, 60, 41, 0.22);
  padding-left: clamp(24px, 4vw, 54px);
}

.cafeteria-story-intro-copy p,
.cafeteria-story-building-copy p,
.cafeteria-story-future-copy p {
  margin: 0 0 20px;
  color: #42554a;
  font-family: var(--footer-font);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 650;
  line-height: 1.7;
}

.cafeteria-story-building {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: auto auto;
  background: #073c29;
  color: #fff8ea;
}

.cafeteria-story-building-wide {
  position: relative;
  min-height: 650px;
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
}

.cafeteria-story-building-wide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 35, 23, 0.72));
  content: "";
}

.cafeteria-story-building-wide img,
.cafeteria-story-building-door img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafeteria-story-building-wide figcaption {
  position: absolute;
  right: clamp(26px, 4vw, 62px);
  bottom: clamp(30px, 5vw, 70px);
  left: clamp(26px, 4vw, 62px);
  z-index: 1;
  display: grid;
  gap: 6px;
}

.cafeteria-story-building-wide figcaption span,
.cafeteria-story-building-copy > span {
  color: #f3d7a7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cafeteria-story-building-wide figcaption strong {
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(28px, 3vw, 48px);
  text-transform: uppercase;
}

.cafeteria-story-building-copy {
  align-self: center;
  padding: clamp(54px, 7vw, 110px) clamp(34px, 6vw, 90px);
}

.cafeteria-story-building-copy h2 {
  color: #fff8ea;
  font-size: clamp(43px, 4.4vw, 68px);
}

.cafeteria-story-building-copy p {
  margin-top: 26px;
  color: rgba(255, 248, 234, 0.76);
}

.cafeteria-story-building-facts {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(243, 215, 167, 0.25);
}

.cafeteria-story-building-facts div {
  display: grid;
  gap: 4px;
  padding: 20px 14px 0 0;
}

.cafeteria-story-building-facts div + div {
  border-left: 1px solid rgba(243, 215, 167, 0.25);
  padding-left: 22px;
}

.cafeteria-story-building-facts b {
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: 24px;
  text-transform: uppercase;
}

.cafeteria-story-building-facts small {
  color: rgba(255, 248, 234, 0.58);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cafeteria-story-building-door {
  position: relative;
  min-height: 400px;
  margin: 0;
  overflow: hidden;
}

.cafeteria-story-building-door figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(255, 248, 234, 0.38);
  padding: 13px 15px;
  background: rgba(5, 45, 29, 0.58);
  color: #fff8ea;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cafeteria-story-experience {
  padding: clamp(105px, 12vw, 180px) clamp(24px, 7vw, 110px);
  background: #f7f3e9;
}

.cafeteria-story-experience-heading {
  max-width: 900px;
  margin: 0 auto clamp(64px, 8vw, 110px);
  text-align: center;
}

.cafeteria-story-values {
  display: grid;
  max-width: 1220px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 60, 41, 0.2);
  border-bottom: 1px solid rgba(7, 60, 41, 0.2);
}

.cafeteria-story-values article {
  min-height: 320px;
  padding: clamp(34px, 4vw, 58px);
}

.cafeteria-story-values article + article {
  border-left: 1px solid rgba(7, 60, 41, 0.2);
}

.cafeteria-story-values span {
  color: #b52932;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.cafeteria-story-values h3 {
  margin: 50px 0 17px;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(38px, 4vw, 62px);
  text-transform: uppercase;
}

.cafeteria-story-values p {
  margin: 0;
  color: #536157;
  font-family: var(--footer-font);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

.cafeteria-story-future {
  position: relative;
  display: grid;
  min-height: 680px;
  place-content: center;
  overflow: hidden;
  padding: 90px 24px;
  background: #f2c985;
  text-align: center;
}

.cafeteria-story-future-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(7, 60, 41, 0.06);
  font-family: var(--strong-font);
  font-size: min(78vw, 900px);
  line-height: 0.7;
  transform: translate(-50%, -47%);
}

.cafeteria-story-future-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.cafeteria-story-future-copy > span {
  justify-content: center;
  color: #7d2b2e;
}

.cafeteria-story-future h2 {
  margin: 25px 0;
}

.cafeteria-story-future-copy p {
  max-width: 630px;
  margin: 0 auto 35px;
  color: #33483c;
}

.cafeteria-story-future-copy > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cafeteria-story-future-copy a + a {
  border-color: #073c29;
  background: transparent;
  color: #073c29;
}

.cafeteria-story-future-copy a + a:hover {
  background: #073c29;
  color: #fff8ea;
}

@keyframes cafeteria-story-reveal {
  from { opacity: 0; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes cafeteria-story-scroll {
  0%, 100% { opacity: 0.35; transform: translateY(-4px); }
  50% { opacity: 1; transform: translateY(4px); }
}

@media (max-width: 900px) {
  .cafeteria-story-hero-shade {
    background: linear-gradient(180deg, rgba(5, 45, 29, 0.15), rgba(5, 45, 29, 0.25) 38%, rgba(5, 45, 29, 0.92) 78%, #052d1d);
  }

  .cafeteria-story-hero-copy {
    top: auto;
    right: 28px;
    bottom: 78px;
    left: 28px;
    width: auto;
    transform: none;
  }

  .cafeteria-story-status {
    top: 110px;
    right: 25px;
    bottom: auto;
    width: 175px;
  }

  .cafeteria-story-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cafeteria-story-intro-copy {
    max-width: 700px;
  }

  .cafeteria-story-building {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cafeteria-story-building-wide {
    min-height: 70vw;
    grid-row: auto;
  }

  .cafeteria-story-building-door {
    min-height: 650px;
  }
}

@media (max-width: 680px) {
  .cafeteria-story-hero {
    min-height: 760px;
  }

  .cafeteria-story-hero > img {
    object-position: 65% center;
  }

  .cafeteria-story-hero-copy {
    right: 20px;
    bottom: 70px;
    left: 20px;
  }

  .cafeteria-story-hero-copy h1 {
    margin: 17px 0;
    font-size: clamp(54px, 17vw, 78px);
  }

  .cafeteria-story-hero-copy p {
    font-size: 16px;
  }

  .cafeteria-story-status {
    top: 92px;
    right: 18px;
    width: 150px;
  }

  .cafeteria-story-status strong {
    font-size: 20px;
  }

  .cafeteria-story-intro {
    padding: 92px 20px;
  }

  .cafeteria-story-intro h2,
  .cafeteria-story-building-copy h2,
  .cafeteria-story-experience h2,
  .cafeteria-story-future h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .cafeteria-story-intro-copy {
    padding-left: 21px;
  }

  .cafeteria-story-building-wide {
    min-height: 540px;
  }

  .cafeteria-story-building-copy {
    padding: 70px 24px;
  }

  .cafeteria-story-building-door {
    min-height: 540px;
  }

  .cafeteria-story-experience {
    padding: 90px 20px;
  }

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

  .cafeteria-story-values article {
    min-height: 0;
    padding: 37px 20px;
  }

  .cafeteria-story-values article + article {
    border-top: 1px solid rgba(7, 60, 41, 0.2);
    border-left: 0;
  }

  .cafeteria-story-values h3 {
    margin-top: 28px;
  }

  .cafeteria-story-future {
    min-height: 620px;
    padding: 80px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cafeteria-story-hero > img,
  .cafeteria-story-scroll i {
    animation: none;
  }
}

/* End Nossa Cafeteria story page — v1.1.103 */

/* Automatic cart quantity refresh - v1.1.101 */
body.woocommerce-cart.cariama-cart-updating .woocommerce-cart-form,
body.woocommerce-cart.cariama-cart-updating .cart-collaterals {
  opacity: 0.68 !important;
  pointer-events: none !important;
  transition: opacity 180ms ease !important;
}

body.woocommerce-cart.cariama-cart-updating .woocommerce-cart-form {
  cursor: progress !important;
}

/* Editable coffee facts - v1.1.81 */
.single-product .product-roots-badges,
.product-template-default .product-roots-badges {
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr)) !important;
  gap: 8px !important;
  border-top: 0 !important;
}

.single-product .product-roots-badges li,
.single-product .product-roots-badges li + li,
.product-template-default .product-roots-badges li,
.product-template-default .product-roots-badges li + li {
  min-width: 0 !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 8px !important;
}

@media (max-width: 760px) {
  .single-product .product-roots-badges,
  .product-template-default .product-roots-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Unified product description - v1.1.82 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  margin: 0 0 18px !important;
  padding: 24px 0 20px !important;
  border: 0 !important;
  border-top: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  display: block !important;
  margin: 0 0 15px !important;
  color: #9b7044 !important;
  font-family: var(--main-font) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.single-product .product-editor-description-copy,
.product-template-default .product-editor-description-copy {
  margin-bottom: 18px !important;
}

.single-product .product-editor-description-copy p,
.product-template-default .product-editor-description-copy p {
  margin: 0 0 10px !important;
  color: #4c443d !important;
  font-family: var(--body-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 28px !important;
  margin: 0 !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  display: grid !important;
  grid-template-columns: minmax(92px, 0.7fr) minmax(0, 1.3fr) !important;
  align-items: baseline !important;
  gap: 12px !important;
  min-width: 0 !important;
  padding: 11px 0 !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.1) !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  margin: 0 !important;
  color: #a27c54 !important;
  font-family: var(--main-font) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  min-width: 0 !important;
  margin: 0 !important;
  color: #006b3f !important;
  font-family: var(--strong-font) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 760px) {
  .single-product .product-editor-description,
  .product-template-default .product-editor-description {
    padding: 20px 0 16px !important;
  }

  .single-product .product-details-list,
  .product-template-default .product-details-list {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    grid-template-columns: 96px minmax(0, 1fr) !important;
  }
}

/* Cariama wave dividers for product facts - v1.1.82 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  position: relative !important;
  padding-bottom: 17px !important;
}

.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 7px !important;
  background: url("../artes/underscore.png") left center / 58px auto repeat-x !important;
  content: "" !important;
  opacity: 0.68 !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  position: relative !important;
  padding: 14px 0 21px !important;
  border-bottom: 0 !important;
}

.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 7px !important;
  left: 0 !important;
  height: 6px !important;
  background: url("../artes/underscore.png") left center / 48px auto repeat-x !important;
  content: "" !important;
  opacity: 0.46 !important;
}

/* 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); }
}

/* Shop cleanup: remove the oversized Cariama watermark behind products. */
.cariama-shop-archive::before,
body .cariama-shop-archive::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Purchase journey: product choices, shipping, cart and payment. */
.cariama-commerce-lead {
  max-width: 720px !important;
  margin: -12px 0 24px !important;
  color: #4c6f5b !important;
  font-size: clamp(16px, 1.5vw, 19px) !important;
  line-height: 1.55 !important;
}

.cariama-commerce-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: min(760px, 100%) !important;
  margin: 0 0 clamp(28px, 4vw, 44px) !important;
  padding: 0 !important;
  list-style: none !important;
}

.cariama-commerce-steps li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  color: rgba(0, 91, 49, 0.52) !important;
}

.cariama-commerce-steps li:not(:last-child)::after {
  position: absolute !important;
  top: 18px !important;
  right: 8px !important;
  left: 48px !important;
  height: 1px !important;
  background: rgba(0, 91, 49, 0.2) !important;
  content: "" !important;
}

.cariama-commerce-steps span {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  border-radius: 50% !important;
  background: #fff8ec !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.cariama-commerce-steps strong {
  position: relative !important;
  z-index: 1 !important;
  padding-right: 10px !important;
  background: #fff8ec !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.cariama-commerce-steps .is-active,
.cariama-commerce-steps .is-complete {
  color: #005b31 !important;
}

.cariama-commerce-steps .is-active span {
  border-color: #f4774f !important;
  background: #f4774f !important;
  color: #fff8ec !important;
  box-shadow: 0 8px 20px rgba(244, 119, 79, 0.2) !important;
}

.cariama-commerce-steps .is-complete span {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
}

.single-product .product-grind-options legend strong,
.product-template-default .product-grind-options legend strong {
  display: inline-flex !important;
  margin-left: 8px !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  background: rgba(244, 119, 79, 0.12) !important;
  color: #b04a2f !important;
  font-family: inherit !important;
  font-size: 10px !important;
  letter-spacing: 0.06em !important;
  vertical-align: middle !important;
}

.single-product .product-grind-options label,
.product-template-default .product-grind-options label {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border: 1px solid rgba(0, 91, 49, 0.2) !important;
  background: #fffdf7 !important;
  color: #005b31 !important;
  font-weight: 900 !important;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease !important;
}

.single-product .product-grind-options label:hover,
.product-template-default .product-grind-options label:hover {
  transform: translateY(-1px) !important;
  border-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: #fff8ec !important;
  box-shadow: 0 10px 24px rgba(0, 91, 49, 0.16) !important;
}

.single-product .product-grind-options input,
.product-template-default .product-grind-options input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.single-product .product-grind-options label:focus-within,
.product-template-default .product-grind-options label:focus-within {
  outline: 3px solid rgba(244, 119, 79, 0.28) !important;
  outline-offset: 2px !important;
}

.product-quantity-control {
  display: grid !important;
  gap: 7px !important;
}

.product-quantity-control > span,
.product-shipping-calculator > label {
  color: #b99d77 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

.product-quantity-control > div {
  display: grid !important;
  grid-template-columns: 42px minmax(50px, 1fr) 42px !important;
  min-height: 52px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
}

.product-quantity-control button,
.product-quantity-control input {
  min-width: 0 !important;
  min-height: 50px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #005b31 !important;
  font-weight: 900 !important;
  text-align: center !important;
}

.product-quantity-control button {
  cursor: pointer !important;
  font-size: 20px !important;
}

.product-quantity-control button:hover {
  background: rgba(0, 91, 49, 0.08) !important;
}

.product-quantity-control input {
  border-right: 1px solid rgba(0, 91, 49, 0.12) !important;
  border-left: 1px solid rgba(0, 91, 49, 0.12) !important;
  appearance: textfield !important;
}

.product-shipping-calculator {
  grid-column: 2 !important;
  display: grid !important;
  gap: 7px !important;
}

.product-shipping-calculator > div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  min-height: 52px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
}

.product-shipping-calculator input {
  min-width: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  background: transparent !important;
  color: #3a2618 !important;
  font-size: 14px !important;
  outline: 0 !important;
}

.product-shipping-calculator button {
  padding: 0 18px !important;
  cursor: pointer !important;
  border: 0 !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.product-shipping-calculator button:hover {
  background: #e8c482 !important;
}

.product-shipping-result {
  grid-column: 1 / -1 !important;
  display: grid !important;
  gap: 6px !important;
  min-height: 20px !important;
  margin: 0 !important;
  color: #4c6f5b !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.product-shipping-result > span {
  display: flex !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 8px 10px !important;
  border-radius: 6px !important;
  background: rgba(0, 91, 49, 0.06) !important;
}

.product-shipping-result b {
  color: #005b31 !important;
  white-space: nowrap !important;
}

.product-shipping-result.is-loading {
  color: #005b31 !important;
}

.product-shipping-result.is-error {
  color: #a61d20 !important;
  font-weight: 800 !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  grid-column: 1 / -1 !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease !important;
}

.single-product .product-buy-buttons .button:not(.is-disabled):hover,
.product-template-default .product-buy-buttons .button:not(.is-disabled):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(0, 91, 49, 0.14) !important;
}

.cariama-payment-heading {
  margin: 22px 0 12px !important;
  padding: 20px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-left: 4px solid #f4774f !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
}

.cariama-payment-heading span {
  color: #f4774f !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.cariama-payment-heading h2 {
  margin: 6px 0 8px !important;
  color: #005b31 !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1 !important;
}

.cariama-payment-heading p {
  margin: 0 !important;
  color: #4c6f5b !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.woocommerce-checkout #payment ul.payment_methods li:has(input:checked),
body.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
  border-color: #005b31 !important;
  box-shadow: 0 0 0 2px rgba(0, 91, 49, 0.1) !important;
}

.woocommerce-checkout #payment ul.payment_methods li > label img,
body.woocommerce-checkout #payment ul.payment_methods li > label img {
  width: auto !important;
  max-width: 150px !important;
  max-height: 28px !important;
  margin-left: auto !important;
  object-fit: contain !important;
}

.woocommerce-checkout #payment .payment_box input,
.woocommerce-checkout #payment .payment_box select {
  min-height: 46px !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #3a2618 !important;
}

.woocommerce-checkout #payment .payment_box label {
  color: #005b31 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.woocommerce-cart ul#shipping_method,
.woocommerce-checkout ul#shipping_method {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce-cart ul#shipping_method li,
.woocommerce-checkout ul#shipping_method li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: start !important;
  margin: 0 !important;
  color: #3a2618 !important;
  line-height: 1.4 !important;
}

.woocommerce-cart ul#shipping_method input,
.woocommerce-checkout ul#shipping_method input {
  margin: 3px 0 0 !important;
  accent-color: #005b31 !important;
}

.woocommerce-cart .shipping-calculator-button,
.woocommerce-checkout .shipping-calculator-button {
  color: #005b31 !important;
  font-weight: 900 !important;
}

@media (max-width: 640px) {
  .cariama-commerce-steps {
    gap: 8px !important;
  }

  .cariama-commerce-steps li {
    display: grid !important;
    justify-items: center !important;
    gap: 6px !important;
    text-align: center !important;
  }

  .cariama-commerce-steps li::after {
    display: none !important;
  }

  .cariama-commerce-steps strong {
    padding: 0 !important;
    font-size: 10px !important;
  }

  .product-shipping-calculator {
    grid-column: 1 !important;
  }

  .product-shipping-calculator > div {
    grid-template-columns: 1fr !important;
  }

  .product-shipping-calculator input,
  .product-shipping-calculator button {
    min-height: 48px !important;
  }

  .product-shipping-calculator button {
    border-top: 1px solid rgba(0, 91, 49, 0.14) !important;
  }

  .woocommerce-checkout #payment ul.payment_methods,
  body.woocommerce-checkout #payment ul.payment_methods {
    padding: 10px !important;
  }

  .woocommerce-checkout #payment ul.payment_methods li,
  body.woocommerce-checkout #payment ul.payment_methods li {
    padding: 14px 12px 14px 42px !important;
  }

  .woocommerce-checkout #payment ul.payment_methods li > label,
  body.woocommerce-checkout #payment ul.payment_methods li > label {
    flex-wrap: wrap !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-product .product-grind-options label,
  .product-template-default .product-grind-options label,
  .single-product .product-buy-buttons .button,
  .product-template-default .product-buy-buttons .button {
    transition: none !important;
  }
}
/* 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 */

/* A Cafeteria home section — v1.1.06 */
.published-cafeteria {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 104px;
  padding: clamp(84px, 9vw, 146px) clamp(22px, 7vw, 112px);
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 123, 80, 0.16), transparent 26%),
    #f4ead9;
  color: var(--green);
}

.published-cafeteria::before {
  position: absolute;
  right: -140px;
  bottom: -210px;
  width: min(580px, 42vw);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 91, 49, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(0, 91, 49, 0.035),
    0 0 0 96px rgba(0, 91, 49, 0.025);
  content: "";
}

.published-cafeteria-copy,
.published-cafeteria-visual {
  position: relative;
  z-index: 1;
}

.published-cafeteria-copy {
  max-width: 680px;
}

.published-cafeteria-copy .section-kicker {
  display: inline-flex;
  margin-bottom: 20px;
}

.published-cafeteria-copy h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.82;
  text-transform: uppercase;
}

.published-cafeteria-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(0, 91, 49, 0.78);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}

.published-cafeteria-copy > p + p {
  margin-top: 16px;
}

.published-cafeteria-copy .published-cafeteria-lead {
  color: var(--green);
  font-family: var(--footer-font);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.32;
}

.published-cafeteria-purpose {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(32px, 4vw, 54px) 0 34px;
}

.published-cafeteria-purpose article {
  min-height: 178px;
  border-top: 2px solid rgba(0, 91, 49, 0.28);
  padding: 17px 10px 0 0;
}

.published-cafeteria-purpose article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.published-cafeteria-purpose strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1;
  text-transform: uppercase;
}

.published-cafeteria-purpose p {
  margin: 0;
  color: rgba(0, 91, 49, 0.7);
  font-size: 14px;
  line-height: 1.48;
}

.published-cafeteria-link {
  display: inline-flex;
}

.published-cafeteria-visual {
  min-height: clamp(600px, 57vw, 790px);
}

.published-cafeteria-main,
.published-cafeteria-detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #214b39;
  box-shadow: 0 30px 72px rgba(17, 59, 43, 0.2);
}

.published-cafeteria-main {
  inset: 0 0 54px 10%;
  border-radius: clamp(28px, 4vw, 56px);
}

.published-cafeteria-main::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 30, 22, 0.76));
  pointer-events: none;
  content: "";
}

.published-cafeteria-main img,
.published-cafeteria-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.72, 0.24, 1);
}

.published-cafeteria-main img {
  object-position: 54% center;
}

.published-cafeteria-main:hover img,
.published-cafeteria-detail:hover img {
  transform: scale(1.035);
}

.published-cafeteria-main figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 54px);
  left: clamp(24px, 4vw, 56px);
  display: grid;
  gap: 7px;
  color: #fff8ea;
}

.published-cafeteria-main figcaption span {
  color: #f3d7a7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.published-cafeteria-main figcaption strong {
  max-width: 550px;
  font-family: var(--strong-font);
  font-size: clamp(35px, 4vw, 59px);
  line-height: 0.92;
  text-transform: uppercase;
}

.published-cafeteria-detail {
  bottom: 0;
  left: 0;
  z-index: 3;
  width: clamp(145px, 17vw, 235px);
  aspect-ratio: 0.72;
  border: clamp(8px, 1vw, 14px) solid #f4ead9;
  border-radius: 90px 90px 22px 22px;
}

.published-cafeteria-detail img {
  object-position: center;
}

.published-cafeteria-stamp {
  position: absolute;
  top: clamp(26px, 4vw, 58px);
  right: clamp(-22px, -1vw, -10px);
  z-index: 4;
  display: grid;
  width: clamp(118px, 11vw, 158px);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(243, 215, 167, 0.65);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 18px 38px rgba(17, 59, 43, 0.18);
  color: #fff8ea;
  text-align: center;
  transform: rotate(6deg);
}

.published-cafeteria-stamp span,
.published-cafeteria-stamp strong {
  display: block;
  text-transform: uppercase;
}

.published-cafeteria-stamp span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.published-cafeteria-stamp strong {
  font-family: var(--strong-font);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.9;
}

@media (max-width: 980px) {
  .published-cafeteria {
    grid-template-columns: 1fr;
  }

  .published-cafeteria-copy {
    max-width: 780px;
  }

  .published-cafeteria-visual {
    min-height: 720px;
  }
}

@media (max-width: 640px) {
  .published-cafeteria {
    gap: 52px;
    padding-inline: 18px;
  }

  .published-cafeteria-copy h2 {
    font-size: clamp(56px, 19vw, 82px);
  }

  .published-cafeteria-purpose {
    grid-template-columns: 1fr;
  }

  .published-cafeteria-purpose article {
    min-height: 0;
    padding-bottom: 8px;
  }

  .published-cafeteria-purpose article > span {
    margin-bottom: 10px;
  }

  .published-cafeteria-visual {
    min-height: 590px;
  }

  .published-cafeteria-main {
    inset: 0 0 42px;
  }

  .published-cafeteria-detail {
    width: 138px;
  }

  .published-cafeteria-stamp {
    top: 20px;
    right: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .published-cafeteria-main img,
  .published-cafeteria-detail img {
    transition: none;
  }
}

/* End A Cafeteria home section — v1.1.06 */
.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;
  }
}

/* Região Da Serra Da Canastra editorial band — v1.1.07 */
.canastra-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(330px, 0.9fr) minmax(420px, 1.15fr);
  gap: clamp(34px, 4.2vw, 76px);
  align-items: center;
  overflow: hidden;
  min-height: 720px;
  padding: clamp(72px, 7vw, 112px) clamp(24px, 6vw, 96px);
  background:
    radial-gradient(circle at 4% 12%, rgba(63, 126, 81, 0.44), transparent 27%),
    radial-gradient(circle at 100% 0%, rgba(243, 215, 167, 0.11), transparent 23%),
    linear-gradient(118deg, #006139 0%, #004b2d 58%, #123e2d 100%);
  color: #f3d7a7;
}

.canastra-band::before {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(243, 215, 167, 0.07);
  content: "";
}

.canastra-band::after {
  position: absolute;
  bottom: 0;
  left: clamp(24px, 6vw, 96px);
  width: 34%;
  height: 1px;
  background: rgba(243, 215, 167, 0.28);
  content: "";
}

.canastra-symbol,
.canastra-text,
.canastra-photo-story {
  position: relative;
  z-index: 1;
}

.canastra-symbol {
  display: grid;
  gap: 22px;
  justify-items: start;
  align-content: center;
}

.canastra-symbol > span {
  color: rgba(243, 215, 167, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.canastra-symbol img {
  width: clamp(88px, 8vw, 126px);
  border: 1px solid rgba(243, 215, 167, 0.38);
  border-radius: 50%;
  padding: 8px;
  background: #fffaf0;
  box-shadow: 0 18px 42px rgba(5, 36, 24, 0.22);
}

.canastra-symbol h2 {
  max-width: 300px;
  margin: 4px 0 0;
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(43px, 4.2vw, 68px);
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

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

.canastra-eyebrow {
  display: block;
  margin-bottom: 24px;
  color: #f47b50;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.canastra-text p {
  margin: 0;
  color: rgba(255, 248, 234, 0.88);
  font-size: clamp(16px, 1.16vw, 19px);
  font-weight: 600;
  line-height: 1.7;
}

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

.canastra-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.canastra-highlights span {
  border: 1px solid rgba(243, 215, 167, 0.36);
  border-radius: 999px;
  padding: 9px 13px;
  color: #f3d7a7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.canastra-photo-story {
  min-height: clamp(500px, 42vw, 610px);
}

.canastra-photo-main,
.canastra-photo-detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #1b4634;
  box-shadow: 0 28px 62px rgba(4, 30, 20, 0.28);
}

.canastra-photo-main {
  inset: 0 44px 42px 0;
  border-radius: clamp(26px, 3vw, 48px);
}

.canastra-photo-main::after,
.canastra-photo-detail::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 29, 20, 0.72));
  pointer-events: none;
  content: "";
}

.canastra-photo-main img,
.canastra-photo-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.72, 0.24, 1);
}

.canastra-photo-main:hover img,
.canastra-photo-detail:hover img {
  transform: scale(1.035);
}

.canastra-photo-main figcaption,
.canastra-photo-detail figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #fff8ea;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.canastra-photo-detail {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 42%;
  height: 46%;
  border: 10px solid #075337;
  border-radius: 110px 110px 24px 24px;
}

.canastra-photo-detail img {
  object-position: 52% center;
}

@media (max-width: 1180px) {
  .canastra-band {
    grid-template-columns: minmax(210px, 0.6fr) minmax(310px, 1fr);
  }

  .canastra-photo-story {
    grid-column: 1 / -1;
    min-height: 620px;
  }

  .canastra-photo-main {
    right: 70px;
  }

  .canastra-photo-detail {
    width: 34%;
  }
}

@media (max-width: 720px) {
  .canastra-band {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-inline: 20px;
  }

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

  .canastra-symbol h2 {
    max-width: 420px;
  }

  .canastra-text {
    max-width: 100%;
  }

  .canastra-photo-story {
    grid-column: auto;
    min-height: 520px;
  }

  .canastra-photo-main {
    inset: 0 0 72px;
  }

  .canastra-photo-detail {
    right: 14px;
    width: 46%;
    height: 42%;
    border-width: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .canastra-photo-main img,
  .canastra-photo-detail img {
    transition: none;
  }
}

/* End Região Da Serra Da Canastra editorial band — v1.1.07 */

/* A Cafeteria in the opening carousel — v1.1.08 */
.published-home .published-hero-slider > img.published-cafeteria-hero-image,
body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image,
body.front-page .published-home .published-hero-slider > img.published-cafeteria-hero-image,
body.page-template-front-page .published-home .published-hero-slider > img.published-cafeteria-hero-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: 58% center !important;
  opacity: 0 !important;
  filter: saturate(0.88) contrast(1.05) brightness(0.88) !important;
  transform: scale(1.045) !important;
}

.published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active,
body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active,
body.front-page .published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active,
body.page-template-front-page .published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active {
  opacity: 1 !important;
  filter: saturate(0.94) contrast(1.05) brightness(0.9) !important;
  transform: scale(1) !important;
}

.published-home .published-hero-slider.is-cafeteria-active,
body.home .published-home .published-hero-slider.is-cafeteria-active,
body.front-page .published-home .published-hero-slider.is-cafeteria-active,
body.page-template-front-page .published-home .published-hero-slider.is-cafeteria-active {
  background: #073c29 !important;
}

.published-home .published-hero-slider.is-cafeteria-active::before,
body.home .published-home .published-hero-slider.is-cafeteria-active::before,
body.front-page .published-home .published-hero-slider.is-cafeteria-active::before,
body.page-template-front-page .published-home .published-hero-slider.is-cafeteria-active::before {
  inset: 0 !important;
  z-index: 2 !important;
  background:
    linear-gradient(90deg, rgba(2, 49, 31, 0.98) 0%, rgba(2, 58, 36, 0.94) 31%, rgba(2, 55, 35, 0.68) 48%, rgba(2, 48, 31, 0.14) 72%, transparent 100%),
    linear-gradient(180deg, rgba(2, 38, 25, 0.1), rgba(2, 38, 25, 0.42)) !important;
  opacity: 1 !important;
  transform: none !important;
}

.published-home .published-hero-slider.is-cafeteria-active::after,
body.home .published-home .published-hero-slider.is-cafeteria-active::after,
body.front-page .published-home .published-hero-slider.is-cafeteria-active::after,
body.page-template-front-page .published-home .published-hero-slider.is-cafeteria-active::after {
  inset: auto 0 0 !important;
  z-index: 2 !important;
  height: 32% !important;
  background: linear-gradient(180deg, transparent, rgba(2, 34, 22, 0.5)) !important;
  opacity: 1 !important;
}

.published-cafeteria-hero {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(112px, 10vw, 164px) clamp(58px, 7vw, 124px) clamp(68px, 7vw, 108px);
  color: #fff8ea;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.published-cafeteria-hero.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.published-cafeteria-hero-kicker {
  max-width: 570px;
  margin-bottom: clamp(15px, 1.5vw, 23px);
  color: #f3d7a7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.published-cafeteria-hero h2 {
  max-width: 620px;
  margin: 0 0 clamp(20px, 2.2vw, 32px);
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(68px, 8vw, 126px);
  line-height: 0.8;
  text-shadow: 0 12px 42px rgba(0, 34, 20, 0.3);
  text-transform: uppercase;
}

.published-cafeteria-hero > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 248, 234, 0.9);
  font-family: var(--footer-font);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.52;
}

.published-cafeteria-hero-points {
  display: flex;
  max-width: 570px;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(25px, 3vw, 40px) 0 30px;
}

.published-cafeteria-hero-points span {
  border: 1px solid rgba(243, 215, 167, 0.56);
  border-radius: 999px;
  padding: 9px 15px;
  color: #f3d7a7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.published-cafeteria-hero > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 13px 22px;
  background: #f47b50;
  box-shadow: 0 16px 34px rgba(1, 31, 19, 0.28);
  color: #fff8ea;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}

.published-cafeteria-hero > a:hover {
  background: #ff8b61;
  transform: translateY(-3px);
}

.published-cafeteria-hero-stamp {
  position: absolute;
  top: clamp(120px, 15vw, 220px);
  right: clamp(46px, 6vw, 106px);
  display: grid;
  width: clamp(120px, 10vw, 166px);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 248, 234, 0.72);
  border-radius: 50%;
  background: #f47b50;
  box-shadow: 0 22px 52px rgba(1, 31, 19, 0.3);
  text-align: center;
  transform: rotate(7deg);
}

.published-cafeteria-hero-stamp small,
.published-cafeteria-hero-stamp strong {
  display: block;
  color: #fff8ea;
  text-transform: uppercase;
}

.published-cafeteria-hero-stamp small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.published-cafeteria-hero-stamp strong {
  font-family: var(--strong-font);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 0.88;
}

@media (max-width: 980px) {
  .published-home .published-hero-slider.is-cafeteria-active::before,
  body.home .published-home .published-hero-slider.is-cafeteria-active::before,
  body.front-page .published-home .published-hero-slider.is-cafeteria-active::before,
  body.page-template-front-page .published-home .published-hero-slider.is-cafeteria-active::before {
    background:
      linear-gradient(180deg, rgba(2, 44, 28, 0.38) 0%, rgba(2, 47, 30, 0.46) 32%, rgba(2, 50, 31, 0.94) 70%, rgba(2, 45, 29, 0.99) 100%) !important;
  }

  .published-home .published-hero-slider > img.published-cafeteria-hero-image,
  body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image,
  body.front-page .published-home .published-hero-slider > img.published-cafeteria-hero-image,
  body.page-template-front-page .published-home .published-hero-slider > img.published-cafeteria-hero-image {
    object-position: 61% center !important;
  }

  .published-cafeteria-hero {
    justify-content: flex-end;
    padding: 118px 24px 82px;
  }

  .published-cafeteria-hero h2 {
    font-size: clamp(58px, 15vw, 92px);
  }

  .published-cafeteria-hero > p {
    max-width: 620px;
    font-size: 16px;
  }

  .published-cafeteria-hero-stamp {
    top: 104px;
    right: 24px;
    width: 108px;
  }
}

@media (max-width: 620px) {
  .published-cafeteria-hero {
    padding: 108px 20px 86px;
  }

  .published-cafeteria-hero-kicker {
    max-width: 230px;
    font-size: 9px;
  }

  .published-cafeteria-hero h2 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(52px, 18vw, 76px);
  }

  .published-cafeteria-hero > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .published-cafeteria-hero-points {
    gap: 7px;
    margin: 20px 0 23px;
  }

  .published-cafeteria-hero-points span {
    padding: 7px 10px;
    font-size: 9px;
  }

  .published-cafeteria-hero > a {
    width: auto;
    min-height: 44px;
    padding: 11px 16px;
  }

  .published-cafeteria-hero-stamp {
    top: 96px;
    right: 18px;
    width: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .published-cafeteria-hero {
    transition: opacity 180ms ease;
  }
}

/* End A Cafeteria in the opening carousel — v1.1.08 */

/* A Cariama immersive identity — v1.1.09 */
.site-scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  background: rgba(243, 215, 167, 0.16);
  pointer-events: none;
}

.site-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f47b50, #f3d7a7);
  box-shadow: 0 0 16px rgba(244, 123, 80, 0.48);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.cariama-identity-header.site-header,
.cariama-identity-header.site-header:not(.is-scrolled):not(.is-open) {
  border-bottom-color: rgba(243, 215, 167, 0.16) !important;
  background: linear-gradient(180deg, rgba(30, 33, 23, 0.8), rgba(30, 33, 23, 0.1)) !important;
  box-shadow: none !important;
  color: #f3d7a7 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.cariama-identity-header.site-header.is-scrolled {
  border-bottom-color: rgba(243, 215, 167, 0.12) !important;
  background: rgba(0, 79, 46, 0.94) !important;
  box-shadow: 0 16px 42px rgba(0, 32, 19, 0.18) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
}

.cariama-identity-header .site-nav a,
.cariama-identity-header .brand strong,
.cariama-identity-header .brand small {
  color: #f3d7a7 !important;
}

.cariama-identity-header .header-icon-link img {
  filter: brightness(0) invert(1) sepia(0.16) !important;
}

.cariama-experience {
  overflow: hidden;
  background: #f4ead9;
}

.cariama-identity-hero {
  --cariama-pointer-x: 0px;
  --cariama-pointer-y: 0px;
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: clamp(132px, 13vw, 204px) clamp(24px, 7vw, 118px) clamp(112px, 10vw, 158px);
  background: #063c29;
  color: #fff8ea;
}

.cariama-identity-hero::before,
.cariama-identity-hero::after {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(243, 215, 167, 0.18);
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.cariama-identity-hero::before {
  top: -220px;
  right: -160px;
  width: min(660px, 48vw);
  aspect-ratio: 1;
  box-shadow:
    0 0 0 54px rgba(243, 215, 167, 0.025),
    0 0 0 108px rgba(243, 215, 167, 0.018);
}

.cariama-identity-hero::after {
  bottom: -160px;
  left: 42%;
  width: 360px;
  aspect-ratio: 0.64;
  border-radius: 56% 44% 58% 42% / 48% 52% 42% 58%;
  background: rgba(244, 123, 80, 0.06);
  transform: rotate(34deg);
}

.cariama-identity-hero-image {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03) brightness(0.98);
  transform: translate3d(var(--cariama-pointer-x), var(--cariama-pointer-y), 0) scale(1.035);
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.24, 1);
}

.cariama-identity-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(25, 35, 23, 0.9) 0%, rgba(31, 40, 25, 0.77) 31%, rgba(38, 43, 26, 0.42) 53%, rgba(38, 39, 24, 0.08) 76%, rgba(34, 34, 22, 0.2) 100%),
    linear-gradient(180deg, rgba(38, 31, 21, 0.06), rgba(28, 31, 21, 0.34));
}

.cariama-identity-content {
  position: relative;
  z-index: 3;
  width: min(770px, 61vw);
}

.cariama-identity-logo {
  width: clamp(116px, 9.5vw, 164px);
  aspect-ratio: 1;
  margin-bottom: clamp(24px, 2.6vw, 38px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(24, 14, 8, 0.3));
  transition:
    filter 360ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cariama-identity-logo:hover {
  filter: drop-shadow(0 24px 38px rgba(24, 14, 8, 0.4));
  transform: translateY(-4px) rotate(-2deg);
}

.cariama-identity-kicker {
  display: block;
  margin-bottom: 16px;
  color: #f3d7a7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cariama-identity-content h1 {
  margin: 0;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(92px, 12.4vw, 192px);
  line-height: 0.72;
  letter-spacing: -0.035em;
  text-shadow: 0 22px 52px rgba(0, 28, 17, 0.32);
  text-transform: uppercase;
}

.cariama-identity-content h1 span {
  display: block;
  margin: 0 0 14px 0.08em;
  color: #f47b50;
  font-family: var(--footer-font);
  font-size: 0.18em;
  font-weight: 900;
  letter-spacing: 0.32em;
  line-height: 1;
}

.cariama-identity-content > p {
  max-width: 640px;
  margin: clamp(30px, 4vw, 54px) 0 0;
  color: rgba(255, 248, 234, 0.9);
  font-family: var(--footer-font);
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.5;
}

.cariama-identity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  margin-top: clamp(30px, 4vw, 48px);
}

.cariama-identity-store {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(243, 215, 167, 0.52);
  padding: 8px 0;
  color: #f3d7a7;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    gap 0.28s ease,
    color 0.28s ease;
}

.cariama-identity-store:hover {
  gap: 18px;
  color: #fff8ea;
}

.cariama-identity-facts {
  position: absolute;
  right: clamp(28px, 6vw, 104px);
  bottom: clamp(76px, 8vw, 124px);
  z-index: 3;
  display: grid;
  width: min(470px, 32vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(243, 215, 167, 0.26);
  border-radius: 22px;
  background: rgba(2, 52, 32, 0.54);
  box-shadow: 0 24px 60px rgba(0, 26, 16, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.cariama-identity-facts div {
  min-height: 116px;
  padding: 24px 18px;
}

.cariama-identity-facts div + div {
  border-left: 1px solid rgba(243, 215, 167, 0.2);
}

.cariama-identity-facts strong,
.cariama-identity-facts span {
  display: block;
}

.cariama-identity-facts strong {
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.9;
  text-transform: uppercase;
}

.cariama-identity-facts span {
  margin-top: 8px;
  color: rgba(255, 248, 234, 0.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.cariama-scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 9px;
  justify-items: center;
  color: rgba(255, 248, 234, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.cariama-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(243, 215, 167, 0.28);
}

.cariama-scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: #f3d7a7;
  content: "";
  animation: cariama-scroll-line 2s ease-in-out infinite;
  transform: translateY(-100%);
}

.cariama-journey {
  position: relative;
  padding: clamp(94px, 10vw, 168px) clamp(22px, 7vw, 112px) clamp(100px, 11vw, 176px);
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 123, 80, 0.14), transparent 24%),
    linear-gradient(180deg, #f4ead9, #f8f0e2);
  color: var(--green);
}

.cariama-journey::before {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 360px;
  aspect-ratio: 0.66;
  border: 1px solid rgba(0, 91, 49, 0.08);
  border-radius: 56% 44% 54% 46% / 52% 48% 42% 58%;
  content: "";
  transform: rotate(28deg);
}

.cariama-journey-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(280px, 0.48fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: end;
  max-width: 1260px;
  margin: 0 auto clamp(52px, 7vw, 94px);
}

.cariama-journey-heading .section-kicker {
  grid-column: 1 / -1;
}

.cariama-journey-heading h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: 0.84;
  text-transform: uppercase;
  text-wrap: balance;
}

.cariama-journey-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: rgba(0, 91, 49, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.68;
}

.cariama-chapter-tabs {
  display: grid;
  max-width: 1260px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid rgba(0, 91, 49, 0.2);
  border-bottom: 1px solid rgba(0, 91, 49, 0.2);
}

.cariama-chapter-tabs button {
  position: relative;
  display: flex;
  min-height: 112px;
  gap: 16px;
  align-items: center;
  border: 0;
  padding: 22px clamp(12px, 2vw, 28px);
  background: transparent;
  color: rgba(0, 91, 49, 0.55);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background 0.32s ease,
    color 0.32s ease;
}

.cariama-chapter-tabs button + button {
  border-left: 1px solid rgba(0, 91, 49, 0.16);
}

.cariama-chapter-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: #f47b50;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.cariama-chapter-tabs button:hover,
.cariama-chapter-tabs button.is-active {
  background: rgba(255, 255, 255, 0.28);
  color: var(--green);
}

.cariama-chapter-tabs button.is-active::after {
  transform: scaleX(1);
}

.cariama-chapter-tabs span {
  color: #f47b50;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.cariama-chapter-tabs strong {
  font-family: var(--strong-font);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.cariama-chapter-stage {
  max-width: 1260px;
  margin: clamp(34px, 5vw, 68px) auto 0;
}

.cariama-chapter-panel {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}

.cariama-chapter-panel[hidden] {
  display: none !important;
}

.cariama-chapter-panel.is-active {
  animation: cariama-chapter-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cariama-chapter-image {
  --cariama-tilt-x: 0deg;
  --cariama-tilt-y: 0deg;
  position: relative;
  min-height: clamp(520px, 48vw, 690px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(26px, 4vw, 58px);
  background: #164b36;
  box-shadow: 0 36px 80px rgba(17, 59, 43, 0.18);
  transform: perspective(1100px) rotateX(var(--cariama-tilt-x)) rotateY(var(--cariama-tilt-y));
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.cariama-chapter-image::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 33, 21, 0.68));
  pointer-events: none;
  content: "";
}

.cariama-chapter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.24, 1);
}

.cariama-chapter-image:hover img {
  transform: scale(1.035);
}

.cariama-chapter-image figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 38px);
  left: clamp(22px, 3vw, 42px);
  color: #f3d7a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cariama-chapter-copy > span {
  display: block;
  margin-bottom: 24px;
  color: #f47b50;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.cariama-chapter-copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--green);
  font-family: var(--strong-font);
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.cariama-chapter-copy p {
  max-width: 540px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(0, 91, 49, 0.76);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.72;
}

.cariama-chapter-progress {
  max-width: 520px;
  height: 2px;
  margin-top: clamp(34px, 4vw, 54px);
  overflow: hidden;
  background: rgba(0, 91, 49, 0.14);
}

.cariama-chapter-progress i {
  display: block;
  width: var(--chapter-progress);
  height: 100%;
  background: #f47b50;
}

@keyframes cariama-scroll-line {
  0% {
    transform: translateY(-100%);
  }
  55%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes cariama-chapter-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .cariama-identity-content {
    width: min(720px, 82vw);
  }

  .cariama-identity-facts {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: 100%;
    max-width: 720px;
    margin: 54px 0 0;
  }

  .cariama-identity-hero {
    display: block;
  }

  .cariama-scroll-cue {
    display: none;
  }

  .cariama-journey-heading {
    grid-template-columns: 1fr;
  }

  .cariama-journey-heading .section-kicker {
    grid-column: auto;
  }

  .cariama-chapter-panel {
    grid-template-columns: 1fr;
  }

  .cariama-chapter-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .cariama-identity-hero {
    min-height: 780px;
    padding: 116px 20px 72px;
  }

  .cariama-identity-hero-image {
    object-position: 62% center;
  }

  .cariama-identity-veil {
    background:
      linear-gradient(180deg, rgba(39, 35, 24, 0.18), rgba(36, 39, 25, 0.56) 42%, rgba(28, 38, 25, 0.9) 100%);
  }

  .cariama-identity-content {
    width: 100%;
  }

  .cariama-identity-logo {
    width: 102px;
    margin-bottom: 22px;
  }

  .cariama-identity-content h1 {
    font-size: clamp(76px, 27vw, 116px);
  }

  .cariama-identity-content > p {
    margin-top: 28px;
    font-size: 18px;
  }

  .cariama-identity-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cariama-identity-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
  }

  .cariama-identity-facts div {
    min-height: 92px;
    padding: 18px 10px;
  }

  .cariama-identity-facts strong {
    font-size: 30px;
  }

  .cariama-identity-facts span {
    font-size: 8px;
  }

  .cariama-journey {
    padding-inline: 18px;
  }

  .cariama-journey-heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .cariama-chapter-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cariama-chapter-tabs::-webkit-scrollbar {
    display: none;
  }

  .cariama-chapter-tabs button {
    min-width: 158px;
    min-height: 88px;
    flex: 0 0 auto;
  }

  .cariama-chapter-image {
    min-height: 470px;
    border-radius: 26px;
  }

  .cariama-chapter-copy h3 {
    font-size: clamp(44px, 13vw, 62px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cariama-identity-hero-image,
  .cariama-chapter-image,
  .cariama-chapter-image img {
    transition: none;
    transform: none;
  }

  .cariama-scroll-cue i::after,
  .cariama-chapter-panel.is-active {
    animation: none;
  }
}

/* End A Cariama immersive identity — v1.1.09 */

/* Global Cariama experience system — v1.1.11 */
body.cariama-enhanced {
  --cariama-experience-accent: 244, 123, 80;
  --cariama-experience-soft: 243, 215, 167;
}

body.cariama-view-brand {
  --cariama-experience-accent: 243, 215, 167;
  --cariama-experience-soft: 244, 123, 80;
}

body.cariama-view-shop,
body.cariama-view-product {
  --cariama-experience-accent: 0, 91, 49;
  --cariama-experience-soft: 244, 123, 80;
}

body.cariama-enhanced ::selection {
  background: rgba(var(--cariama-experience-accent), 0.88);
  color: #fff8ea;
}

.cariama-pointer-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cariama-experience-accent), 0.13), rgba(var(--cariama-experience-soft), 0.045) 36%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-500px, -500px, 0);
  translate: -50% -50%;
  transition: opacity 260ms ease;
  will-change: transform;
}

.cariama-pointer-glow.is-visible {
  opacity: 1;
}

.cariama-interactive {
  --cariama-hotspot-x: 50%;
  --cariama-hotspot-y: 50%;
  position: relative;
  isolation: isolate;
}

.cariama-interaction-light {
  position: absolute !important;
  inset: 0 !important;
  z-index: 7 !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: inherit !important;
  padding: 0 !important;
  background: radial-gradient(
    220px circle at var(--cariama-hotspot-x) var(--cariama-hotspot-y),
    rgba(255, 248, 234, 0.2),
    transparent 64%
  ) !important;
  box-shadow: none !important;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  transition: opacity 220ms ease;
}

.cariama-interaction-light.is-visible {
  opacity: 1;
}

.hero-autoplay-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 248, 234, 0.18);
  pointer-events: none;
}

.hero-autoplay-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f47b50, #f3d7a7);
  box-shadow: 0 0 16px rgba(244, 123, 80, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-autoplay-progress span.is-running {
  animation: cariama-hero-autoplay var(--hero-progress-duration, 6500ms) linear both;
}

@keyframes cariama-hero-autoplay {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (hover: none), (pointer: coarse) {
  .cariama-pointer-glow,
  .cariama-interaction-light {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cariama-pointer-glow,
  .cariama-interaction-light {
    display: none !important;
  }

  .hero-autoplay-progress span.is-running {
    animation-timing-function: steps(1, end);
  }
}

/* Runtime performance refinements — v1.1.16 */
[data-hero-image],
.published-region-hero,
.published-cover-callout,
.published-cafeteria-hero,
.cariama-interactive {
  backface-visibility: hidden;
}

.published-hero-slider.is-transitioning [data-hero-image],
.published-hero-slider.is-hero-switching [data-hero-image],
.published-region-hero.is-active,
.published-cover-callout.is-active,
.published-cafeteria-hero.is-active {
  will-change: opacity, transform;
}

.reveal {
  will-change: auto;
}

.reveal:not(.is-visible) {
  will-change: opacity, transform;
}

.reveal.is-visible,
.published-hero-slider:not(.is-transitioning):not(.is-hero-switching) [data-hero-image] {
  will-change: auto;
}

@supports (content-visibility: auto) {
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cariama-interactive {
    isolation: auto;
  }
}

/* End Global Cariama experience system — v1.1.16 */

/* Natural photography presentation — v1.1.18 */
.cultivation-landscape::after,
.cultivation-photo::after,
.canastra-photo-main::after,
.canastra-photo-detail::after,
.cariama-chapter-image::after {
  display: none !important;
  content: none !important;
}

.cariama-chapter-image {
  background: #f5ead8;
}

.cariama-chapter-image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  filter: none !important;
  object-fit: cover;
}

.cultivation-landscape img,
.cultivation-photo img,
.canastra-photo-main img,
.canastra-photo-detail img,
.cariama-chapter-image img {
  filter: none !important;
}

.cultivation-landscape figcaption,
.cultivation-photo figcaption,
.canastra-photo-main figcaption,
.canastra-photo-detail figcaption,
.cariama-chapter-image figcaption {
  right: auto !important;
  bottom: clamp(14px, 2vw, 24px) !important;
  left: clamp(14px, 2vw, 24px) !important;
  width: fit-content;
  max-width: min(72%, 620px);
  border: 1px solid rgba(255, 248, 234, 0.82);
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(255, 248, 234, 0.92);
  box-shadow: 0 12px 32px rgba(35, 21, 13, 0.13);
  color: #174833 !important;
  text-shadow: none !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cultivation-landscape figcaption span,
.cultivation-photo figcaption span,
.cariama-chapter-image figcaption {
  color: #9b342d !important;
}

.cultivation-landscape figcaption strong,
.cultivation-photo figcaption strong {
  color: #174833 !important;
  font-size: clamp(20px, 2.4vw, 34px);
}

@media (max-width: 620px) {
  .cultivation-landscape figcaption,
  .cultivation-photo figcaption,
  .canastra-photo-main figcaption,
  .canastra-photo-detail figcaption,
  .cariama-chapter-image figcaption {
    max-width: calc(100% - 28px);
    padding: 8px 10px;
    border-radius: 10px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* Final shop and review organization — v1.1.21 */
.cariama-shop-archive .product-grid,
body .cariama-shop-archive .product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(20px, 2.6vw, 34px) !important;
  width: min(1180px, 100%) !important;
  margin: clamp(34px, 5vw, 58px) auto 0 !important;
  padding: 0 !important;
}

.cariama-shop-archive .product-card-woocommerce,
body .cariama-shop-archive .product-card-woocommerce {
  display: grid !important;
  grid-template-rows: 290px minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 680px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 14px !important;
  background: #fffdf7 !important;
  box-shadow: 0 18px 46px rgba(35, 49, 37, 0.09) !important;
}

.cariama-shop-archive .product-card-woocommerce:hover,
body .cariama-shop-archive .product-card-woocommerce:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(244, 119, 79, 0.48) !important;
  box-shadow: 0 28px 58px rgba(35, 49, 37, 0.13) !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image,
body .cariama-shop-archive .product-card-woocommerce .product-image {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  min-height: 290px !important;
  padding: 30px !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 91, 49, 0.055), transparent 58%),
    #fff !important;
}

.cariama-shop-archive .product-card-woocommerce .product-image img,
body .cariama-shop-archive .product-card-woocommerce .product-image img {
  width: 100% !important;
  max-width: 230px !important;
  height: 230px !important;
  max-height: 230px !important;
  object-fit: contain !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info,
body .cariama-shop-archive .product-card-woocommerce .product-info {
  display: flex !important;
  min-height: 0 !important;
  flex-direction: column !important;
  gap: 13px !important;
  padding: clamp(22px, 2.4vw, 30px) !important;
  background: #fffdf7 !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info h2,
body .cariama-shop-archive .product-card-woocommerce .product-info h2 {
  min-height: 76px !important;
  margin: 0 !important;
  font-size: clamp(27px, 2.3vw, 34px) !important;
  line-height: 0.98 !important;
}

.cariama-shop-archive .product-card-woocommerce .product-info > p,
body .cariama-shop-archive .product-card-woocommerce .product-info > p {
  display: -webkit-box !important;
  min-height: 58px !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: #3f6f57 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

.cariama-shop-archive .product-rating-row,
body .cariama-shop-archive .product-rating-row {
  display: grid !important;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 26px !important;
}

.cariama-shop-archive .product-rating-row small,
body .cariama-shop-archive .product-rating-row small {
  max-width: none !important;
  color: #005b31 !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  text-align: right !important;
}

.cariama-shop-archive .product-card-actions,
body .cariama-shop-archive .product-card-actions {
  margin-top: auto !important;
  padding-top: 10px !important;
  border-top: 1px solid rgba(0, 91, 49, 0.1) !important;
}

.product-reviews-section,
body .product-reviews-section {
  padding: clamp(58px, 8vw, 100px) clamp(16px, 5vw, 72px) !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 119, 79, 0.12), transparent 30%),
    linear-gradient(180deg, #f7dfae, #fff3d8) !important;
}

.product-reviews-shell,
body .product-reviews-shell {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: clamp(24px, 4vw, 48px) !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 14px !important;
  background: rgba(255, 250, 240, 0.94) !important;
}

.cariama-review-summary {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 18px 0 10px !important;
  color: #005b31 !important;
}

.cariama-review-summary > strong {
  font-family: var(--strong-font) !important;
  font-size: 40px !important;
  line-height: 1 !important;
}

.cariama-review-summary > span {
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.cariama-product-reviews .cariama-review-list,
.product-reviews-shell .cariama-review-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.cariama-product-reviews .comment_container,
.product-reviews-shell .comment_container {
  height: 100% !important;
  padding: 20px !important;
  border-radius: 10px !important;
  background: #fffdf7 !important;
}

.product-reviews-shell .woocommerce-noreviews {
  margin: 24px 0 34px !important;
  padding: 18px 20px !important;
  border: 1px dashed rgba(0, 91, 49, 0.26) !important;
  border-radius: 10px !important;
  background: rgba(0, 91, 49, 0.045) !important;
  color: #005b31 !important;
  font-weight: 800 !important;
}

.cariama-review-form-wrapper,
.product-reviews-shell #review_form_wrapper {
  margin-top: 36px !important;
  padding-top: 32px !important;
}

.product-reviews-shell .comment-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.product-reviews-shell .comment-notes,
.product-reviews-shell .comment-form-rating,
.product-reviews-shell .comment-form-comment,
.product-reviews-shell .comment-form-cookies-consent,
.product-reviews-shell .form-submit {
  grid-column: 1 / -1 !important;
}

.product-reviews-shell .comment-form input,
.product-reviews-shell .comment-form textarea,
.product-reviews-shell .comment-form select {
  width: 100% !important;
  border: 1px solid rgba(0, 91, 49, 0.2) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

@media (max-width: 960px) {
  .cariama-shop-archive .product-grid,
  body .cariama-shop-archive .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .cariama-shop-archive .product-grid,
  body .cariama-shop-archive .product-grid,
  .cariama-product-reviews .cariama-review-list,
  .product-reviews-shell .cariama-review-list,
  .product-reviews-shell .comment-form {
    grid-template-columns: 1fr !important;
  }

  .cariama-shop-archive .product-card-woocommerce,
  body .cariama-shop-archive .product-card-woocommerce {
    min-height: 0 !important;
  }

  .cariama-review-summary {
    flex-wrap: wrap !important;
  }
}

/* Product page premium commerce finish - v1.1.22 */
body.single-product,
body.product-template-default {
  background: #fff9ee !important;
}

.single-product .woocommerce-notices-wrapper,
.product-template-default .woocommerce-notices-wrapper {
  width: min(1160px, calc(100% - 32px)) !important;
  margin: 18px auto 0 !important;
}

.single-product main#inicio,
.product-template-default main#inicio {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(255, 249, 238, 0.98) 0 54%, rgba(238, 247, 238, 0.96) 54% 100%),
    #fff9ee !important;
}

.single-product main#inicio::before,
.product-template-default main#inicio::before {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background:
    linear-gradient(118deg, transparent 0 68%, rgba(0, 91, 49, 0.08) 68% 82%, transparent 82% 100%),
    repeating-linear-gradient(90deg, rgba(0, 91, 49, 0.035) 0 1px, transparent 1px 132px) !important;
  content: "" !important;
  pointer-events: none !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  position: relative !important;
  z-index: 1 !important;
  grid-template-columns: minmax(430px, 0.98fr) minmax(460px, 0.9fr) !important;
  gap: clamp(46px, 6.6vw, 104px) !important;
  max-width: 1200px !important;
  min-height: calc(100vh - 36px) !important;
  padding: clamp(58px, 7vw, 90px) clamp(18px, 4vw, 54px) clamp(62px, 7vw, 96px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  top: 102px !important;
  max-width: 540px !important;
  justify-self: end !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  position: relative !important;
  width: min(100%, 540px) !important;
  height: clamp(440px, 42vw, 580px) !important;
  border-color: rgba(0, 91, 49, 0.18) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.96)),
    #fff !important;
  box-shadow:
    0 34px 80px rgba(45, 38, 28, 0.13),
    inset 0 0 0 10px rgba(255, 248, 236, 0.66) !important;
}

.single-product .product-main-image::after,
.product-template-default .product-main-image::after {
  position: absolute !important;
  right: 18px !important;
  bottom: 16px !important;
  left: 18px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(0, 91, 49, 0.26), transparent) !important;
  content: "" !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  max-width: 88% !important;
  max-height: 88% !important;
  filter: drop-shadow(0 22px 30px rgba(58, 38, 24, 0.17)) !important;
  transform: translateY(2px) !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  overflow: hidden !important;
  border-color: rgba(0, 91, 49, 0.2) !important;
  background: #fffefa !important;
  box-shadow: 0 10px 24px rgba(35, 49, 37, 0.08) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

.single-product .product-thumb-button:hover,
.product-template-default .product-thumb-button:hover,
.single-product .product-thumb-button.is-active,
.product-template-default .product-thumb-button.is-active {
  transform: translateY(-2px) !important;
  border-color: #005b31 !important;
  box-shadow: 0 12px 28px rgba(0, 91, 49, 0.13) !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  max-width: 560px !important;
  gap: 16px !important;
  align-self: start !important;
  padding-top: clamp(8px, 2vw, 26px) !important;
}

.single-product .product-detail-page-copy .section-kicker,
.product-template-default .product-detail-page-copy .section-kicker {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(185, 157, 119, 0.42) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 247, 0.76) !important;
  color: #8c6c47 !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
}

.single-product .product-detail-page-copy h1,
.product-template-default .product-detail-page-copy h1 {
  max-width: 580px !important;
  color: #005b31 !important;
  font-size: clamp(48px, 4.9vw, 74px) !important;
  line-height: 0.89 !important;
  text-wrap: balance !important;
}

.single-product .product-rating-row,
.product-template-default .product-rating-row {
  min-height: 34px !important;
  margin: 0 0 8px !important;
  padding: 0 0 16px !important;
}

.single-product .star-rating,
.product-template-default .star-rating {
  color: #f1a71a !important;
}

.single-product .product-rating-row small,
.product-template-default .product-rating-row small {
  color: #006b3f !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
}

.single-product .single-product-description,
.product-template-default .single-product-description {
  gap: 12px !important;
  margin-top: 0 !important;
}

.single-product .product-description-copy,
.product-template-default .product-description-copy {
  border-radius: 10px !important;
  background: rgba(255, 253, 247, 0.78) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68) !important;
}

.single-product .product-description-copy p,
.product-template-default .product-description-copy p {
  color: #355a46 !important;
  font-size: 16px !important;
  font-weight: 750 !important;
  line-height: 1.56 !important;
}

.single-product .product-description-facts,
.product-template-default .product-description-facts {
  gap: 10px !important;
}

.single-product .product-description-facts div,
.product-template-default .product-description-facts div {
  display: grid !important;
  align-content: space-between !important;
  min-height: 122px !important;
  padding: 18px 16px !important;
  border-radius: 10px !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(255, 248, 236, 0.78)) !important;
  box-shadow: 0 16px 34px rgba(35, 49, 37, 0.07) !important;
}

.single-product .product-description-facts span,
.product-template-default .product-description-facts span,
.single-product .product-buy-main span,
.product-template-default .product-buy-main span,
.single-product .product-grind-options legend,
.product-template-default .product-grind-options legend,
.single-product .product-quantity-control > span,
.product-template-default .product-quantity-control > span,
.single-product .product-shipping-calculator > label,
.product-template-default .product-shipping-calculator > label {
  color: #a9845b !important;
  font-size: 10px !important;
  letter-spacing: 0.13em !important;
}

.single-product .product-description-facts strong,
.product-template-default .product-description-facts strong {
  color: #006b3f !important;
  font-size: clamp(22px, 2vw, 31px) !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  overflow: hidden !important;
  border-color: rgba(0, 91, 49, 0.19) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.97), rgba(255, 248, 236, 0.92)) !important;
  box-shadow: 0 28px 70px rgba(35, 49, 37, 0.14) !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}

.single-product .product-buy-main strong,
.product-template-default .product-buy-main strong {
  display: block !important;
  margin-top: 5px !important;
  color: #2f2018 !important;
  font-size: clamp(28px, 2.5vw, 42px) !important;
}

.single-product .product-stock-pill,
.product-template-default .product-stock-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(0, 91, 49, 0.08) !important;
  color: #005b31 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.single-product .product-stock-pill::before,
.product-template-default .product-stock-pill::before {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #0d8b50 !important;
  box-shadow: 0 0 0 4px rgba(13, 139, 80, 0.13) !important;
  content: "" !important;
}

.single-product .product-stock-pill.is-unavailable,
.product-template-default .product-stock-pill.is-unavailable {
  background: rgba(176, 74, 47, 0.1) !important;
  color: #8f2e1d !important;
}

.single-product .product-stock-pill.is-unavailable::before,
.product-template-default .product-stock-pill.is-unavailable::before {
  background: #b04a2f !important;
  box-shadow: 0 0 0 4px rgba(176, 74, 47, 0.14) !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: 110px minmax(0, 1fr) !important;
  gap: 14px !important;
}

.single-product .product-grind-options label,
.product-template-default .product-grind-options label {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  min-height: 56px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 10px !important;
  background: #fffefa !important;
  color: #8f704d !important;
  cursor: pointer !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 span,
.product-template-default .product-grind-options span {
  position: relative !important;
  z-index: 1 !important;
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.single-product .product-grind-options label.is-selected,
.product-template-default .product-grind-options label.is-selected,
.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: #fff8ec !important;
  box-shadow: 0 14px 28px rgba(0, 91, 49, 0.18) !important;
}

.single-product .product-quantity-control div,
.product-template-default .product-quantity-control div {
  overflow: hidden !important;
  min-height: 58px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 10px !important;
  background: #fffefa !important;
}

.single-product .product-quantity-control button,
.product-template-default .product-quantity-control button {
  color: #005b31 !important;
  font-size: 20px !important;
}

.single-product .product-quantity-control input,
.product-template-default .product-quantity-control input {
  color: #005b31 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.single-product .product-shipping-calculator > div,
.product-template-default .product-shipping-calculator > div {
  overflow: hidden !important;
  min-height: 58px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 10px !important;
  background: #fffefa !important;
}

.single-product .product-shipping-calculator input,
.product-template-default .product-shipping-calculator input {
  color: #315744 !important;
  font-weight: 800 !important;
}

.single-product .product-shipping-calculator button,
.product-template-default .product-shipping-calculator button {
  background: #f2d29a !important;
  color: #005b31 !important;
  font-weight: 950 !important;
}

.single-product .product-shipping-result,
.product-template-default .product-shipping-result {
  margin-top: 9px !important;
  color: rgba(0, 91, 49, 0.72) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  white-space: normal !important;
}

.single-product .product-shipping-result.has-rates,
.product-template-default .product-shipping-result.has-rates {
  display: grid !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

.single-product .product-shipping-result.has-rates span,
.product-template-default .product-shipping-result.has-rates span {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 9px !important;
  background: rgba(0, 91, 49, 0.045) !important;
}

.single-product .product-shipping-result b,
.product-template-default .product-shipping-result b {
  color: #005b31 !important;
}

.single-product .product-plugin-badges,
.product-template-default .product-plugin-badges {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-product .product-plugin-badges li,
.product-template-default .product-plugin-badges li {
  position: relative !important;
  min-height: 44px !important;
  padding: 10px 10px 10px 30px !important;
  border: 1px solid rgba(0, 91, 49, 0.12) !important;
  border-radius: 9px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  color: #416b55 !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
}

.single-product .product-plugin-badges li::before,
.product-template-default .product-plugin-badges li::before {
  position: absolute !important;
  top: 12px !important;
  left: 10px !important;
  color: #f4774f !important;
  content: "\2713" !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  margin-top: 2px !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  min-height: 56px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
}

.single-product .product-buy-buttons .button-primary,
.product-template-default .product-buy-buttons .button-primary {
  background: #e99178 !important;
  box-shadow: 0 16px 32px rgba(233, 145, 120, 0.26) !important;
}

.single-product .product-buy-buttons .button-secondary,
.product-template-default .product-buy-buttons .button-secondary {
  background: #628b78 !important;
  box-shadow: 0 16px 32px rgba(98, 139, 120, 0.22) !important;
}

.single-product .product-buy-buttons .button.is-disabled,
.product-template-default .product-buy-buttons .button.is-disabled {
  box-shadow: none !important;
}

.single-product .product-continue-link,
.product-template-default .product-continue-link {
  justify-content: center !important;
  width: 100% !important;
  margin-top: 18px !important;
  color: #47705c !important;
}

@media (max-width: 1060px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    max-width: 780px !important;
    min-height: 0 !important;
  }

  .single-product .product-detail-visual,
  .product-template-default .product-detail-visual {
    position: static !important;
    justify-self: center !important;
  }
}

@media (max-width: 700px) {
  .single-product main#inicio,
  .product-template-default main#inicio {
    background: linear-gradient(180deg, #fff9ee 0%, #eef7ee 100%) !important;
  }

  .single-product main#inicio::before,
  .product-template-default main#inicio::before {
    opacity: 0.58 !important;
  }

  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    padding: 28px 14px 58px !important;
  }

  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: min(86vw, 390px) !important;
    padding: 18px !important;
    box-shadow: 0 22px 48px rgba(45, 38, 28, 0.12) !important;
  }

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

  .single-product .product-detail-thumbs,
  .product-template-default .product-detail-thumbs {
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .single-product .product-buy-main,
  .product-template-default .product-buy-main,
  .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-plugin-badges,
  .product-template-default .product-plugin-badges,
  .single-product .product-buy-buttons,
  .product-template-default .product-buy-buttons {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-stock-pill,
  .product-template-default .product-stock-pill {
    justify-self: start !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-product .product-thumb-button,
  .product-template-default .product-thumb-button,
  .single-product .product-grind-options label,
  .product-template-default .product-grind-options label {
    transition: none !important;
  }
}
/* End Product page premium commerce finish - v1.1.22 */

/* Cariama roots product layout - v1.1.23 */
.single-product main#inicio,
.product-template-default main#inicio {
  background: #ffffff !important;
}

.single-product main#inicio::before,
.product-template-default main#inicio::before {
  display: none !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(470px, 0.96fr) minmax(420px, 0.84fr) !important;
  align-items: start !important;
  gap: clamp(56px, 7vw, 120px) !important;
  max-width: 1080px !important;
  min-height: auto !important;
  padding: clamp(72px, 8vw, 104px) 24px clamp(48px, 6vw, 80px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  position: static !important;
  max-width: 520px !important;
  justify-self: center !important;
  gap: clamp(42px, 6vw, 86px) !important;
  margin: 0 !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  width: min(100%, 520px) !important;
  height: clamp(390px, 38vw, 520px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-main-image::after,
.product-template-default .product-main-image::after {
  display: none !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  max-width: 100% !important;
  max-height: 100% !important;
  filter: none !important;
  transform: none !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 20px 28px !important;
  width: min(100%, 420px) !important;
  margin: 0 auto !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  width: 80px !important;
  height: 80px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f7f8f8 !important;
  box-shadow: none !important;
  opacity: 0.62 !important;
}

.single-product .product-thumb-button:hover,
.product-template-default .product-thumb-button:hover,
.single-product .product-thumb-button.is-active,
.product-template-default .product-thumb-button.is-active {
  transform: none !important;
  opacity: 1 !important;
  box-shadow: inset 0 0 0 1px rgba(0, 91, 49, 0.18) !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  display: block !important;
  max-width: 510px !important;
  padding-top: 0 !important;
}

.single-product .product-detail-page-copy > .section-kicker,
.product-template-default .product-detail-page-copy > .section-kicker,
.single-product .product-detail-page-copy > h1,
.product-template-default .product-detail-page-copy > h1,
.single-product .product-rating-row,
.product-template-default .product-rating-row,
.single-product .single-product-description,
.product-template-default .single-product-description,
.single-product .product-stock-pill,
.product-template-default .product-stock-pill,
.single-product .product-continue-link,
.product-template-default .product-continue-link {
  display: none !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(28px, 4vw, 52px) 0 0 !important;
  border: 0 !important;
  border-top: 1px solid #d5d1cd !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-editor-description,
.product-template-default .product-editor-description {
  margin-bottom: 22px !important;
  color: #5a493f !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  display: block !important;
  margin-bottom: 10px !important;
  color: #006b3f !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.single-product .product-editor-description p,
.product-template-default .product-editor-description p {
  margin: 0 0 10px !important;
  color: #5a493f !important;
  font-family: var(--body-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.62 !important;
}

.single-product .product-roots-badges,
.product-template-default .product-roots-badges {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-product .product-roots-badges li,
.product-template-default .product-roots-badges li {
  min-height: 64px !important;
  padding: 10px 8px !important;
  border-top: 1px solid rgba(0, 91, 49, 0.16) !important;
}

.single-product .product-roots-badges span,
.product-template-default .product-roots-badges span {
  display: block !important;
  margin-bottom: 5px !important;
  color: #9b7a55 !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.single-product .product-roots-badges strong,
.product-template-default .product-roots-badges strong {
  display: block !important;
  color: #006b3f !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(18px, 1.6vw, 24px) !important;
  line-height: 0.95 !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  display: block !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
  border: 0 !important;
}

.single-product .product-buy-main strong,
.product-template-default .product-buy-main strong {
  margin: 0 !important;
  color: #9e2c2b !important;
  font-family: var(--body-font) !important;
  font-size: clamp(28px, 2.6vw, 36px) !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

.single-product .product-buy-main .woocommerce-Price-currencySymbol,
.product-template-default .product-buy-main .woocommerce-Price-currencySymbol {
  margin-right: 1px !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

.single-product .product-grind-select,
.product-template-default .product-grind-select {
  display: grid !important;
  grid-template-columns: 180px minmax(0, 220px) !important;
  align-items: center !important;
  gap: 24px !important;
  width: 100% !important;
}

.single-product .product-grind-select > span,
.product-template-default .product-grind-select > span {
  color: #57473e !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.single-product .product-grind-select select,
.product-template-default .product-grind-select select {
  width: 100% !important;
  min-height: 42px !important;
  padding: 0 42px 0 22px !important;
  border: 1px solid #007247 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #007247 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.single-product .product-grind-warning,
.product-template-default .product-grind-warning {
  margin: -12px 0 0 204px !important;
  color: #9e2c2b !important;
}

.single-product .product-quantity-control,
.product-template-default .product-quantity-control {
  display: none !important;
}

.single-product .product-shipping-calculator,
.product-template-default .product-shipping-calculator {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 28px 20px 20px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #f1f1f1 !important;
}

.single-product .product-shipping-calculator > label,
.product-template-default .product-shipping-calculator > label {
  display: block !important;
  margin: 0 0 4px !important;
  color: #62514a !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.single-product .product-shipping-calculator > div,
.product-template-default .product-shipping-calculator > div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 102px !important;
  min-height: 44px !important;
  border: 1px solid #cfc9c4 !important;
  border-radius: 3px !important;
  background: #ffffff !important;
}

.single-product .product-shipping-calculator input,
.product-template-default .product-shipping-calculator input {
  min-height: 42px !important;
  padding: 0 12px !important;
  color: #6a5a50 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.single-product .product-shipping-calculator button,
.product-template-default .product-shipping-calculator button {
  min-height: 42px !important;
  border-left: 1px solid #e2ddd8 !important;
  background: #ead9b6 !important;
  color: #006b3f !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.single-product .product-shipping-result,
.product-template-default .product-shipping-result {
  margin: 10px 0 0 !important;
  color: #62514a !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  display: block !important;
  margin: 0 !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 475px) !important;
  min-height: 74px !important;
  border-radius: 8px !important;
  background: #ead9b6 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(23px, 2.2vw, 32px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.single-product .product-buy-buttons .button:not(.is-disabled):hover,
.product-template-default .product-buy-buttons .button:not(.is-disabled):hover {
  transform: none !important;
  background: #d8bd86 !important;
  box-shadow: none !important;
}

@media (max-width: 940px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    max-width: 680px !important;
    gap: 48px !important;
  }

  .single-product .product-detail-page-copy,
  .product-template-default .product-detail-page-copy {
    max-width: 100% !important;
  }
}

@media (max-width: 620px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    padding: 42px 18px 58px !important;
  }

  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: min(82vw, 390px) !important;
  }

  .single-product .product-detail-thumbs,
  .product-template-default .product-detail-thumbs,
  .single-product .product-roots-badges,
  .product-template-default .product-roots-badges,
  .single-product .product-grind-select,
  .product-template-default .product-grind-select,
  .single-product .product-shipping-calculator > div,
  .product-template-default .product-shipping-calculator > div {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-detail-thumbs,
  .product-template-default .product-detail-thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .single-product .product-thumb-button,
  .product-template-default .product-thumb-button {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 !important;
  }

  .single-product .product-roots-badges,
  .product-template-default .product-roots-badges {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .single-product .product-grind-select,
  .product-template-default .product-grind-select {
    gap: 10px !important;
  }

  .single-product .product-grind-warning,
  .product-template-default .product-grind-warning {
    margin-left: 0 !important;
  }

  .single-product .product-shipping-calculator button,
  .product-template-default .product-shipping-calculator button {
    border-top: 1px solid #e2ddd8 !important;
    border-left: 0 !important;
  }
}
/* End Cariama roots product layout - v1.1.23 */

/* Product page polish - v1.1.24 */
.single-product main#inicio,
.product-template-default main#inicio {
  min-height: 100vh !important;
  padding-top: 88px !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 91, 49, 0.08), transparent 24%),
    linear-gradient(90deg, #fffdf8 0 52%, #f6f7f3 52% 100%) !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(420px, 1.06fr) minmax(440px, 0.94fr) !important;
  align-items: center !important;
  gap: clamp(42px, 6vw, 86px) !important;
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: none !important;
  min-height: calc(100vh - 112px) !important;
  margin: 0 auto !important;
  padding: clamp(34px, 4.6vw, 64px) 0 clamp(34px, 4.8vw, 70px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  justify-self: stretch !important;
  display: grid !important;
  align-content: center !important;
  gap: clamp(26px, 4vw, 48px) !important;
  max-width: none !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: clamp(430px, 47vw, 610px) !important;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(185, 157, 119, 0.16), transparent 44%),
    transparent !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  width: auto !important;
  max-width: min(92%, 560px) !important;
  max-height: 92% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 34px 36px rgba(45, 32, 22, 0.17)) !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  justify-content: center !important;
  width: 100% !important;
  gap: 14px !important;
  margin: 0 !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  width: 72px !important;
  height: 72px !important;
  border: 1px solid rgba(0, 91, 49, 0.12) !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  opacity: 0.5 !important;
}

.single-product .product-thumb-button.is-active,
.single-product .product-thumb-button:hover,
.product-template-default .product-thumb-button.is-active,
.product-template-default .product-thumb-button:hover {
  opacity: 1 !important;
  border-color: rgba(0, 91, 49, 0.42) !important;
  background: #ffffff !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  display: grid !important;
  gap: 18px !important;
  max-width: 500px !important;
  padding: 0 !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  display: grid !important;
  gap: 20px !important;
  padding: 30px 0 0 !important;
  border-top: 1px solid rgba(0, 91, 49, 0.18) !important;
}

.single-product .product-editor-description,
.product-template-default .product-editor-description {
  max-width: 460px !important;
  margin: 0 !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  margin-bottom: 12px !important;
  color: #00643a !important;
  font-family: var(--main-font) !important;
  font-size: 10px !important;
  line-height: 1 !important;
}

.single-product .product-editor-description p,
.product-template-default .product-editor-description p {
  margin: 0 !important;
  color: #4b433c !important;
  font-family: var(--main-font) !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 1.58 !important;
}

.single-product .product-roots-badges,
.product-template-default .product-roots-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 14px 0 8px !important;
  border-top: 1px solid rgba(0, 91, 49, 0.16) !important;
}

.single-product .product-roots-badges li,
.product-template-default .product-roots-badges li {
  min-height: 76px !important;
  padding: 14px 14px 10px !important;
  border-top: 0 !important;
}

.single-product .product-roots-badges li + li,
.product-template-default .product-roots-badges li + li {
  border-left: 1px solid rgba(0, 91, 49, 0.12) !important;
}

.single-product .product-roots-badges strong,
.product-template-default .product-roots-badges strong {
  font-size: clamp(19px, 1.55vw, 25px) !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 0 !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  grid-template-areas:
    "grind ship"
    "warn ship"
    "button ship" !important;
  align-items: end !important;
  gap: 14px 16px !important;
}

.single-product .product-grind-select,
.product-template-default .product-grind-select {
  grid-area: grind !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  width: 100% !important;
}

.single-product .product-grind-select > span,
.product-template-default .product-grind-select > span,
.single-product .product-shipping-calculator > label,
.product-template-default .product-shipping-calculator > label {
  color: #55473f !important;
  font-family: var(--main-font) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.single-product .product-grind-select select,
.product-template-default .product-grind-select select {
  max-width: 210px !important;
  min-height: 42px !important;
  border: 2px solid #143629 !important;
  color: #005b31 !important;
}

.single-product .product-grind-warning,
.product-template-default .product-grind-warning {
  grid-area: warn !important;
  margin: -4px 0 0 !important;
  font-size: 12px !important;
}

.single-product .product-shipping-calculator,
.product-template-default .product-shipping-calculator {
  grid-area: ship !important;
  align-self: stretch !important;
  display: grid !important;
  align-content: center !important;
  width: 100% !important;
  min-height: 164px !important;
  padding: 18px 16px !important;
  background: #f1f1f0 !important;
}

.single-product .product-shipping-calculator > label,
.product-template-default .product-shipping-calculator > label {
  text-align: center !important;
}

.single-product .product-shipping-calculator > div,
.product-template-default .product-shipping-calculator > div {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  border: 0 !important;
  background: transparent !important;
}

.single-product .product-shipping-calculator input,
.product-template-default .product-shipping-calculator input {
  min-height: 36px !important;
  border: 1px solid #d8cec1 !important;
  background: #ffffff !important;
  text-align: center !important;
}

.single-product .product-shipping-calculator button,
.product-template-default .product-shipping-calculator button {
  min-height: 36px !important;
  border: 1px solid #d3b778 !important;
  background: #ead9b6 !important;
}

.single-product .product-shipping-result,
.product-template-default .product-shipping-result {
  max-width: 160px !important;
  margin: 10px auto 0 !important;
  text-align: center !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  grid-area: button !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  width: min(100%, 250px) !important;
  min-height: 76px !important;
  padding: 10px 18px !important;
  border: 1px solid rgba(0, 91, 49, 0.34) !important;
  border-radius: 6px !important;
  background: #eadfca !important;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 25px !important;
  line-height: 0.92 !important;
}

@media (max-width: 980px) {
  .single-product main#inicio,
  .product-template-default main#inicio {
    background: #fffdf8 !important;
  }

  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    width: min(720px, calc(100% - 34px)) !important;
    min-height: 0 !important;
  }

  .single-product .product-detail-page-copy,
  .product-template-default .product-detail-page-copy {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .single-product main#inicio,
  .product-template-default main#inicio {
    padding-top: 74px !important;
  }

  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    width: min(100% - 28px, 560px) !important;
    gap: 28px !important;
  }

  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: min(86vw, 410px) !important;
  }

  .single-product .product-detail-thumbs,
  .product-template-default .product-detail-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .single-product .product-roots-badges,
  .product-template-default .product-roots-badges,
  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions {
    grid-template-areas:
      "grind"
      "warn"
      "ship"
      "button" !important;
  }

  .single-product .product-roots-badges li + li,
  .product-template-default .product-roots-badges li + li {
    border-left: 0 !important;
    border-top: 1px solid rgba(0, 91, 49, 0.12) !important;
  }

  .single-product .product-grind-select select,
  .product-template-default .product-grind-select select,
  .single-product .product-buy-buttons .button,
  .product-template-default .product-buy-buttons .button {
    width: 100% !important;
    max-width: none !important;
  }
}
/* End Product page polish - v1.1.24 */

/* Product page correction - v1.1.25 */
.single-product main#inicio,
.product-template-default main#inicio {
  background: #ffffff !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(440px, 1fr) minmax(430px, 0.86fr) !important;
  align-items: center !important;
  gap: clamp(58px, 7vw, 112px) !important;
  width: min(1120px, calc(100% - 48px)) !important;
  min-height: calc(100vh - 104px) !important;
  padding: clamp(34px, 5vw, 72px) 0 clamp(42px, 6vw, 82px) !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  justify-self: center !important;
  gap: clamp(34px, 5vw, 62px) !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  width: min(100%, 540px) !important;
  height: clamp(400px, 40vw, 540px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-main-image::before,
.single-product .product-main-image::after,
.product-template-default .product-main-image::before,
.product-template-default .product-main-image::after {
  display: none !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: none !important;
  transform: none !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  justify-content: center !important;
  gap: 22px !important;
}

.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy {
  max-width: 500px !important;
}

.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  gap: 22px !important;
  padding-top: 28px !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-areas:
    "label stock"
    "price stock" !important;
  align-items: center !important;
  gap: 4px 18px !important;
  margin: 2px 0 4px !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.14) !important;
}

.single-product .product-buy-main > span,
.product-template-default .product-buy-main > span {
  grid-area: label !important;
  display: block !important;
  color: #a2784c !important;
  font-family: var(--main-font) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.single-product .product-buy-main > strong,
.product-template-default .product-buy-main > strong {
  grid-area: price !important;
  display: block !important;
  margin: 0 !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(44px, 4.6vw, 70px) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 0.9 !important;
}

.single-product .product-buy-main .woocommerce-Price-amount,
.single-product .product-buy-main .woocommerce-Price-amount bdi,
.product-template-default .product-buy-main .woocommerce-Price-amount,
.product-template-default .product-buy-main .woocommerce-Price-amount bdi {
  color: inherit !important;
  font: inherit !important;
}

.single-product .product-buy-main .woocommerce-Price-currencySymbol,
.product-template-default .product-buy-main .woocommerce-Price-currencySymbol {
  margin-right: 4px !important;
  font-size: 0.62em !important;
  vertical-align: 0.18em !important;
}

.single-product .product-stock-pill,
.product-template-default .product-stock-pill {
  grid-area: stock !important;
  display: inline-flex !important;
  justify-self: end !important;
  white-space: nowrap !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: minmax(0, 1fr) 210px !important;
  gap: 16px 18px !important;
}

.single-product .product-grind-select select,
.product-template-default .product-grind-select select {
  max-width: 230px !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  width: min(100%, 285px) !important;
  min-height: 82px !important;
  font-size: 28px !important;
}

@media (max-width: 980px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    width: min(720px, calc(100% - 34px)) !important;
  }
}

@media (max-width: 640px) {
  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    gap: 30px !important;
  }

  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: min(82vw, 390px) !important;
  }

  .single-product .product-buy-main,
  .product-template-default .product-buy-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "label"
      "price"
      "stock" !important;
  }

  .single-product .product-stock-pill,
  .product-template-default .product-stock-pill {
    justify-self: start !important;
  }

  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions {
    grid-template-columns: 1fr !important;
  }
}
/* End Product page correction - v1.1.25 */

/* Product commerce alignment and plugin results - v1.1.26 */
.single-product main#inicio,
.product-template-default main#inicio {
  background:
    linear-gradient(90deg, #fbfaf6 0 50%, #f4f7f0 50% 100%) !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  grid-template-columns: minmax(450px, 1fr) minmax(460px, 0.9fr) !important;
  gap: clamp(54px, 6.8vw, 104px) !important;
  width: min(1160px, calc(100% - 52px)) !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  height: clamp(420px, 42vw, 560px) !important;
  background: transparent !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  max-width: min(100%, 560px) !important;
  max-height: 100% !important;
}

.single-product .product-editor-description,
.product-template-default .product-editor-description {
  max-width: 500px !important;
  padding: 0 0 22px !important;
  border-top: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.18) !important;
  padding-top: 24px !important;
  text-align: center !important;
}

.single-product .product-editor-description p,
.product-template-default .product-editor-description p {
  color: #3e332b !important;
  font-size: 16px !important;
  font-weight: 760 !important;
}

.single-product .product-roots-badges,
.product-template-default .product-roots-badges {
  margin: -2px 0 18px !important;
  border-top: 0 !important;
}

.single-product .product-roots-badges + .product-editor-description,
.product-template-default .product-roots-badges + .product-editor-description {
  margin-top: 0 !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(0, 91, 49, 0.14) !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  grid-template-columns: minmax(0, 1fr) auto !important;
  margin: 0 0 2px !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}

.single-product .product-buy-main > span,
.product-template-default .product-buy-main > span {
  color: #b27a3d !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
}

.single-product .product-buy-main > strong,
.product-template-default .product-buy-main > strong,
.single-product .product-buy-main > strong .woocommerce-Price-amount,
.single-product .product-buy-main > strong .woocommerce-Price-amount bdi,
.product-template-default .product-buy-main > strong .woocommerce-Price-amount,
.product-template-default .product-buy-main > strong .woocommerce-Price-amount bdi {
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(54px, 5.2vw, 78px) !important;
  font-weight: 900 !important;
  line-height: 0.86 !important;
}

.single-product .product-buy-main > strong .woocommerce-Price-currencySymbol,
.product-template-default .product-buy-main > strong .woocommerce-Price-currencySymbol {
  color: #005b31 !important;
  font-size: 0.48em !important;
  margin-right: 5px !important;
  vertical-align: 0.34em !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: minmax(0, 1fr) minmax(218px, 238px) !important;
  grid-template-areas:
    "grind ship"
    "warn ship"
    "button ship" !important;
  gap: 14px 22px !important;
  align-items: start !important;
}

.single-product .product-grind-select,
.product-template-default .product-grind-select {
  align-self: start !important;
}

.single-product .product-grind-select > span,
.product-template-default .product-grind-select > span,
.single-product .product-shipping-calculator > label,
.product-template-default .product-shipping-calculator > label {
  color: #3e332b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.single-product .product-grind-select select,
.product-template-default .product-grind-select select {
  width: min(100%, 235px) !important;
  max-width: none !important;
  min-height: 46px !important;
  border: 2px solid #0f3f2b !important;
  border-radius: 999px !important;
  background-color: #fffdf8 !important;
  color: #005b31 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  align-self: end !important;
}

.single-product .product-buy-buttons .button,
.product-template-default .product-buy-buttons .button {
  width: min(100%, 288px) !important;
  min-height: 82px !important;
  border: 1px solid rgba(0, 91, 49, 0.28) !important;
  background: #e7dcc7 !important;
  color: #ffffff !important;
  font-size: clamp(26px, 2.5vw, 34px) !important;
}

.single-product .product-buy-buttons .button:not(.is-disabled):hover,
.product-template-default .product-buy-buttons .button:not(.is-disabled):hover {
  background: #d6bc86 !important;
  color: #ffffff !important;
}

.single-product .product-shipping-calculator,
.product-template-default .product-shipping-calculator {
  min-height: 0 !important;
  padding: 18px !important;
  border-radius: 5px !important;
  background: #efefed !important;
  box-shadow: inset 0 0 0 1px rgba(0, 91, 49, 0.04) !important;
}

.single-product .product-shipping-calculator > label,
.product-template-default .product-shipping-calculator > label {
  margin-bottom: 12px !important;
  text-align: center !important;
}

.single-product .product-shipping-calculator > div,
.product-template-default .product-shipping-calculator > div {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.single-product .product-shipping-calculator input,
.product-template-default .product-shipping-calculator input {
  min-height: 38px !important;
  border: 1px solid #d0b992 !important;
  border-radius: 6px !important;
  background: #fffdf8 !important;
  color: #3e332b !important;
  font-family: var(--main-font) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.single-product .product-shipping-calculator button,
.product-template-default .product-shipping-calculator button {
  min-height: 38px !important;
  border: 1px solid #c69f55 !important;
  border-radius: 0 !important;
  background: #ecd8ad !important;
  color: #005b31 !important;
  font-family: var(--main-font) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
}

.single-product .product-shipping-result,
.product-template-default .product-shipping-result {
  display: grid !important;
  gap: 8px !important;
  max-width: none !important;
  margin: 14px 0 0 !important;
  color: #56463b !important;
  text-align: left !important;
}

.single-product .product-shipping-result.has-rates,
.product-template-default .product-shipping-result.has-rates {
  font-size: 12px !important;
}

.single-product .product-shipping-result.has-rates > span,
.product-template-default .product-shipping-result.has-rates > span {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 44px !important;
  padding: 9px 10px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 8px !important;
  background: #f8fbf5 !important;
}

.single-product .product-shipping-result.has-rates strong,
.product-template-default .product-shipping-result.has-rates strong {
  overflow: hidden !important;
  color: #45382f !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  line-height: 1.18 !important;
  text-overflow: ellipsis !important;
}

.single-product .product-shipping-result.has-rates b,
.product-template-default .product-shipping-result.has-rates b {
  color: #005b31 !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .single-product main#inicio,
  .product-template-default main#inicio {
    background: #fbfaf6 !important;
  }

  .single-product .product-detail-page,
  .product-template-default .product-detail-page {
    grid-template-columns: 1fr !important;
    width: min(740px, calc(100% - 34px)) !important;
  }
}

@media (max-width: 640px) {
  .single-product .product-buy-main > strong,
  .product-template-default .product-buy-main > strong,
  .single-product .product-buy-main > strong .woocommerce-Price-amount,
  .single-product .product-buy-main > strong .woocommerce-Price-amount bdi,
  .product-template-default .product-buy-main > strong .woocommerce-Price-amount,
  .product-template-default .product-buy-main > strong .woocommerce-Price-amount bdi {
    font-size: clamp(46px, 15vw, 64px) !important;
  }

  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "grind"
      "warn"
      "ship"
      "button" !important;
  }

  .single-product .product-grind-select select,
  .product-template-default .product-grind-select select,
  .single-product .product-buy-buttons .button,
  .product-template-default .product-buy-buttons .button {
    width: 100% !important;
  }
}
/* End Product commerce alignment and plugin results - v1.1.26 */

/* Product page cart CTA cleanup */
.single-product .product-stock-pill,
.product-template-default .product-stock-pill {
  display: none !important;
}

.single-product .product-buy-main,
.product-template-default .product-buy-main {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-areas:
    "label"
    "price" !important;
}

.single-product .product-buy-buttons,
.product-template-default .product-buy-buttons {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: min(100%, 288px) !important;
}

.single-product .product-buy-buttons .product-add-cart,
.product-template-default .product-buy-buttons .product-add-cart,
.single-product .product-buy-buttons .product-buy-now,
.product-template-default .product-buy-buttons .product-buy-now {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 66px !important;
  padding: 14px 18px !important;
  border: 2px solid #d0b47d !important;
  border-radius: 8px !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  font-family: var(--main-font) !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.08 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  box-shadow: 0 14px 28px rgba(172, 128, 66, 0.18) !important;
}

.single-product .product-buy-buttons .product-buy-now,
.product-template-default .product-buy-buttons .product-buy-now {
  min-height: 54px !important;
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  box-shadow: 0 14px 28px rgba(0, 91, 49, 0.18) !important;
}

.single-product .product-buy-buttons .product-add-cart.is-disabled,
.product-template-default .product-buy-buttons .product-add-cart.is-disabled,
.single-product .product-buy-buttons .product-buy-now.is-disabled,
.product-template-default .product-buy-buttons .product-buy-now.is-disabled,
.single-product .product-buy-panel.needs-grind-selection .product-buy-buttons .product-add-cart,
.product-template-default .product-buy-panel.needs-grind-selection .product-buy-buttons .product-add-cart,
.single-product .product-buy-panel.needs-grind-selection .product-buy-buttons .product-buy-now,
.product-template-default .product-buy-panel.needs-grind-selection .product-buy-buttons .product-buy-now {
  border-color: rgba(0, 91, 49, 0.22) !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.single-product .product-buy-buttons .product-add-cart:not(.is-disabled):hover,
.product-template-default .product-buy-buttons .product-add-cart:not(.is-disabled):hover,
.single-product .product-buy-buttons .product-buy-now:not(.is-disabled):hover,
.product-template-default .product-buy-buttons .product-buy-now:not(.is-disabled):hover {
  background: #0f7244 !important;
  color: #fff6e2 !important;
  transform: translateY(-1px) !important;
}

.single-product .product-shipping-result.has-rates > span,
.product-template-default .product-shipping-result.has-rates > span {
  position: relative !important;
  grid-template-columns: 18px minmax(0, 1fr) auto !important;
  cursor: pointer !important;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease !important;
}

.single-product .product-shipping-result.has-rates > span::before,
.product-template-default .product-shipping-result.has-rates > span::before {
  display: block !important;
  width: 13px !important;
  height: 13px !important;
  border: 2px solid rgba(0, 91, 49, 0.42) !important;
  border-radius: 50% !important;
  background: #fffdf8 !important;
  box-shadow: inset 0 0 0 3px #fffdf8 !important;
  content: "" !important;
}

.single-product .product-shipping-result.has-rates > span:hover,
.product-template-default .product-shipping-result.has-rates > span:hover,
.single-product .product-shipping-result.has-rates > span:focus-visible,
.product-template-default .product-shipping-result.has-rates > span:focus-visible {
  border-color: rgba(0, 91, 49, 0.42) !important;
  background: #fffdf8 !important;
  box-shadow: 0 8px 18px rgba(0, 91, 49, 0.1) !important;
  outline: none !important;
  transform: translateY(-1px) !important;
}

.single-product .product-shipping-result.has-rates > span.is-selected,
.product-template-default .product-shipping-result.has-rates > span.is-selected {
  border-color: #005b31 !important;
  background: #f3d7a7 !important;
  box-shadow: inset 0 0 0 2px rgba(0, 91, 49, 0.12), 0 10px 22px rgba(0, 91, 49, 0.12) !important;
}

.single-product .product-shipping-result.has-rates > span.is-selected::before,
.product-template-default .product-shipping-result.has-rates > span.is-selected::before {
  border-color: #005b31 !important;
  background: #005b31 !important;
}

/* Checkout steps and payment separation */
.woocommerce-checkout .cariama-commerce-lead {
  max-width: 760px !important;
  color: rgba(58, 38, 24, 0.72) !important;
  font-size: 16px !important;
}

.woocommerce-checkout .cariama-commerce-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: min(100%, 760px) !important;
  margin: 22px 0 0 !important;
}

.woocommerce-checkout .cariama-commerce-steps li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 52px !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.88) !important;
  color: #005b31 !important;
}

.woocommerce-checkout .cariama-commerce-steps li::after {
  display: none !important;
}

.woocommerce-checkout .cariama-commerce-steps span {
  display: inline-grid !important;
  place-items: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  font-weight: 950 !important;
}

.woocommerce-checkout .cariama-commerce-steps strong {
  padding: 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-active,
.woocommerce-checkout .cariama-commerce-steps .is-complete {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #f3d7a7 !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-active span,
.woocommerce-checkout .cariama-commerce-steps .is-complete span {
  background: #f4774f !important;
  color: #fff8ec !important;
}

.woocommerce-checkout form.checkout {
  grid-template-columns: minmax(520px, 1.08fr) minmax(410px, 0.92fr) !important;
  gap: clamp(30px, 4vw, 58px) !important;
}

.woocommerce-checkout form.checkout > .col2-set,
.woocommerce-checkout-review-order,
.woocommerce-checkout #payment,
.cariama-payment-heading {
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: 0 18px 46px rgba(81, 53, 31, 0.1) !important;
}

.woocommerce-checkout form.checkout > .col2-set::before,
.woocommerce-checkout-review-order::before,
.cariama-payment-heading::before {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 26px !important;
  margin-bottom: 14px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: rgba(0, 91, 49, 0.08) !important;
  color: #005b31 !important;
  font-size: 10px !important;
  font-weight: 950 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.woocommerce-checkout form.checkout > .col2-set::before {
  content: "Etapa 2 - Entrega" !important;
}

.woocommerce-checkout-review-order::before {
  content: "Resumo do pedido" !important;
}

.cariama-payment-heading::before {
  content: "Etapa 3 - Pagamento" !important;
}

.woocommerce-checkout form.checkout > h3 {
  position: static !important;
  top: auto !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 0 14px !important;
}

.woocommerce-checkout #order_review {
  position: sticky !important;
  top: 106px !important;
  display: grid !important;
  gap: 18px !important;
  margin: 56px 0 0 !important;
}

.woocommerce-checkout #order_review_heading {
  color: #005b31 !important;
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 0.95 !important;
}

.woocommerce-checkout table.shop_table {
  margin-bottom: 0 !important;
}

.cariama-payment-heading {
  margin: 0 !important;
  padding: 20px 22px !important;
  border: 1px solid rgba(244, 119, 79, 0.5) !important;
  border-left: 5px solid #f4774f !important;
}

.cariama-payment-heading > span {
  display: none !important;
}

.cariama-payment-heading h2 {
  margin: 0 0 8px !important;
}

.cariama-payment-heading p {
  color: rgba(58, 38, 24, 0.72) !important;
}

.woocommerce-checkout #payment {
  border: 1px solid rgba(0, 91, 49, 0.2) !important;
  overflow: visible !important;
}

.woocommerce-checkout #payment ul.payment_methods,
body.woocommerce-checkout #payment ul.payment_methods {
  gap: 14px !important;
  padding: 18px !important;
  background: transparent !important;
}

.woocommerce-checkout #payment ul.payment_methods li,
body.woocommerce-checkout #payment ul.payment_methods li {
  min-height: 64px !important;
  padding: 16px 16px 16px 50px !important;
  border: 2px solid rgba(0, 91, 49, 0.18) !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li:has(input:checked),
body.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
  border-color: #005b31 !important;
  background: #f3d7a7 !important;
  box-shadow: 0 10px 24px rgba(0, 91, 49, 0.12) !important;
}

.woocommerce-checkout #payment ul.payment_methods li input.input-radio,
body.woocommerce-checkout #payment ul.payment_methods li input.input-radio {
  top: 21px !important;
  accent-color: #005b31 !important;
}

.woocommerce-checkout #payment ul.payment_methods li > label,
body.woocommerce-checkout #payment ul.payment_methods li > label {
  min-height: 30px !important;
  font-size: 15px !important;
}

.woocommerce-checkout #payment div.payment_box,
body.woocommerce-checkout #payment div.payment_box {
  margin: 14px 0 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(0, 91, 49, 0.12) !important;
  background: #fff8ec !important;
}

.woocommerce-checkout #payment .place-order {
  padding: 0 18px 18px !important;
}

.woocommerce-checkout #payment #place_order {
  min-height: 58px !important;
  border-radius: 8px !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 #order_review {
    position: static !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-checkout .cariama-commerce-steps {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-checkout .cariama-commerce-steps li {
    justify-items: start !important;
    text-align: left !important;
  }
}

/* Checkout window separation correction */
.woocommerce-checkout .cariama-commerce-steps {
  gap: 0 !important;
  width: min(760px, 100%) !important;
  margin: 0 0 clamp(28px, 4vw, 44px) !important;
}

.woocommerce-checkout .cariama-commerce-steps li {
  display: flex !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(0, 91, 49, 0.52) !important;
}

.woocommerce-checkout .cariama-commerce-steps li:not(:last-child)::after {
  display: block !important;
}

.woocommerce-checkout .cariama-commerce-steps span {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  background: #fff8ec !important;
}

.woocommerce-checkout .cariama-commerce-steps strong {
  padding-right: 10px !important;
  background: #fff8ec !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-active,
.woocommerce-checkout .cariama-commerce-steps .is-complete {
  color: #005b31 !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-active span {
  border-color: #f4774f !important;
  background: #f4774f !important;
  color: #fff8ec !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-complete span {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
}

.woocommerce-checkout form.checkout {
  grid-template-columns: minmax(520px, 1.05fr) minmax(410px, 0.95fr) !important;
  gap: clamp(28px, 4vw, 56px) !important;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout.woocommerce-page #order_review.woocommerce-checkout-review-order {
  position: sticky !important;
  top: 112px !important;
  display: grid !important;
  gap: 18px !important;
  margin: 58px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.woocommerce-checkout-review-order::before,
.cariama-payment-heading::before {
  display: none !important;
  content: none !important;
}

.woocommerce-checkout table.shop_table,
.woocommerce-checkout #payment,
.cariama-payment-heading {
  width: 100% !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.96) !important;
  box-shadow: 0 18px 46px rgba(81, 53, 31, 0.1) !important;
}

.woocommerce-checkout table.shop_table {
  margin: 0 !important;
  overflow: hidden !important;
}

.woocommerce-checkout #payment {
  margin: 0 !important;
  overflow: hidden !important;
}

.cariama-payment-heading {
  margin: 0 !important;
  border-color: rgba(244, 119, 79, 0.52) !important;
  border-left: 5px solid #f4774f !important;
}

.woocommerce-checkout #payment ul.payment_methods,
body.woocommerce-checkout #payment ul.payment_methods {
  background: transparent !important;
}

@media (max-width: 980px) {
  .woocommerce-checkout #order_review,
  .woocommerce-checkout.woocommerce-page #order_review.woocommerce-checkout-review-order {
    position: static !important;
    margin-top: 0 !important;
  }
}

/* Checkout two-step flow: delivery first, payment after */
form.checkout:not(.is-payment-step) > #order_review_heading,
form.checkout:not(.is-payment-step) > #order_review,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) #order_review_heading,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) #order_review {
  display: none !important;
}

form.checkout:not(.is-payment-step) {
  display: block !important;
  width: min(680px, 100%) !important;
  margin: clamp(26px, 3vw, 42px) 0 0 !important;
}

body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout {
  display: block !important;
  width: min(680px, 100%) !important;
  margin: clamp(26px, 3vw, 42px) 0 0 !important;
}

form.checkout:not(.is-payment-step) > .col2-set,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout > .col2-set {
  width: 100% !important;
}

form.checkout.is-payment-step > .col2-set,
form.checkout.is-payment-step > .cariama-checkout-delivery-actions,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout > .col2-set {
  display: none !important;
}

.cariama-checkout-delivery-actions {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 26px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(0, 91, 49, 0.14) !important;
}

.cariama-checkout-next,
.cariama-checkout-back {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  font-family: var(--main-font) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.cariama-checkout-next {
  width: min(100%, 280px) !important;
}

.cariama-checkout-back {
  justify-self: start !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
}

.cariama-checkout-next:hover {
  background: #064327 !important;
}

.cariama-checkout-back:hover {
  background: #e9c987 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step .cariama-commerce-steps li:nth-child(2) span {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step .cariama-commerce-steps li:nth-child(3) span {
  border-color: #f4774f !important;
  background: #f4774f !important;
  color: #fff8ec !important;
}

@media (max-width: 980px) {
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout {
    width: 100% !important;
  }

  .cariama-checkout-delivery-actions {
    justify-content: stretch !important;
  }

  .cariama-checkout-next {
    width: 100% !important;
  }
}

/* Checkout stepper visual restore */
.woocommerce-checkout .cariama-commerce-steps {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: min(760px, 100%) !important;
  margin: 0 0 clamp(28px, 4vw, 44px) !important;
  padding: 0 !important;
  background: transparent !important;
  list-style: none !important;
}

.woocommerce-checkout .cariama-commerce-steps li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(0, 91, 49, 0.52) !important;
}

.woocommerce-checkout .cariama-commerce-steps li:not(:last-child)::after {
  position: absolute !important;
  z-index: 0 !important;
  top: 18px !important;
  right: 8px !important;
  left: 48px !important;
  display: block !important;
  width: auto !important;
  height: 1px !important;
  border: 0 !important;
  background: rgba(0, 91, 49, 0.22) !important;
  content: "" !important;
}

.woocommerce-checkout .cariama-commerce-steps span {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  border-radius: 50% !important;
  background: #fff8ec !important;
  color: #005b31 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

.woocommerce-checkout .cariama-commerce-steps strong {
  position: relative !important;
  z-index: 1 !important;
  display: inline-block !important;
  padding: 0 10px 0 0 !important;
  background: #fff8ec !important;
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-active,
.woocommerce-checkout .cariama-commerce-steps .is-complete {
  background: transparent !important;
  color: #005b31 !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-active span,
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-commerce-steps li:nth-child(3) span {
  border-color: #f4774f !important;
  background: #f4774f !important;
  color: #fff8ec !important;
  box-shadow: 0 8px 20px rgba(244, 119, 79, 0.2) !important;
}

.woocommerce-checkout .cariama-commerce-steps .is-complete span,
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-commerce-steps li:nth-child(2) span {
  border-color: #005b31 !important;
  background: #005b31 !important;
  color: #fff8ec !important;
}

/* Hard checkout delivery gate: no payment content before step 3 */
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #order_review_heading,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #order_review,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .woocommerce-checkout-review-order,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .cariama-payment-heading,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #payment,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .cariama-checkout-back {
  display: none !important;
  visibility: hidden !important;
}

body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .col2-set,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .cariama-checkout-delivery-actions {
  visibility: visible !important;
}

body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .col2-set {
  display: block !important;
}

body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .cariama-checkout-delivery-actions {
  display: flex !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review_heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .woocommerce-checkout-review-order,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment {
  visibility: visible !important;
}

/* Payment choice first: keep card/Pix forms closed until selected */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: min(1220px, 100%) !important;
  margin-inline: auto !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review {
  justify-self: stretch !important;
}

.woocommerce-checkout #payment.is-awaiting-payment-choice div.payment_box,
.woocommerce-checkout #payment.is-awaiting-payment-choice .place-order {
  display: none !important;
}

.woocommerce-checkout #payment.is-awaiting-payment-choice ul.payment_methods li,
body.woocommerce-checkout #payment.is-awaiting-payment-choice ul.payment_methods li {
  cursor: pointer !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li {
  display: grid !important;
  min-height: 76px !important;
  align-content: center !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li > label {
  width: 100% !important;
  justify-content: space-between !important;
  font-size: 16px !important;
}

.woocommerce-checkout #payment ul.payment_methods li.is-selected-payment,
body.woocommerce-checkout #payment ul.payment_methods li.is-selected-payment {
  border-color: #005b31 !important;
  background: #f3d7a7 !important;
  box-shadow: 0 10px 24px rgba(0, 91, 49, 0.12) !important;
}

.woocommerce-checkout #payment .payment_box,
body.woocommerce-checkout #payment .payment_box {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.woocommerce-checkout #payment .payment_box *,
body.woocommerce-checkout #payment .payment_box * {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout #payment iframe,
body.woocommerce-checkout #payment iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Proportional checkout windows across all three steps */
.woocommerce-cart .cariama-generic-page .section-heading,
.woocommerce-checkout .cariama-generic-page .section-heading,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce-info,
.woocommerce-checkout .woocommerce-info,
.woocommerce-cart .woocommerce-message,
.woocommerce-checkout .woocommerce-message,
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout form.checkout,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
  width: min(1220px, 100%) !important;
  max-width: 1220px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  box-sizing: border-box !important;
}

.woocommerce-checkout form.checkout:not(.is-payment-step),
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) {
  display: block !important;
}

.woocommerce-checkout form.checkout:not(.is-payment-step) > .col2-set,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .col2-set,
.woocommerce-checkout form.checkout:not(.is-payment-step) > .cariama-checkout-delivery-actions,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .cariama-checkout-delivery-actions,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment {
  width: 100% !important;
  max-width: none !important;
}

.woocommerce-checkout form.checkout:not(.is-payment-step) > .col2-set,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) > .col2-set {
  padding: clamp(24px, 3vw, 38px) !important;
}

.woocommerce-checkout form.checkout:not(.is-payment-step) .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .woocommerce-billing-fields__field-wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.woocommerce-checkout form.checkout:not(.is-payment-step) #billing_address_1_field,
.woocommerce-checkout form.checkout:not(.is-payment-step) #billing_address_2_field,
.woocommerce-checkout form.checkout:not(.is-payment-step) #billing_email_field,
.woocommerce-checkout form.checkout:not(.is-payment-step) #order_comments_field,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_address_1_field,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_address_2_field,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_email_field,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #order_comments_field {
  grid-column: span 2 !important;
}

.woocommerce-checkout form.checkout:not(.is-payment-step) #billing_country_field,
.woocommerce-checkout form.checkout:not(.is-payment-step) .woocommerce-additional-fields,
.woocommerce-checkout form.checkout:not(.is-payment-step) #ship-to-different-address,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_country_field,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .woocommerce-additional-fields,
body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #ship-to-different-address {
  grid-column: 1 / -1 !important;
}

@media (max-width: 980px) {
  .woocommerce-checkout form.checkout:not(.is-payment-step) .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .woocommerce-cart .cariama-generic-page .section-heading,
  .woocommerce-checkout .cariama-generic-page .section-heading,
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce,
  .woocommerce-checkout form.checkout,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout,
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
    width: 100% !important;
    max-width: 100% !important;
  }

  .woocommerce-checkout form.checkout:not(.is-payment-step) .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-checkout form.checkout:not(.is-payment-step) #billing_address_1_field,
  .woocommerce-checkout form.checkout:not(.is-payment-step) #billing_address_2_field,
  .woocommerce-checkout form.checkout:not(.is-payment-step) #billing_email_field,
  .woocommerce-checkout form.checkout:not(.is-payment-step) #order_comments_field,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_address_1_field,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_address_2_field,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #billing_email_field,
  body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout:not(.is-payment-step) #order_comments_field {
    grid-column: 1 !important;
  }
}

/* Final payment width and Pix/Card chooser enforcement */
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-wc-flow,
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-wc-flow .woocommerce,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment {
  width: min(1220px, 100%) !important;
  max-width: 1220px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods li {
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 720px) {
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods {
    grid-template-columns: 1fr !important;
  }
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods li.payment_method_cariama_pix > label::after {
  content: "Pix" !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods li.payment_method_cariama_pix {
  border-color: rgba(0, 91, 49, 0.22) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods li.payment_method_cariama_pix > label::before {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step .cariama-payment-heading h2 {
  font-size: clamp(30px, 2.8vw, 48px) !important;
}

/* v1.1.43 - Checkout final: proportional windows + real Pix/Card selector */
body.woocommerce-checkout .cariama-generic-page.cariama-woocommerce-page > .section-heading {
  width: min(1220px, calc(100vw - 120px)) !important;
  max-width: 1220px !important;
  margin-inline: auto !important;
}

body.woocommerce-checkout .cariama-wc-flow,
body.woocommerce-checkout .cariama-wc-flow > .woocommerce,
body.woocommerce-checkout .cariama-wc-flow .woocommerce-info,
body.woocommerce-checkout .cariama-wc-flow .woocommerce-form-coupon-toggle,
body.woocommerce-checkout .cariama-wc-flow .woocommerce-form-login-toggle,
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout form.checkout > .col2-set,
body.woocommerce-checkout form.checkout > #order_review,
body.woocommerce-checkout form.checkout > #order_review_heading,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #payment,
body.woocommerce-checkout .cariama-payment-heading,
body.woocommerce-checkout table.shop_table {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout form.checkout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  margin-inline: 0 !important;
}

body.woocommerce-checkout:not(.cariama-checkout-payment-step) form.checkout > .col2-set {
  min-height: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  justify-self: stretch !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review_heading {
  margin: 18px 0 6px !important;
  text-align: left !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-checkout-back {
  justify-self: start !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-payment-heading {
  border: 2px solid #ff7a4f !important;
  border-radius: 8px !important;
  padding: 22px 28px !important;
  background: rgba(255, 252, 245, 0.86) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-payment-heading h2 {
  margin: 0 0 6px !important;
  font-size: clamp(32px, 3vw, 48px) !important;
  line-height: 0.95 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment {
  padding: 22px !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(255, 252, 245, 0.92) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method {
  position: relative !important;
  display: block !important;
  min-height: 88px !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(255, 252, 245, 0.94) !important;
  overflow: visible !important;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(0, 91, 49, 0.55) !important;
  box-shadow: 0 12px 28px rgba(0, 91, 49, 0.1) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > input.input-radio {
  position: absolute !important;
  inset: 50% auto auto 18px !important;
  width: 18px !important;
  height: 18px !important;
  margin: -9px 0 0 !important;
  opacity: 1 !important;
  accent-color: #005b31 !important;
  z-index: 3 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 20px !important;
  align-items: center !important;
  gap: 16px !important;
  min-height: 88px !important;
  width: 100% !important;
  padding: 18px 22px 18px 52px !important;
  margin: 0 !important;
  color: #005b31 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-icon {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  background-color: #f3d7a7 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 28px 28px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-pix .cariama-payment-option-icon {
  background-image: url("../artes/icons8-pix-96.png") !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-card .cariama-payment-option-icon,
body.woocommerce-checkout.cariama-checkout-payment-step #payment li:not(.cariama-payment-option-pix) .cariama-payment-option-icon {
  background-image: url("../artes/icons8-magnetic-card-96.png") !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-title {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-dot {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid rgba(0, 91, 49, 0.35) !important;
  border-radius: 50% !important;
  background: #fffaf0 !important;
  box-shadow: inset 0 0 0 4px #fffaf0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method:has(input:checked),
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method.is-selected-payment {
  border-color: #005b31 !important;
  background: #f3d7a7 !important;
  box-shadow: 0 14px 30px rgba(0, 91, 49, 0.14) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method:has(input:checked) .cariama-payment-option-dot,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method.is-selected-payment .cariama-payment-option-dot {
  border-color: #005b31 !important;
  background: #005b31 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment div.payment_box {
  width: calc(100% - 44px) !important;
  max-width: none !important;
  margin: 0 22px 22px !important;
  padding: 0 !important;
  background: transparent !important;
  color: #2d231d !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment div.payment_box::before {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout .cariama-pix-checkout-box {
  display: grid !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 18px !important;
  border: 1px solid rgba(0, 91, 49, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(255, 250, 240, 0.94) !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  color: #005b31 !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header strong {
  font-size: 20px !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header span,
body.woocommerce-checkout .cariama-pix-checkout-alert,
body.woocommerce-checkout .cariama-pix-checkout-content p {
  margin: 0 !important;
  color: #2d231d !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout .cariama-pix-checkout-alert {
  padding: 12px 14px !important;
  border: 1px solid #ff7a4f !important;
  border-radius: 8px !important;
  background: rgba(255, 122, 79, 0.1) !important;
}

body.woocommerce-checkout .cariama-pix-rendered {
  display: grid !important;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

body.woocommerce-checkout .cariama-pix-qr {
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 14px !important;
  border-radius: 10px !important;
  background: #fff !important;
}

body.woocommerce-checkout .cariama-pix-qr img {
  display: block !important;
  width: min(190px, 100%) !important;
  height: auto !important;
}

body.woocommerce-checkout .cariama-pix-copy-area {
  display: grid !important;
  gap: 10px !important;
}

body.woocommerce-checkout .cariama-pix-copy-area strong {
  color: #005b31 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .cariama-pix-copy-area textarea {
  min-height: 104px !important;
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid rgba(0, 91, 49, 0.28) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #2d231d !important;
  font: 700 13px/1.45 monospace !important;
  resize: vertical !important;
}

body.woocommerce-checkout .cariama-pix-copy-button {
  justify-self: start !important;
  min-height: 46px !important;
  padding-inline: 22px !important;
  border-radius: 8px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
}

@media (max-width: 900px) {
  body.woocommerce-checkout .cariama-generic-page.cariama-woocommerce-page > .section-heading {
    width: min(100%, calc(100vw - 32px)) !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
  body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods,
  body.woocommerce-checkout .cariama-pix-rendered {
    grid-template-columns: 1fr !important;
  }
}

/* v1.1.47 - Cart page aligned to clean WooCommerce reference */
body.woocommerce-cart {
  background: #fffdf8 !important;
}

body.woocommerce-cart .cariama-generic-page,
body.woocommerce-cart .site-main {
  min-height: 100vh !important;
  background: #fffdf8 !important;
}

body.woocommerce-cart .cariama-generic-page.cariama-woocommerce-page > .section-heading {
  width: min(720px, calc(100vw - 40px)) !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 58px 0 70px !important;
  color: #9f2f31 !important;
  text-align: left !important;
}

body.woocommerce-cart .cariama-generic-page .section-kicker,
body.woocommerce-cart .cariama-commerce-lead,
body.woocommerce-cart .cariama-commerce-steps {
  display: none !important;
}

body.woocommerce-cart .cariama-generic-page .section-heading > h1 {
  margin: 0 0 14px !important;
  color: #9f2f31 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

body.woocommerce-cart .cariama-wc-flow,
body.woocommerce-cart .cariama-wc-flow > .woocommerce,
body.woocommerce-cart .woocommerce {
  width: 100% !important;
  max-width: none !important;
  color: #5b4a3d !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 12px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #9f2f31 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
  display: none !important;
}

body.woocommerce-cart .woocommerce-message a,
body.woocommerce-cart .woocommerce-info a,
body.woocommerce-cart .woocommerce-error a {
  color: #fff !important;
  text-decoration: underline !important;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart table.shop_table,
body.woocommerce-cart .cart-collaterals .cart_totals {
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #e2dfda !important;
  border-radius: 3px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-cart table.shop_table {
  width: 100% !important;
  border-collapse: collapse !important;
  overflow: hidden !important;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
  padding: 9px 12px !important;
  border: 1px solid #e2dfda !important;
  color: #5b4a3d !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  vertical-align: middle !important;
}

body.woocommerce-cart table.shop_table th {
  background: #fff !important;
  color: #666 !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

body.woocommerce-cart table.cart .product-remove {
  width: 28px !important;
  text-align: center !important;
}

body.woocommerce-cart table.cart .product-remove a.remove {
  display: inline-grid !important;
  place-items: center !important;
  width: 16px !important;
  height: 16px !important;
  color: #c0181f !important;
  background: transparent !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body.woocommerce-cart table.cart .product-remove a.remove:hover {
  color: #fff !important;
  background: #c0181f !important;
}

body.woocommerce-cart table.cart img,
body.woocommerce-cart .product-thumbnail img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-cart .product-name,
body.woocommerce-cart .product-name a {
  color: #9f2f31 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal,
body.woocommerce-cart .cart_totals td {
  color: #5b4a3d !important;
  font-size: 11px !important;
}

body.woocommerce-cart .quantity .qty {
  width: 40px !important;
  min-height: 36px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eee !important;
  color: #7c746c !important;
  font-size: 12px !important;
  text-align: center !important;
}

body.woocommerce-cart table.cart td.actions {
  padding: 8px !important;
}

body.woocommerce-cart table.cart td.actions .coupon {
  display: flex !important;
  float: left !important;
  gap: 8px !important;
  align-items: stretch !important;
}

body.woocommerce-cart .coupon .input-text {
  width: 105px !important;
  min-height: 34px !important;
  padding: 8px 10px !important;
  border: 1px solid #ece7de !important;
  border-radius: 0 !important;
  background: #f0f0f0 !important;
  color: #8b8179 !important;
  font-size: 11px !important;
}

body.woocommerce-cart .actions .button,
body.woocommerce-cart .coupon .button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  min-height: 34px !important;
  padding: 8px 14px !important;
  border: 1px solid #b33a3a !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #9f2f31 !important;
  box-shadow: none !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

body.woocommerce-cart table.cart td.actions > .button {
  float: right !important;
  border-color: #c9c5bd !important;
  color: #aaa39c !important;
}

body.woocommerce-cart .cart-collaterals {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 346px) !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
  margin-top: 20px !important;
}

body.woocommerce-cart .cart-collaterals::before,
body.woocommerce-cart .cart-collaterals::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-cart .cross-sells {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  float: none !important;
  width: 100% !important;
  grid-column: 2 !important;
}

body.woocommerce-cart .cross-sells h2,
body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 12px !important;
  color: #5b4a3d !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

body.woocommerce-cart .cart_totals h2 {
  padding: 0 !important;
}

body.woocommerce-cart .cart_totals table.shop_table {
  margin: 0 !important;
}

body.woocommerce-cart ul#shipping_method {
  display: grid !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.woocommerce-cart ul#shipping_method li {
  display: grid !important;
  grid-template-columns: 14px minmax(0, 1fr) !important;
  gap: 6px !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #5b4a3d !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

body.woocommerce-cart ul#shipping_method input {
  margin: 1px 0 0 !important;
  accent-color: #0073ff !important;
}

body.woocommerce-cart .shipping-calculator-button {
  color: #9f2f31 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 28px 0 0 !important;
  margin: 0 !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block !important;
  width: 100% !important;
  min-height: 34px !important;
  padding: 8px 18px !important;
  border-color: #1684ff !important;
  color: #9f2f31 !important;
  background: #fff !important;
  font-size: 16px !important;
  text-align: center !important;
}

body.woocommerce-cart .cross-sells ul.products {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  width: 180px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-cart .cross-sells ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

body.woocommerce-cart .cross-sells ul.products li.product img {
  display: block !important;
  width: 150px !important;
  height: 150px !important;
  margin: 28px 0 58px !important;
  object-fit: contain !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 6px !important;
  color: #5b4a3d !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .star-rating {
  margin: 0 0 12px !important;
  color: #9f2f31 !important;
  font-size: 10px !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .button {
  min-height: 34px !important;
  padding: 8px 16px !important;
  border: 1px solid #b33a3a !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #9f2f31 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

@media (max-width: 760px) {
  body.woocommerce-cart .cariama-generic-page.cariama-woocommerce-page > .section-heading {
    width: min(100%, calc(100vw - 24px)) !important;
    padding-top: 34px !important;
  }

  body.woocommerce-cart .cart-collaterals {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    grid-column: 1 !important;
  }

  body.woocommerce-cart table.cart td.actions .coupon,
  body.woocommerce-cart table.cart td.actions > .button {
    float: none !important;
    width: 100% !important;
    margin-top: 8px !important;
  }
}

/* v1.1.48 - Use the real "Cariama PIX Status" gateway without duplicated label UI */
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods {
  align-items: stretch !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix {
  order: 1 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-card {
  order: 2 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > input.input-radio {
  opacity: 0 !important;
  pointer-events: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label img,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label svg,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label br {
  display: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label {
  grid-template-columns: 42px minmax(0, 1fr) 20px !important;
  overflow: hidden !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix > label,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-card > label {
  color: #005b31 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix .cariama-payment-option-title,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-card .cariama-payment-option-title {
  display: block !important;
  color: #005b31 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix .payment_box {
  grid-column: 1 / -1 !important;
  width: calc(100% - 44px) !important;
  margin: 0 22px 22px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix .cariama-pix-checkout-box {
  margin-top: 8px !important;
}

/* v1.1.49 - Correct selectable payment cards for Cariama PIX Status + credit card */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review_heading,
body.woocommerce-checkout.cariama-checkout-payment-step #order_review_heading {
  display: block !important;
  width: 100% !important;
  margin: 10px 0 14px !important;
  padding: 0 0 10px !important;
  border-bottom: 3px solid rgba(0, 91, 49, 0.18) !important;
  color: #005b31 !important;
  font-size: clamp(36px, 3.8vw, 58px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table {
  margin-bottom: 14px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  padding: 18px !important;
  align-items: start !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 88px !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 91, 49, 0.24) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 247, 0.96) !important;
  overflow: hidden !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > input.input-radio {
  position: absolute !important;
  top: 50% !important;
  left: 18px !important;
  z-index: 5 !important;
  width: 18px !important;
  height: 18px !important;
  margin: -9px 0 0 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  accent-color: #005b31 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100% !important;
  min-height: 88px !important;
  margin: 0 !important;
  padding: 18px 22px 18px 56px !important;
  cursor: pointer !important;
  color: #005b31 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label::after,
body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-dot {
  display: none !important;
  content: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label > *:not(.cariama-payment-option-icon):not(.cariama-payment-option-title) {
  display: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-icon {
  display: block !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  background-color: #f3d7a7 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 28px 28px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-pix .cariama-payment-option-icon {
  background-image: url("../artes/icons8-pix-96.png") !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-card .cariama-payment-option-icon {
  background-image: url("../artes/icons8-magnetic-card-96.png") !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-title {
  display: block !important;
  min-width: 0 !important;
  overflow: visible !important;
  color: #005b31 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  text-overflow: clip !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method:has(input:checked),
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method.is-selected-payment {
  border-color: #005b31 !important;
  background: #f3d7a7 !important;
  box-shadow: 0 14px 30px rgba(0, 91, 49, 0.14) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method div.payment_box {
  width: calc(100% - 36px) !important;
  margin: 0 18px 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method div.payment_box:empty {
  display: none !important;
}

@media (max-width: 760px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
  body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods {
    grid-template-columns: 1fr !important;
  }
}

/* v1.1.51 - Final checkout payment card usability and order readability */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table th,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table td {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .product-name,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .product-name *,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .product-total {
  font-size: 14px !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .variation,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .variation * {
  font-size: 12px !important;
  font-weight: 850 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method {
  cursor: pointer !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label {
  pointer-events: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > input.input-radio {
  pointer-events: auto !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-icon,
body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-pix .cariama-payment-option-icon,
body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-card .cariama-payment-option-icon {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-pix .cariama-payment-option-icon {
  background-color: transparent !important;
  background-size: 34px 34px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-card .cariama-payment-option-icon {
  background-color: transparent !important;
  background-size: 32px 32px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix > label {
  grid-template-columns: 42px minmax(0, 1fr) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix > label::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix > label::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-pix > label > :not(.cariama-payment-option-icon):not(.cariama-payment-option-title),
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-card > label > :not(.cariama-payment-option-icon):not(.cariama-payment-option-title) {
  display: none !important;
}

/* v1.1.52 - Premium payment design, remove legacy Pix "P" badge completely */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods li.payment_method_cariama_pix > label::before,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods li.payment_method_cariama_pix > label::after,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.payment_method_cariama_pix > label::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.payment_method_cariama_pix > label::after,
body.woocommerce-checkout #payment ul.payment_methods li.payment_method_cariama_pix > label::before,
body.woocommerce-checkout #payment ul.payment_methods li.payment_method_cariama_pix > label::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment {
  padding: 26px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 215, 167, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 236, 0.96)) !important;
  box-shadow: 0 24px 58px rgba(81, 53, 31, 0.12) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods {
  gap: 20px !important;
  padding: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method {
  min-height: 96px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 247, 0.92) !important;
  box-shadow: 0 14px 32px rgba(81, 53, 31, 0.06) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method:hover {
  border-color: rgba(0, 91, 49, 0.48) !important;
  transform: translateY(-1px) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method:has(input:checked),
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method.is-selected-payment {
  border-color: #005b31 !important;
  background: linear-gradient(135deg, #f3d7a7, #fff4da) !important;
  box-shadow: 0 18px 42px rgba(0, 91, 49, 0.16) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > input.input-radio {
  left: 22px !important;
  width: 18px !important;
  height: 18px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method > label {
  min-height: 96px !important;
  padding: 20px 24px 20px 62px !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  gap: 16px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-size: 36px 36px !important;
  filter: drop-shadow(0 6px 10px rgba(0, 91, 49, 0.12)) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-title {
  color: #005b31 !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

body.woocommerce-checkout .cariama-pix-checkout-box {
  padding: 22px !important;
  border: 1px solid rgba(0, 91, 49, 0.16) !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: inset 0 0 0 1px rgba(243, 215, 167, 0.38), 0 18px 34px rgba(0, 91, 49, 0.1) !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header {
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(0, 91, 49, 0.12) !important;
}

body.woocommerce-checkout .cariama-pix-rendered {
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: center !important;
}

body.woocommerce-checkout .cariama-pix-qr {
  padding: 18px !important;
  border: 1px solid rgba(0, 91, 49, 0.1) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 14px 28px rgba(81, 53, 31, 0.08) !important;
}

body.woocommerce-checkout .cariama-pix-qr img {
  width: min(205px, 100%) !important;
}

body.woocommerce-checkout .cariama-pix-copy-area textarea {
  min-height: 116px !important;
  border-radius: 10px !important;
  border-color: rgba(0, 91, 49, 0.18) !important;
  background: #fffdf7 !important;
}

body.woocommerce-checkout .cariama-pix-copy-button {
  border-radius: 10px !important;
  box-shadow: 0 12px 24px rgba(0, 91, 49, 0.18) !important;
}

/* v1.1.53 - Payment accordion: selected method expands, the other becomes a compact switch */
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment {
  grid-template-columns: 1fr !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method {
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment {
  order: 1 !important;
  min-height: 0 !important;
  border-color: #005b31 !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 215, 167, 0.78), transparent 34%),
    linear-gradient(135deg, #fff8ec, #f3d7a7) !important;
  box-shadow: 0 22px 48px rgba(0, 91, 49, 0.16) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment {
  order: 2 !important;
  min-height: 66px !important;
  background: rgba(255, 253, 247, 0.86) !important;
  box-shadow: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment > label {
  min-height: 66px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment .cariama-payment-option-icon {
  width: 34px !important;
  height: 34px !important;
  background-size: 28px 28px !important;
  opacity: 0.78 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment .cariama-payment-option-title::after {
  content: " — trocar para esta opção" !important;
  color: rgba(0, 91, 49, 0.58) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
  display: block !important;
  width: calc(100% - 48px) !important;
  margin: 0 24px 24px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment div.payment_box {
  display: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment > label {
  min-height: 82px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment > input.input-radio {
  top: 41px !important;
}

/* v1.1.54 - Larger customer-facing Pix panel with mobile responsive layout */
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment {
  width: 100% !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
  width: calc(100% - 40px) !important;
  margin: 0 20px 22px !important;
}

body.woocommerce-checkout .cariama-pix-checkout-box {
  width: 100% !important;
  max-width: none !important;
  padding: clamp(22px, 3vw, 34px) !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header strong {
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 0.98 !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header span {
  color: rgba(0, 91, 49, 0.72) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-align: right !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .cariama-pix-rendered {
  grid-template-columns: minmax(230px, 300px) minmax(280px, 1fr) !important;
  gap: clamp(24px, 4vw, 44px) !important;
  align-items: center !important;
}

body.woocommerce-checkout .cariama-pix-qr {
  min-height: 300px !important;
  padding: 24px !important;
}

body.woocommerce-checkout .cariama-pix-qr img {
  width: min(260px, 100%) !important;
}

body.woocommerce-checkout .cariama-pix-copy-area {
  align-content: center !important;
  gap: 14px !important;
}

body.woocommerce-checkout .cariama-pix-copy-area strong {
  font-size: clamp(20px, 1.8vw, 28px) !important;
  line-height: 1 !important;
}

body.woocommerce-checkout .cariama-pix-copy-area textarea {
  min-height: 150px !important;
  padding: 16px !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body.woocommerce-checkout .cariama-pix-copy-button {
  min-height: 54px !important;
  width: min(280px, 100%) !important;
  font-size: 14px !important;
}

body.woocommerce-checkout .cariama-pix-copy-area small {
  color: rgba(58, 38, 24, 0.72) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 860px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment {
    padding: 18px !important;
  }

  body.woocommerce-checkout .cariama-pix-rendered {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout .cariama-pix-qr {
    min-height: auto !important;
  }

  body.woocommerce-checkout .cariama-pix-qr img {
    width: min(240px, 78vw) !important;
  }

  body.woocommerce-checkout .cariama-pix-copy-area textarea {
    min-height: 130px !important;
  }
}

@media (max-width: 560px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
    width: calc(100% - 24px) !important;
    margin: 0 12px 14px !important;
  }

  body.woocommerce-checkout .cariama-pix-checkout-box {
    padding: 18px !important;
  }

  body.woocommerce-checkout .cariama-pix-checkout-header {
    display: grid !important;
    align-items: start !important;
  }

  body.woocommerce-checkout .cariama-pix-checkout-header span {
    text-align: left !important;
  }
}

/* v1.1.55 - Full-width elegant payment accordion, clean radios and responsive Pix/Card panels */
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods,
body.woocommerce-checkout.cariama-checkout-payment-step #payment.is-awaiting-payment-choice ul.payment_methods,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.wc_payment_method,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready {
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready > input.input-radio {
  position: absolute !important;
  top: 30px !important;
  left: 24px !important;
  z-index: 4 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready::before {
  content: "" !important;
  position: absolute !important;
  top: 31px !important;
  left: 24px !important;
  z-index: 3 !important;
  width: 18px !important;
  height: 18px !important;
  border: 1px solid rgba(0, 91, 49, 0.42) !important;
  border-radius: 999px !important;
  background: #fffdf7 !important;
  box-shadow: inset 0 0 0 4px #fffdf7 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready.is-expanded-payment::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready.is-selected-payment::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready:has(input:checked)::before {
  background: #005b31 !important;
  border-color: #005b31 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready > label {
  pointer-events: none !important;
  min-height: 82px !important;
  padding: 20px 28px 20px 74px !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  gap: 18px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-icon,
body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-pix .cariama-payment-option-icon,
body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-card .cariama-payment-option-icon {
  width: 46px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: none !important;
  outline: 0 !important;
  filter: drop-shadow(0 8px 12px rgba(0, 91, 49, 0.14)) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-pix .cariama-payment-option-icon {
  background-image: url("../artes/icons8-pix-96.png") !important;
  background-size: 40px 40px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-card .cariama-payment-option-icon {
  background-image: url("../artes/icons8-magnetic-card-96.png") !important;
  background-size: 38px 38px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-title {
  font-size: clamp(17px, 1.45vw, 22px) !important;
  line-height: 1.05 !important;
  white-space: normal !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment {
  order: 1 !important;
  min-height: 0 !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 215, 167, 0.82), transparent 38%),
    linear-gradient(135deg, #fff8ec, #f7ddb0) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment {
  order: 2 !important;
  min-height: 76px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: 0 12px 26px rgba(81, 53, 31, 0.05) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment > label {
  min-height: 76px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment .cariama-payment-option-title::after {
  content: " — trocar para esta opção" !important;
  color: rgba(0, 91, 49, 0.56) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
  display: block !important;
  width: calc(100% - 56px) !important;
  max-width: none !important;
  margin: 0 28px 28px !important;
  padding: 0 !important;
}

body.woocommerce-checkout .cariama-pix-checkout-box {
  min-height: 360px !important;
  padding: clamp(28px, 4vw, 46px) !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header span {
  font-size: 0 !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header span::before {
  content: "Escaneie ou copie o código" !important;
  color: rgba(0, 91, 49, 0.72) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .cariama-pix-rendered {
  grid-template-columns: minmax(260px, 360px) minmax(320px, 1fr) !important;
  gap: clamp(28px, 5vw, 56px) !important;
}

body.woocommerce-checkout .cariama-pix-qr {
  display: grid !important;
  place-items: center !important;
  min-height: 340px !important;
}

body.woocommerce-checkout .cariama-pix-qr img {
  width: min(300px, 100%) !important;
}

body.woocommerce-checkout .cariama-pix-copy-area textarea {
  width: 100% !important;
  min-height: 172px !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout .cariama-pix-copy-button {
  width: min(320px, 100%) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .product-name,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .product-name *,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table .product-total {
  font-size: clamp(15px, 1.2vw, 18px) !important;
  line-height: 1.45 !important;
}

@media (max-width: 820px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment {
    padding: 18px !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
    width: calc(100% - 32px) !important;
    margin: 0 16px 18px !important;
  }

  body.woocommerce-checkout .cariama-pix-rendered {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout .cariama-pix-qr {
    min-height: auto !important;
  }

  body.woocommerce-checkout .cariama-pix-qr img {
    width: min(270px, 78vw) !important;
  }
}

@media (max-width: 520px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready::before {
    top: 24px !important;
    left: 16px !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods li.cariama-payment-option-ready > label {
    min-height: 68px !important;
    padding: 14px 16px 14px 48px !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step #payment .cariama-payment-option-icon {
    width: 38px !important;
    height: 38px !important;
    background-size: 32px 32px !important;
  }

  body.woocommerce-checkout .cariama-pix-checkout-box {
    min-height: 0 !important;
    padding: 18px !important;
  }

  body.woocommerce-checkout .cariama-pix-copy-area textarea {
    min-height: 138px !important;
    font-size: 13px !important;
  }
}

/* v1.1.56 - Fix clipped Pix panel: selected payment opens as a full-width stage */
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-compact-payment {
  grid-column: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment > label {
  border-bottom: 1px solid rgba(0, 91, 49, 0.12) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.cariama-payment-option-pix.is-expanded-payment div.payment_box {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 24px !important;
  overflow: visible !important;
}

body.woocommerce-checkout .cariama-pix-checkout-box {
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
}

body.woocommerce-checkout .cariama-pix-checkout-content,
body.woocommerce-checkout .cariama-pix-rendered,
body.woocommerce-checkout .cariama-pix-copy-area {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body.woocommerce-checkout .cariama-pix-rendered {
  display: grid !important;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) !important;
  gap: clamp(26px, 4vw, 54px) !important;
  align-items: stretch !important;
}

body.woocommerce-checkout .cariama-pix-copy-area textarea {
  max-width: 100% !important;
  resize: vertical !important;
  white-space: pre-wrap !important;
  overflow-wrap: anywhere !important;
  word-break: break-all !important;
}

body.woocommerce-checkout .cariama-pix-copy-area strong {
  white-space: normal !important;
}

body.woocommerce-checkout .cariama-pix-copy-button {
  max-width: 100% !important;
  white-space: normal !important;
}

@media (max-width: 760px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
    padding: 16px !important;
  }

  body.woocommerce-checkout .cariama-pix-rendered {
    grid-template-columns: 1fr !important;
  }
}

/* v1.1.57 - Clean checkout validation notices and fix back button spacing */
body.woocommerce-checkout form.checkout .woocommerce-NoticeGroup,
body.woocommerce-checkout form.checkout .woocommerce-NoticeGroup-checkout,
body.woocommerce-checkout .woocommerce-NoticeGroup,
body.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  clear: both !important;
  order: -20 !important;
  margin: 0 0 18px !important;
  float: none !important;
}

body.woocommerce-checkout form.checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-error,
body.woocommerce-checkout form.checkout ul.woocommerce-error,
body.woocommerce-checkout ul.woocommerce-error {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  gap: 8px 12px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 20px !important;
  padding: 18px 22px 18px 58px !important;
  border-top: 0 !important;
  border-left: 6px solid #a83232 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #fff8f3, #fffdf7) !important;
  color: #005b31 !important;
  box-shadow: 0 16px 34px rgba(81, 53, 31, 0.08) !important;
  list-style: none !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout form.checkout .woocommerce-error::before,
body.woocommerce-checkout .woocommerce-error::before {
  top: 20px !important;
  left: 22px !important;
  color: #a83232 !important;
  font-size: 18px !important;
}

body.woocommerce-checkout form.checkout .woocommerce-error li,
body.woocommerce-checkout .woocommerce-error li {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #005b31 !important;
  font-size: clamp(14px, 1.15vw, 17px) !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review_heading,
body.woocommerce-checkout.cariama-checkout-payment-step #order_review_heading {
  margin: 24px 0 16px !important;
  padding-bottom: 12px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review {
  gap: 16px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-checkout-back,
body.woocommerce-checkout .cariama-checkout-back {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: start !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 42px !important;
  margin: 0 0 8px !important;
  padding: 0 18px !important;
  transform: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  z-index: 1 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review table.shop_table {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  body.woocommerce-checkout form.checkout .woocommerce-error,
  body.woocommerce-checkout ul.woocommerce-error {
    padding: 16px 16px 16px 48px !important;
  }

  body.woocommerce-checkout form.checkout .woocommerce-error::before,
  body.woocommerce-checkout .woocommerce-error::before {
    left: 17px !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-checkout-back {
    width: 100% !important;
  }
}

/* v1.1.59 - Complete ecommerce account registration with CPF/address fields */
body.woocommerce-account #customer_login,
.woocommerce-account #customer_login {
  grid-template-columns: minmax(0, 780px) !important;
  max-width: 900px !important;
}

body.woocommerce-account #customer_login .u-column2,
body.woocommerce-account #customer_login .col-2,
.woocommerce-account #customer_login .u-column2,
.woocommerce-account #customer_login .col-2 {
  max-width: 780px !important;
}

body.woocommerce-account #customer_login .u-column2 form.register,
.woocommerce-account #customer_login .u-column2 form.register,
body.woocommerce-account #customer_login .col-2 form.register,
.woocommerce-account #customer_login .col-2 form.register {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px 18px !important;
}

body.woocommerce-account #customer_login .u-column2 form.register > h2,
body.woocommerce-account #customer_login .u-column2 form.register > .woocommerce-privacy-policy-text,
body.woocommerce-account #customer_login .u-column2 form.register > p:not(.form-row),
body.woocommerce-account #customer_login .u-column2 form.register > .form-row-wide,
body.woocommerce-account #customer_login .u-column2 form.register > .cariama-register-complete,
body.woocommerce-account #customer_login .u-column2 form.register > p:last-child,
.woocommerce-account #customer_login .u-column2 form.register > h2,
.woocommerce-account #customer_login .u-column2 form.register > .woocommerce-privacy-policy-text,
.woocommerce-account #customer_login .u-column2 form.register > p:not(.form-row),
.woocommerce-account #customer_login .u-column2 form.register > .form-row-wide,
.woocommerce-account #customer_login .u-column2 form.register > .cariama-register-complete,
.woocommerce-account #customer_login .u-column2 form.register > p:last-child {
  grid-column: 1 / -1 !important;
}

body.woocommerce-account #customer_login .u-column2 form.register > .form-row,
.woocommerce-account #customer_login .u-column2 form.register > .form-row {
  margin: 0 !important;
}

body.woocommerce-account .cariama-register-complete,
.woocommerce-account .cariama-register-complete {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px 18px !important;
  margin: 6px 0 4px !important;
  padding: 22px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 215, 167, 0.42), transparent 36%),
    rgba(255, 253, 247, 0.72) !important;
}

body.woocommerce-account .cariama-register-complete h3,
.woocommerce-account .cariama-register-complete h3,
body.woocommerce-account .cariama-register-helper,
.woocommerce-account .cariama-register-helper {
  grid-column: 1 / -1 !important;
}

body.woocommerce-account .cariama-register-complete h3,
.woocommerce-account .cariama-register-complete h3 {
  margin: 8px 0 0 !important;
  color: #005b31 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
}

body.woocommerce-account .cariama-register-helper,
.woocommerce-account .cariama-register-helper {
  margin: -6px 0 4px !important;
  color: rgba(58, 38, 24, 0.72) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

body.woocommerce-account .cariama-register-complete .form-row,
.woocommerce-account .cariama-register-complete .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce-account .cariama-register-complete .form-row-wide,
.woocommerce-account .cariama-register-complete .form-row-wide {
  grid-column: 1 / -1 !important;
}

body.woocommerce-account #customer_login select,
.woocommerce-account #customer_login select {
  width: 100% !important;
  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;
}

body.woocommerce-account #customer_login .woocommerce-error,
.woocommerce-account #customer_login .woocommerce-error {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

@media (max-width: 760px) {
  body.woocommerce-account #customer_login,
  .woocommerce-account #customer_login {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  body.woocommerce-account #customer_login .u-column2 form.register,
  .woocommerce-account #customer_login .u-column2 form.register,
  body.woocommerce-account .cariama-register-complete,
  .woocommerce-account .cariama-register-complete {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-account .cariama-register-complete {
    padding: 16px !important;
  }
}

/* v1.1.60 - Premium Cariama cart, aligned with the new visual language */
body.woocommerce-cart,
body.woocommerce-cart .site-main,
body.woocommerce-cart .cariama-generic-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 123, 80, 0.12), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(0, 91, 49, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8ec 0%, #f4ddb1 100%) !important;
  color: #005b31 !important;
  font-family: var(--body-font, inherit) !important;
}

body.woocommerce-cart .cariama-generic-page.cariama-woocommerce-page {
  padding: clamp(46px, 6vw, 92px) clamp(18px, 5vw, 76px) clamp(72px, 8vw, 118px) !important;
}

body.woocommerce-cart .cariama-generic-page.cariama-woocommerce-page > .section-heading {
  width: min(1220px, 100%) !important;
  max-width: 1220px !important;
  margin: 0 auto 28px !important;
  padding: 0 !important;
  text-align: left !important;
}

body.woocommerce-cart .cariama-generic-page .section-heading > h1,
body.woocommerce-cart .page-title,
body.woocommerce-cart h1 {
  color: #005b31 !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: clamp(52px, 6vw, 92px) !important;
  font-weight: 950 !important;
  line-height: 0.86 !important;
  letter-spacing: -0.03em !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

body.woocommerce-cart .cariama-wc-flow,
body.woocommerce-cart .cariama-wc-flow > .woocommerce,
body.woocommerce-cart .woocommerce {
  width: min(1220px, 100%) !important;
  max-width: 1220px !important;
  margin-inline: auto !important;
  color: #005b31 !important;
  font-family: var(--body-font, inherit) !important;
  font-size: 16px !important;
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  width: 100% !important;
  margin: 0 0 22px !important;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
  padding: 16px 22px !important;
  border: 0 !important;
  border-left: 6px solid #005b31 !important;
  border-radius: 12px !important;
  background: rgba(255, 253, 247, 0.92) !important;
  color: #005b31 !important;
  box-shadow: 0 18px 42px rgba(81, 53, 31, 0.08) !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before,
body.woocommerce-cart .woocommerce-error::before {
  display: none !important;
}

body.woocommerce-cart .woocommerce-cart-form {
  float: left !important;
  width: min(100%, 760px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table,
body.woocommerce-cart table.cart.shop_table {
  overflow: hidden !important;
  width: 100% !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 14px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: 0 26px 58px rgba(81, 53, 31, 0.1) !important;
}

body.woocommerce-cart table.cart.shop_table th,
body.woocommerce-cart table.cart.shop_table td {
  padding: 18px 16px !important;
  border-width: 0 0 1px !important;
  border-color: rgba(0, 91, 49, 0.12) !important;
  color: #005b31 !important;
  font-family: var(--body-font, inherit) !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  vertical-align: middle !important;
}

body.woocommerce-cart table.cart.shop_table th {
  background: rgba(255, 248, 236, 0.72) !important;
  color: rgba(0, 91, 49, 0.78) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

body.woocommerce-cart table.cart .product-remove {
  width: 42px !important;
}

body.woocommerce-cart table.cart .product-remove a.remove {
  display: inline-grid !important;
  place-items: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: rgba(159, 47, 49, 0.08) !important;
  color: #9f2f31 !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

body.woocommerce-cart table.cart .product-remove a.remove:hover {
  background: #9f2f31 !important;
  color: #fff8ec !important;
}

body.woocommerce-cart table.cart img,
body.woocommerce-cart .product-thumbnail img {
  width: 58px !important;
  height: 58px !important;
  padding: 4px !important;
  border: 1px solid rgba(0, 91, 49, 0.1) !important;
  border-radius: 12px !important;
  background: #fff !important;
  object-fit: contain !important;
  box-shadow: 0 12px 24px rgba(81, 53, 31, 0.08) !important;
}

body.woocommerce-cart .product-name,
body.woocommerce-cart .product-name a {
  color: #005b31 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

body.woocommerce-cart .product-name .variation,
body.woocommerce-cart .product-name .variation * {
  color: rgba(0, 91, 49, 0.82) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal,
body.woocommerce-cart .cart_totals td,
body.woocommerce-cart .cart_totals .amount {
  color: #005b31 !important;
  font-size: 15px !important;
  font-weight: 950 !important;
}

body.woocommerce-cart .quantity .qty {
  width: 58px !important;
  min-height: 46px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 8px !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  text-align: center !important;
}

body.woocommerce-cart table.cart td.actions {
  padding: 16px !important;
  background: rgba(255, 248, 236, 0.58) !important;
}

body.woocommerce-cart table.cart td.actions .coupon {
  display: flex !important;
  float: left !important;
  gap: 10px !important;
  align-items: stretch !important;
  width: auto !important;
}

body.woocommerce-cart .coupon .input-text {
  width: min(220px, 42vw) !important;
  min-height: 46px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(0, 91, 49, 0.18) !important;
  border-radius: 8px !important;
  background: #fffdf7 !important;
  color: #3a2618 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

body.woocommerce-cart .actions .button,
body.woocommerce-cart .coupon .button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .cross-sells ul.products li.product .button {
  min-height: 46px !important;
  padding: 0 22px !important;
  border: 1px solid #005b31 !important;
  border-radius: 8px !important;
  background: #005b31 !important;
  color: #fff8ec !important;
  box-shadow: 0 14px 28px rgba(0, 91, 49, 0.16) !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.woocommerce-cart table.cart td.actions > .button {
  float: right !important;
  background: rgba(255, 253, 247, 0.9) !important;
  color: #005b31 !important;
  box-shadow: none !important;
}

body.woocommerce-cart .cart-collaterals {
  float: right !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  width: min(100%, 380px) !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-cart .cart-collaterals::before,
body.woocommerce-cart .cart-collaterals::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-cart .cross-sells {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 14px !important;
  background: rgba(255, 253, 247, 0.94) !important;
  box-shadow: 0 26px 58px rgba(81, 53, 31, 0.1) !important;
}

body.woocommerce-cart .cart_totals h2,
body.woocommerce-cart .cross-sells h2 {
  margin: 0 0 18px !important;
  color: #005b31 !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: clamp(28px, 2.8vw, 40px) !important;
  font-weight: 950 !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
}

body.woocommerce-cart .cart_totals table.shop_table {
  overflow: hidden !important;
  border: 1px solid rgba(0, 91, 49, 0.12) !important;
  border-radius: 10px !important;
  background: #fffdf7 !important;
  box-shadow: none !important;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 14px 16px !important;
  border-color: rgba(0, 91, 49, 0.12) !important;
  color: #005b31 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

body.woocommerce-cart ul#shipping_method {
  display: grid !important;
  gap: 8px !important;
}

body.woocommerce-cart ul#shipping_method li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  gap: 8px !important;
  color: #005b31 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

body.woocommerce-cart ul#shipping_method input {
  accent-color: #005b31 !important;
}

body.woocommerce-cart .shipping-calculator-button {
  color: #9f2f31 !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: 22px 0 0 !important;
  margin: 0 !important;
}

body.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: 58px !important;
  font-size: 16px !important;
}

body.woocommerce-cart .cross-sells ul.products {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-cart .cross-sells ul.products li.product {
  display: grid !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid rgba(0, 91, 49, 0.12) !important;
  border-radius: 12px !important;
  background: #fffdf7 !important;
  text-align: left !important;
}

body.woocommerce-cart .cross-sells ul.products li.product img {
  grid-row: span 4 !important;
  width: 112px !important;
  height: 112px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  color: #005b31 !important;
  font-family: var(--body-font, inherit) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .star-rating {
  margin: 0 !important;
  color: #f5a623 !important;
  font-size: 13px !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .button {
  justify-self: start !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  box-shadow: none !important;
}

@media (max-width: 1040px) {
  body.woocommerce-cart .woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals {
    float: none !important;
    width: 100% !important;
  }

  body.woocommerce-cart .cart-collaterals {
    margin-top: 24px !important;
  }
}

@media (max-width: 720px) {
  body.woocommerce-cart .cariama-generic-page.cariama-woocommerce-page {
    padding-inline: 14px !important;
  }

  body.woocommerce-cart table.cart.shop_table th,
  body.woocommerce-cart table.cart.shop_table td {
    padding: 12px 10px !important;
    font-size: 13px !important;
  }

  body.woocommerce-cart table.cart img,
  body.woocommerce-cart .product-thumbnail img {
    width: 48px !important;
    height: 48px !important;
  }

  body.woocommerce-cart table.cart td.actions .coupon {
    display: grid !important;
    width: 100% !important;
  }

  body.woocommerce-cart .coupon .input-text,
  body.woocommerce-cart table.cart td.actions > .button {
    width: 100% !important;
  }

  body.woocommerce-cart .cross-sells ul.products li.product {
    grid-template-columns: 88px minmax(0, 1fr) !important;
  }

  body.woocommerce-cart .cross-sells ul.products li.product img {
    width: 88px !important;
    height: 88px !important;
  }
}

/* v1.1.61 - Guided Pix checkout message and clear Pix submit CTA */
body.woocommerce-checkout .cariama-pix-next-step {
  display: grid !important;
  gap: 12px !important;
  min-height: 210px !important;
  padding: clamp(24px, 4vw, 42px) !important;
  border: 1px solid rgba(0, 91, 49, 0.14) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(243, 215, 167, 0.58), transparent 42%),
    linear-gradient(135deg, #fffdf7, #fff8ec) !important;
  box-shadow: 0 18px 42px rgba(81, 53, 31, 0.08) !important;
  align-content: center !important;
}

body.woocommerce-checkout .cariama-pix-next-step strong {
  color: #005b31 !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: clamp(28px, 3vw, 46px) !important;
  font-weight: 950 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout .cariama-pix-next-step p {
  max-width: 760px !important;
  margin: 0 !important;
  color: #3a2618 !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
  font-weight: 850 !important;
  line-height: 1.5 !important;
}

body.woocommerce-checkout .cariama-pix-next-step p b {
  color: #005b31 !important;
  font-weight: 950 !important;
}

body.woocommerce-checkout .cariama-pix-next-step span {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: rgba(0, 91, 49, 0.08) !important;
  color: rgba(0, 91, 49, 0.82) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

body.woocommerce-checkout #payment #place_order.is-cariama-pix-submit {
  min-height: 64px !important;
  background:
    linear-gradient(135deg, #005b31, #087342) !important;
  color: #fff8ec !important;
  box-shadow: 0 18px 36px rgba(0, 91, 49, 0.22) !important;
  font-size: 16px !important;
  letter-spacing: 0.06em !important;
}

body.woocommerce-checkout #payment #place_order.is-cariama-pix-submit::after {
  content: "  →" !important;
  font-size: 18px !important;
}

@media (max-width: 620px) {
  body.woocommerce-checkout .cariama-pix-next-step {
    min-height: 0 !important;
    padding: 20px !important;
  }

  body.woocommerce-checkout .cariama-pix-next-step span {
    width: 100% !important;
    border-radius: 12px !important;
  }
}

/* v1.1.63 - Keep the checkout back button from overlapping the order title */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review_heading,
body.woocommerce-checkout.cariama-checkout-payment-step #order_review_heading {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  margin: 28px 0 14px !important;
  padding: 0 0 18px !important;
  border-bottom: 2px solid rgba(0, 91, 49, 0.18) !important;
  line-height: 0.9 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-checkout-back,
body.woocommerce-checkout .cariama-checkout-back {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: start !important;
  align-self: start !important;
  width: auto !important;
  min-width: 150px !important;
  min-height: 40px !important;
  margin: -6px 0 12px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  transform: none !important;
  z-index: 2 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review table.shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review .shop_table {
  margin-top: 0 !important;
  clear: both !important;
}

@media (max-width: 560px) {
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step .cariama-checkout-back,
  body.woocommerce-checkout .cariama-checkout-back {
    width: 100% !important;
    margin-top: 0 !important;
  }
}

/* v1.1.64 - Real DOM placement for the checkout back button */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review_heading {
  order: 10 !important;
  margin: 28px 0 8px !important;
  padding: 0 0 16px !important;
  border-bottom: 2px solid rgba(0, 91, 49, 0.18) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-checkout-back {
  order: 11 !important;
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: start !important;
  width: auto !important;
  min-width: 170px !important;
  min-height: 42px !important;
  margin: 0 0 16px !important;
  padding: 0 18px !important;
  transform: none !important;
  clear: both !important;
  z-index: auto !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review {
  order: 12 !important;
  margin-top: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > .cariama-checkout-back {
  display: none !important;
}

@media (max-width: 560px) {
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-checkout-back {
    width: 100% !important;
  }
}

/* v1.1.65 - Flatten Pix panel and restore the real checkout submit button */
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.cariama-payment-option-pix.is-expanded-payment div.payment_box,
body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
  padding: 20px 24px 24px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .cariama-pix-checkout-box {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .cariama-pix-checkout-header {
  display: none !important;
}

body.woocommerce-checkout .cariama-pix-checkout-content {
  padding: 0 !important;
  background: transparent !important;
}

body.woocommerce-checkout .cariama-pix-next-step {
  min-height: 0 !important;
  padding: 8px 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.woocommerce-checkout .cariama-pix-next-step strong {
  font-size: clamp(28px, 3.2vw, 44px) !important;
}

body.woocommerce-checkout .cariama-pix-next-step span {
  border-radius: 10px !important;
  background: rgba(255, 253, 247, 0.58) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .place-order,
body.woocommerce-checkout #payment .place-order,
body.woocommerce-checkout form.checkout #payment .place-order {
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  max-width: none !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  clear: both !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment #place_order,
body.woocommerce-checkout #payment #place_order,
body.woocommerce-checkout form.checkout #payment button#place_order,
body.woocommerce-checkout form.checkout #payment button[name="woocommerce_checkout_place_order"],
body.woocommerce-checkout .woocommerce button.button.alt#place_order {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 64px !important;
  margin: 0 !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #005b31, #087342) !important;
  color: #fff8ec !important;
  box-shadow: 0 18px 36px rgba(0, 91, 49, 0.22) !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment #place_order:hover,
body.woocommerce-checkout #payment #place_order:hover {
  background: linear-gradient(135deg, #064327, #005b31) !important;
}

@media (max-width: 620px) {
  body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods.has-expanded-payment li.wc_payment_method.is-expanded-payment div.payment_box {
    padding: 14px 16px 18px !important;
  }
}

/* v1.1.66 - Final checkout button as a standalone red action at the bottom */
body.woocommerce-checkout.cariama-checkout-payment-step #payment {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment ul.payment_methods {
  order: 1 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .place-order,
body.woocommerce-checkout #payment .place-order,
body.woocommerce-checkout form.checkout #payment .place-order {
  order: 99 !important;
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  max-width: none !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  clear: both !important;
  opacity: 1 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment .place-order::before,
body.woocommerce-checkout.cariama-checkout-payment-step #payment .place-order::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment #place_order,
body.woocommerce-checkout #payment #place_order,
body.woocommerce-checkout form.checkout #payment button#place_order,
body.woocommerce-checkout form.checkout #payment button[name="woocommerce_checkout_place_order"],
body.woocommerce-checkout .woocommerce button.button.alt#place_order {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 66px !important;
  margin: 0 !important;
  padding: 0 28px !important;
  border: 2px solid #9f2f31 !important;
  border-radius: 10px !important;
  background: #9f2f31 !important;
  color: #fff8ec !important;
  box-shadow: 0 18px 36px rgba(159, 47, 49, 0.22) !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: clamp(16px, 1.35vw, 20px) !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment #place_order:hover,
body.woocommerce-checkout #payment #place_order:hover {
  background: #7f2527 !important;
  border-color: #7f2527 !important;
  color: #fff8ec !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment #place_order.is-cariama-pix-submit::after {
  content: none !important;
  display: none !important;
}

/* v1.1.67 - Restore final order button exactly as the standalone checkout action */
body.woocommerce-checkout.cariama-checkout-payment-step #payment .place-order,
body.woocommerce-checkout #payment .place-order {
  order: 99 !important;
  display: block !important;
  width: 100% !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step #payment #place_order,
body.woocommerce-checkout #payment #place_order,
body.woocommerce-checkout form.checkout #payment button#place_order,
body.woocommerce-checkout form.checkout #payment button[name="woocommerce_checkout_place_order"],
body.woocommerce-checkout .woocommerce button.button.alt#place_order {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 64px !important;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #9f2f31 !important;
  color: #fff8ec !important;
  box-shadow: 0 18px 36px rgba(159, 47, 49, 0.22) !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* v1.1.68 - Checkout order headbar and payment processing interaction */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
  order: 10 !important;
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 28px 0 14px !important;
  padding: 0 0 16px !important;
  border-bottom: 2px solid rgba(0, 91, 49, 0.18) !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar #order_review_heading {
  display: block !important;
  position: static !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #005b31 !important;
  line-height: 0.9 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
  position: static !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 178px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: #f3d7a7 !important;
  color: #005b31 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  transform: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review {
  order: 11 !important;
  margin-top: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > #order_review_heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > .cariama-checkout-back {
  display: none !important;
}

body.woocommerce-checkout #payment #place_order.is-cariama-loading-payment,
body.woocommerce-checkout #payment button#place_order.is-cariama-loading-payment {
  cursor: wait !important;
  opacity: 0.82 !important;
  background: #7f2527 !important;
}

body.woocommerce-checkout #payment #place_order.is-cariama-loading-payment::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 10px !important;
  border: 2px solid rgba(255, 248, 236, 0.38) !important;
  border-top-color: #fff8ec !important;
  border-radius: 999px !important;
  animation: cariama-spin 0.75s linear infinite !important;
}

@keyframes cariama-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 680px) {
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
    display: grid !important;
    align-items: start !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
    width: 100% !important;
  }
}

/* v1.1.70 - Center checkout payment layout and keep order header horizontal */
body.woocommerce-checkout .cariama-wc-flow,
body.woocommerce-checkout .cariama-wc-flow > .woocommerce,
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
  width: min(1180px, calc(100vw - 48px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  align-items: stretch !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 20px 0 0 !important;
  padding: 0 0 16px !important;
  border-bottom: 2px solid rgba(0, 91, 49, 0.16) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar #order_review_heading {
  max-width: none !important;
  color: #005b31 !important;
  font-size: clamp(42px, 4.4vw, 72px) !important;
  line-height: 0.86 !important;
  white-space: normal !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
  justify-self: end !important;
  min-width: 190px !important;
  margin: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review table.shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review #payment,
body.woocommerce-checkout.cariama-checkout-payment-step #payment {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table {
  border-radius: 10px !important;
  overflow: hidden !important;
}

@media (max-width: 740px) {
  body.woocommerce-checkout .cariama-wc-flow,
  body.woocommerce-checkout .cariama-wc-flow > .woocommerce,
  body.woocommerce-checkout form.checkout,
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
    width: min(100%, calc(100vw - 24px)) !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
    justify-self: stretch !important;
    width: 100% !important;
  }
}

/* v1.1.71 - Stable custom order header, no inherited WooCommerce heading drift */
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #order_review_heading {
  display: none !important;
  visibility: hidden !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
  order: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 24px 0 0 !important;
  padding: 0 0 18px !important;
  border-bottom: 2px solid rgba(0, 91, 49, 0.16) !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-order-title {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #005b31 !important;
  font-family: var(--strong-font, inherit) !important;
  font-size: clamp(42px, 4.4vw, 72px) !important;
  font-weight: 950 !important;
  line-height: 0.86 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
  flex: 0 0 auto !important;
  align-self: center !important;
  justify-self: end !important;
  min-width: 190px !important;
  margin: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review {
  order: 11 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > table.shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > .shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > #payment {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 740px) {
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* v1.1.72 - Hard reset checkout payment step to one centered column */
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-generic-page,
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-wc-flow,
body.woocommerce-checkout.cariama-checkout-payment-step .cariama-wc-flow > .woocommerce,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
  width: min(1220px, calc(100vw - 56px)) !important;
  max-width: 1220px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 22px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step .woocommerce-form-coupon-toggle,
body.woocommerce-checkout.cariama-checkout-payment-step .woocommerce-form-login-toggle,
body.woocommerce-checkout.cariama-checkout-payment-step .woocommerce-info,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > table.shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > .shop_table,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > .cariama-payment-heading,
body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review > #payment {
  position: static !important;
  float: none !important;
  clear: both !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-top: 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 2px solid rgba(0, 91, 49, 0.16) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-order-title {
  flex: 1 1 auto !important;
  margin: 0 !important;
  font-size: clamp(42px, 4vw, 66px) !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > #order_review {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step table.shop_table {
  table-layout: auto !important;
}

body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step #payment ul.payment_methods {
  width: 100% !important;
}

@media (max-width: 760px) {
  body.woocommerce-checkout.cariama-checkout-payment-step .cariama-wc-flow,
  body.woocommerce-checkout.cariama-checkout-payment-step .cariama-wc-flow > .woocommerce,
  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step {
    width: min(100%, calc(100vw - 24px)) !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar {
    display: grid !important;
  }

  body.woocommerce-checkout.cariama-checkout-payment-step form.checkout.is-payment-step > .cariama-order-headbar .cariama-checkout-back {
    width: 100% !important;
  }
}

/* v1.1.74 - Shorter direct Pix message */
body.woocommerce-checkout .cariama-pix-next-step {
  gap: 8px !important;
  padding: 4px 0 0 !important;
}

body.woocommerce-checkout .cariama-pix-next-step strong {
  font-size: clamp(24px, 2.4vw, 36px) !important;
  line-height: 0.95 !important;
}

body.woocommerce-checkout .cariama-pix-next-step p {
  max-width: 680px !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  line-height: 1.42 !important;
}

body.woocommerce-checkout .cariama-pix-next-step span {
  padding: 8px 12px !important;
  font-size: 12px !important;
}

/* Editable WooCommerce product variations - v1.1.80 */
.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-areas:
    "variation variation"
    "grind ship"
    "warn ship"
    "button button" !important;
}

.single-product .product-variation-options,
.product-template-default .product-variation-options {
  grid-area: variation;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px 16px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 91, 49, 0.12);
}

.single-product .product-variation-options label,
.product-template-default .product-variation-options label {
  display: grid;
  gap: 8px;
  color: #3e332b;
  font-size: 13px;
  font-weight: 900;
}

.single-product .product-variation-options select,
.product-template-default .product-variation-options select {
  width: 100%;
  min-height: 46px;
  border: 2px solid #0f3f2b;
  border-radius: 10px;
  padding: 0 38px 0 13px;
  background: #fffdf7;
  color: #005b31;
  font: inherit;
}

.single-product .product-variation-warning,
.product-template-default .product-variation-warning {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: #8f1f25;
  font-size: 12px;
  font-weight: 800;
}

.single-product .product-variation-warning.is-visible,
.product-template-default .product-variation-warning.is-visible {
  display: block;
}

@media (max-width: 760px) {
  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions {
    grid-template-areas:
      "variation"
      "grind"
      "warn"
      "ship"
      "button" !important;
  }

  .single-product .product-variation-options,
  .product-template-default .product-variation-options {
    grid-template-columns: 1fr;
  }
}

/* Final unified product description with Cariama waves - v1.1.82 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  margin: 0 0 18px !important;
  padding: 22px 0 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  position: relative !important;
  display: block !important;
  margin: 0 0 14px !important;
  padding: 0 0 18px !important;
  color: #9b7044 !important;
  font-family: var(--main-font) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 7px !important;
  background: url("../artes/underscore.png") left center / 58px auto repeat-x !important;
  content: "" !important;
  opacity: 0.72 !important;
}

.single-product .product-editor-description-copy,
.product-template-default .product-editor-description-copy {
  margin: 0 0 12px !important;
}

.single-product .product-editor-description-copy p,
.product-template-default .product-editor-description-copy p {
  margin: 0 0 10px !important;
  color: #4c443d !important;
  font-family: var(--body-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 28px !important;
  margin: 0 !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(88px, 0.7fr) minmax(0, 1.3fr) !important;
  align-items: baseline !important;
  gap: 12px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 14px 0 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 7px !important;
  left: 0 !important;
  height: 6px !important;
  background: url("../artes/underscore.png") left center / 48px auto repeat-x !important;
  content: "" !important;
  opacity: 0.48 !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  margin: 0 !important;
  color: #a27c54 !important;
  font-family: var(--main-font) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  min-width: 0 !important;
  margin: 0 !important;
  color: #006b3f !important;
  font-family: var(--strong-font) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list,
  .product-template-default .product-details-list {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    grid-template-columns: 96px minmax(0, 1fr) !important;
  }
}

/* Refined product waves and description order - v1.1.83 */
.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  margin-bottom: 10px !important;
  padding-bottom: 22px !important;
  text-align: center !important;
}

.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  right: auto !important;
  left: 50% !important;
  width: 150px !important;
  height: 10px !important;
  background-position: center !important;
  background-size: 88px auto !important;
  opacity: 0.78 !important;
  transform: translateX(-50%) !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  overflow: hidden !important;
  gap: 0 30px !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  padding: 17px 20px 28px !important;
}

.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after {
  display: none !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  right: auto !important;
  bottom: 7px !important;
  left: 0 !important;
  display: block !important;
  width: calc(200% + 30px) !important;
  height: 9px !important;
  background-position: center !important;
  background-size: 96px auto !important;
  opacity: 0.58 !important;
}

.single-product .product-editor-description-copy,
.product-template-default .product-editor-description-copy {
  position: relative !important;
  margin: 18px 20px 0 !important;
  padding: 20px 0 0 !important;
}

.single-product .product-editor-description-title,
.product-template-default .product-editor-description-title {
  display: block !important;
  margin: 0 0 10px !important;
  color: #9b7044 !important;
  font-family: var(--main-font) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.single-product .product-editor-description-copy p,
.product-template-default .product-editor-description-copy p {
  max-width: 62ch !important;
  margin: 0 !important;
  color: #4a433d !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.7 !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list,
  .product-template-default .product-details-list {
    gap: 0 !important;
  }

  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    padding: 15px 8px 27px !important;
  }

  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    right: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
  }

  .single-product .product-editor-description-copy,
  .product-template-default .product-editor-description-copy {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }
}

/* Larger, clearer Cariama product information - v1.1.84 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  margin: 4px 0 22px !important;
  padding: 30px 28px 26px !important;
  border: 1px solid rgba(0, 91, 49, 0.1) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 91, 49, 0.07), transparent 33%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(245, 249, 242, 0.9)) !important;
  box-shadow: 0 18px 44px rgba(35, 58, 43, 0.07) !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  margin-bottom: 14px !important;
  padding-bottom: 28px !important;
  color: #6f4829 !important;
  font-size: 14px !important;
  letter-spacing: 0.14em !important;
}

.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  width: 220px !important;
  height: 13px !important;
  background-size: 148px auto !important;
  opacity: 0.9 !important;
  filter: saturate(1.25) contrast(1.04) drop-shadow(0 2px 0 rgba(0, 91, 49, 0.07)) !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  gap: 0 36px !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  display: block !important;
  padding: 20px 12px 35px !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  margin: 0 0 7px !important;
  color: #996539 !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.13em !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  color: #00643a !important;
  font-size: clamp(20px, 1.65vw, 25px) !important;
  font-weight: 900 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.015em !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  bottom: 9px !important;
  height: 12px !important;
  background-size: 152px auto !important;
  opacity: 0.74 !important;
  filter: saturate(1.2) contrast(1.03) drop-shadow(0 2px 0 rgba(0, 91, 49, 0.06)) !important;
}

.single-product .product-editor-description-copy,
.product-template-default .product-editor-description-copy {
  margin: 24px 12px 0 !important;
  padding: 26px 0 0 !important;
}

.single-product .product-editor-description-title,
.product-template-default .product-editor-description-title {
  margin-bottom: 12px !important;
  color: #7a4e2d !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
}

.single-product .product-editor-description-copy p,
.product-template-default .product-editor-description-copy p {
  color: #314d3d !important;
  font-size: 18px !important;
  font-weight: 650 !important;
  line-height: 1.65 !important;
  text-align: left !important;
}

@media (max-width: 760px) {
  .single-product .product-editor-description,
  .product-template-default .product-editor-description {
    padding: 24px 20px 22px !important;
    border-radius: 14px !important;
  }

  .single-product .product-editor-description > span,
  .product-template-default .product-editor-description > span {
    font-size: 12px !important;
  }

  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    display: block !important;
    padding: 18px 4px 32px !important;
  }

  .single-product .product-details-list dd,
  .product-template-default .product-details-list dd {
    font-size: 21px !important;
  }

  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    height: 11px !important;
    background-size: 138px auto !important;
  }

  .single-product .product-editor-description-copy,
  .product-template-default .product-editor-description-copy {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .single-product .product-editor-description-copy p,
  .product-template-default .product-editor-description-copy p {
    font-size: 17px !important;
  }
}

/* Clean product description, without card treatment - v1.1.85 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  margin: 8px 0 20px !important;
  padding: 28px 0 22px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  color: #005b31 !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  color: #47745d !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  color: #005b31 !important;
}

.single-product .product-editor-description-title,
.product-template-default .product-editor-description-title {
  color: #005b31 !important;
}

.single-product .product-editor-description-copy p,
.product-template-default .product-editor-description-copy p {
  color: #34483d !important;
}

@media (max-width: 760px) {
  .single-product .product-editor-description,
  .product-template-default .product-editor-description {
    padding: 24px 0 18px !important;
    border-radius: 0 !important;
  }
}

/* Seamless editorial facts and softly finished waves - v1.1.86 */
.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  padding-top: 8px !important;
  border-top: 0 !important;
}

.single-product .product-editor-description,
.product-template-default .product-editor-description {
  padding-top: 20px !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  margin-bottom: 18px !important;
  font-size: 15px !important;
  letter-spacing: 0.13em !important;
}

.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  width: min(240px, 72%) !important;
  height: 15px !important;
  background-size: 172px auto !important;
  opacity: 0.86 !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  padding-top: 18px !important;
  padding-bottom: 38px !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  left: -8px !important;
  width: calc(200% + 46px) !important;
  height: 14px !important;
  background-position: center !important;
  background-size: 176px auto !important;
  opacity: 0.68 !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%) !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  margin-bottom: 9px !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  font-size: clamp(22px, 1.75vw, 27px) !important;
  line-height: 1.13 !important;
}

.single-product .product-editor-description-copy,
.product-template-default .product-editor-description-copy {
  margin-top: 28px !important;
  padding-top: 18px !important;
}

.single-product .product-editor-description-title,
.product-template-default .product-editor-description-title {
  font-size: 13px !important;
}

@media (max-width: 760px) {
  .single-product .product-buy-panel,
  .product-template-default .product-buy-panel {
    padding-top: 0 !important;
  }

  .single-product .product-editor-description > span,
  .product-template-default .product-editor-description > span {
    font-size: 13px !important;
  }

  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    left: 0 !important;
    width: 100% !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%) !important;
    mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%) !important;
  }

  .single-product .product-details-list dd,
  .product-template-default .product-details-list dd {
    font-size: 23px !important;
  }
}

/* Keep every product photo fully visible and aligned to the top - v1.1.87 */
.single-product .product-detail-page,
.product-template-default .product-detail-page {
  align-items: start !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  position: static !important;
  top: 0 !important;
  align-self: start !important;
  align-content: start !important;
  margin-top: 0 !important;
  transform: none !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  place-items: start center !important;
  height: clamp(460px, 44vw, 620px) !important;
  overflow: visible !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
  transform: none !important;
}

.single-product .product-detail-thumbs img,
.single-product .product-thumb-button img,
.product-template-default .product-detail-thumbs img,
.product-template-default .product-thumb-button img {
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 980px) {
  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: min(92vw, 580px) !important;
  }
}

@media (max-width: 640px) {
  .single-product .product-main-image,
  .product-template-default .product-main-image {
    height: min(112vw, 500px) !important;
  }
}

/* Standard 600x800 product photography (3:4) - v1.1.88 */
.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  justify-items: center !important;
}

.single-product .product-main-image,
.product-template-default .product-main-image {
  width: min(100%, 450px) !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 3 / 4 !important;
  place-items: start center !important;
}

.single-product .product-main-image img,
.product-template-default .product-main-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: contain !important;
  object-position: center top !important;
}

.single-product .product-detail-thumbs,
.product-template-default .product-detail-thumbs {
  align-items: flex-start !important;
}

.single-product .product-thumb-button,
.product-template-default .product-thumb-button {
  width: 60px !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
}

.single-product .product-thumb-button img,
.product-template-default .product-thumb-button img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: contain !important;
}

@media (max-width: 640px) {
  .single-product .product-main-image,
  .product-template-default .product-main-image {
    width: min(100%, 390px) !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
  }
}

/* Cursor-follow product image zoom - v1.1.89 */
@media (hover: hover) and (pointer: fine) {
  .single-product .product-main-image[data-product-image-zoom],
  .product-template-default .product-main-image[data-product-image-zoom] {
    --product-zoom-scale: 1.85;
    --product-zoom-x: 50%;
    --product-zoom-y: 50%;
    overflow: hidden !important;
    cursor: zoom-in !important;
  }

  .single-product .product-main-image[data-product-image-zoom] img,
  .product-template-default .product-main-image[data-product-image-zoom] img {
    transform: scale(1) !important;
    transform-origin: var(--product-zoom-x) var(--product-zoom-y) !important;
    transition:
      transform 420ms cubic-bezier(0.2, 0.72, 0.24, 1),
      transform-origin 90ms linear !important;
    will-change: transform, transform-origin !important;
  }

  .single-product .product-main-image[data-product-image-zoom].is-image-zoomed img,
  .product-template-default .product-main-image[data-product-image-zoom].is-image-zoomed img {
    transform: scale(var(--product-zoom-scale)) !important;
    transition-duration: 260ms, 70ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-product .product-main-image[data-product-image-zoom] img,
  .product-template-default .product-main-image[data-product-image-zoom] img {
    transition: none !important;
  }
}

/* Continuous vector waves without repeated seams - v1.1.90 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  padding-top: 0 !important;
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span,
.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  padding-top: 0 !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  padding-top: 16px !important;
  padding-bottom: 40px !important;
}

.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  height: 16px !important;
  background: url("../assets/cariama-wave-divider.svg") center / 100% 100% no-repeat !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  left: 0 !important;
  width: calc(200% + 30px) !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    left: 0 !important;
    width: 100% !important;
  }
}

/* Purchase buttons beside the postcode calculator - v1.1.91 */
.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-areas:
    "variation"
    "grind"
    "warn"
    "commerce" !important;
}

.single-product .product-commerce-row,
.product-template-default .product-commerce-row {
  grid-area: commerce !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 210px) !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
}

.single-product .product-commerce-row .product-buy-buttons,
.product-template-default .product-commerce-row .product-buy-buttons {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: stretch !important;
  display: grid !important;
  grid-template-rows: repeat(2, minmax(58px, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
}

.single-product .product-commerce-row .product-buy-buttons .button,
.product-template-default .product-commerce-row .product-buy-buttons .button {
  width: 100% !important;
  max-width: none !important;
  min-height: 58px !important;
  height: 100% !important;
  padding: 12px 16px !important;
  font-size: clamp(18px, 1.55vw, 23px) !important;
}

.single-product .product-commerce-row .product-shipping-calculator,
.product-template-default .product-commerce-row .product-shipping-calculator {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: stretch !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}

@media (max-width: 760px) {
  .single-product .product-commerce-row,
  .product-template-default .product-commerce-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .single-product .product-commerce-row .product-shipping-calculator,
  .product-template-default .product-commerce-row .product-shipping-calculator,
  .single-product .product-commerce-row .product-buy-buttons,
  .product-template-default .product-commerce-row .product-buy-buttons {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .single-product .product-commerce-row .product-shipping-calculator,
  .product-template-default .product-commerce-row .product-shipping-calculator {
    order: 1 !important;
  }

  .single-product .product-commerce-row .product-buy-buttons,
  .product-template-default .product-commerce-row .product-buy-buttons {
    order: 2 !important;
  }
}

/* Short burgundy wave separators - v1.1.93 */
.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  height: 24px !important;
  background: url("../assets/cariama-wave-short.svg") center / 120px 24px no-repeat !important;
  opacity: 1 !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  left: 0 !important;
  width: calc(200% + 30px) !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    left: 0 !important;
    width: 100% !important;
    background-size: 108px 22px !important;
  }
}

/* Product description below the 3:4 gallery - v1.1.94 */
.single-product .product-visual-description,
.product-template-default .product-visual-description {
  position: relative !important;
  justify-self: center !important;
  width: min(100%, 450px) !important;
  margin: 24px auto 0 !important;
  padding: 34px 8px 0 !important;
  color: #34483d !important;
  text-align: left !important;
}

.single-product .product-visual-description::before,
.product-template-default .product-visual-description::before {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: 120px !important;
  height: 24px !important;
  background: url("../assets/cariama-wave-short.svg") center / 120px 24px no-repeat !important;
  content: "" !important;
  transform: translateX(-50%) !important;
}

.single-product .product-visual-description > strong,
.product-template-default .product-visual-description > strong {
  display: block !important;
  margin: 0 0 13px !important;
  color: #005b31 !important;
  font-family: var(--main-font) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.single-product .product-visual-description p,
.product-template-default .product-visual-description p {
  max-width: 60ch !important;
  margin: 0 0 12px !important;
  color: #34483d !important;
  font-family: var(--body-font) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.68 !important;
  text-align: left !important;
}

@media (max-width: 640px) {
  .single-product .product-visual-description,
  .product-template-default .product-visual-description {
    width: min(100%, 390px) !important;
    margin-top: 20px !important;
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .single-product .product-visual-description p,
  .product-template-default .product-visual-description p {
    font-size: 17px !important;
  }
}

/* Wave as the divider between gallery and product information - v1.1.95 */
.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after,
.single-product .product-visual-description::before,
.product-template-default .product-visual-description::before {
  display: none !important;
  content: none !important;
}

.single-product .product-visual-description,
.product-template-default .product-visual-description {
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.single-product .product-detail-page,
.product-template-default .product-detail-page {
  position: relative !important;
}

.single-product .product-detail-page::after,
.product-template-default .product-detail-page::after {
  position: absolute !important;
  z-index: 2 !important;
  top: 190px !important;
  left: 50% !important;
  display: block !important;
  width: 190px !important;
  height: 24px !important;
  background: url("../assets/cariama-wave-short.svg") center / 190px 24px no-repeat !important;
  content: "" !important;
  opacity: 0.9 !important;
  pointer-events: none !important;
  transform: translate(-50%, -50%) rotate(90deg) !important;
  transform-origin: center !important;
}

@media (max-width: 980px) {
  .single-product .product-detail-page::after,
  .product-template-default .product-detail-page::after {
    display: none !important;
    content: none !important;
  }

  .single-product .product-detail-visual,
  .product-template-default .product-detail-visual {
    position: relative !important;
    padding-bottom: 42px !important;
  }

  .single-product .product-detail-visual::after,
  .product-template-default .product-detail-visual::after {
    position: absolute !important;
    right: auto !important;
    bottom: 4px !important;
    left: 50% !important;
    display: block !important;
    width: 120px !important;
    height: 24px !important;
    background: url("../assets/cariama-wave-short.svg") center / 120px 24px no-repeat !important;
    content: "" !important;
    pointer-events: none !important;
    transform: translateX(-50%) !important;
  }
}

/* Editorial wave grid between gallery, facts and price - v1.1.96 */
.single-product .product-detail-page::after,
.product-template-default .product-detail-page::after {
  display: block !important;
  top: 72px !important;
  left: 50% !important;
  width: 24px !important;
  height: min(470px, calc(100% - 130px)) !important;
  background: url("../assets/cariama-wave-line-vertical.svg") center / 24px 100% no-repeat !important;
  content: "" !important;
  opacity: 0.82 !important;
  transform: translateX(-50%) !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  position: relative !important;
  overflow: visible !important;
}

.single-product .product-details-list::before,
.product-template-default .product-details-list::before {
  position: absolute !important;
  z-index: 1 !important;
  top: 4px !important;
  bottom: 12px !important;
  left: 50% !important;
  display: block !important;
  width: 20px !important;
  background: url("../assets/cariama-wave-line-vertical.svg") center / 20px 100% no-repeat !important;
  content: "" !important;
  opacity: 0.72 !important;
  pointer-events: none !important;
  transform: translateX(-50%) !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  position: relative !important;
  z-index: 2 !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  right: auto !important;
  bottom: 3px !important;
  left: 0 !important;
  display: block !important;
  width: calc(200% + 30px) !important;
  height: 18px !important;
  background: url("../assets/cariama-wave-line-horizontal.svg") center / 100% 18px no-repeat !important;
  content: "" !important;
  opacity: 0.76 !important;
}

@media (max-width: 980px) {
  .single-product .product-detail-page::after,
  .product-template-default .product-detail-page::after {
    display: none !important;
    content: none !important;
  }

  .single-product .product-detail-visual::after,
  .product-template-default .product-detail-visual::after {
    width: min(78%, 380px) !important;
    height: 18px !important;
    background: url("../assets/cariama-wave-line-horizontal.svg") center / 100% 18px no-repeat !important;
  }
}

@media (max-width: 760px) {
  .single-product .product-details-list::before,
  .product-template-default .product-details-list::before {
    display: none !important;
    content: none !important;
  }

  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    right: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 18px !important;
    background: url("../assets/cariama-wave-line-horizontal.svg") center / 100% 18px no-repeat !important;
    content: "" !important;
  }
}

/* Final carousel precedence — v1.1.103 */
body.home .published-hero-slider [aria-hidden="true"][data-hero-region],
body.home .published-hero-slider [aria-hidden="true"][data-hero-cover],
body.home .published-hero-slider [aria-hidden="true"][data-hero-cafeteria] {
  visibility: hidden !important;
  opacity: 0 !important;
}

body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image,
body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active {
  object-position: 54% 58% !important;
  filter: saturate(1.01) contrast(1.02) brightness(0.98) !important;
}

body.home .published-home .published-hero-slider.is-cafeteria-active::before {
  background:
    linear-gradient(90deg, rgba(8, 42, 26, 0.88) 0%, rgba(8, 42, 26, 0.62) 27%, rgba(8, 42, 26, 0.12) 55%, transparent 76%),
    linear-gradient(180deg, rgba(8, 35, 23, 0.12), transparent 54%, rgba(8, 35, 23, 0.34)) !important;
}

body.home .published-home .published-hero-slider.is-cafeteria-active::after {
  height: 22% !important;
  background: linear-gradient(180deg, transparent, rgba(8, 35, 23, 0.34)) !important;
}

body.home .published-cafeteria-hero {
  display: grid;
  align-items: center;
  justify-content: initial;
  padding: clamp(104px, 9vw, 142px) clamp(72px, 8vw, 138px) clamp(78px, 7vw, 108px);
}

body.home .published-cafeteria-hero h2 {
  max-width: none;
  margin-bottom: 21px;
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: 0.86;
}

body.home .published-cafeteria-hero-stamp {
  top: clamp(108px, 11vw, 158px);
  right: clamp(62px, 7vw, 112px);
  width: clamp(104px, 8vw, 132px);
  background: rgba(7, 60, 41, 0.54);
}

@media (max-width: 980px) {
  body.home .published-home .published-hero-slider.is-cafeteria-active::before {
    background: linear-gradient(180deg, rgba(7, 43, 27, 0.08), rgba(7, 43, 27, 0.15) 34%, rgba(7, 43, 27, 0.86) 72%, rgba(7, 43, 27, 0.97)) !important;
  }

  body.home .published-cafeteria-hero {
    display: flex;
    justify-content: flex-end;
    padding: 112px 28px 78px;
  }

  body.home .published-cafeteria-hero h2 {
    font-size: clamp(52px, 12vw, 82px);
  }

  body.home .published-cafeteria-hero-stamp {
    top: 92px;
    right: 25px;
    width: 92px;
  }
}

@media (max-width: 620px) {
  body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image,
  body.home .published-home .published-hero-slider > img.published-cafeteria-hero-image.is-active {
    object-position: 63% center !important;
  }

  body.home .published-cafeteria-hero {
    padding: 96px 20px 74px;
  }

  body.home .published-cafeteria-hero h2 {
    margin-bottom: 12px;
    font-size: clamp(43px, 15vw, 62px);
  }

  body.home .published-cafeteria-hero-stamp {
    top: 84px;
    right: 17px;
    width: 76px;
  }
}

/* End final carousel precedence — v1.1.103 */

/* Cafeteria carousel content cleanup — v1.1.104 */
body.home .published-cafeteria-hero-panel {
  width: min(560px, 48vw);
  padding-top: clamp(28px, 3.4vw, 46px);
  padding-bottom: clamp(28px, 3.4vw, 46px);
}

body.home .published-cafeteria-hero-panel > p {
  max-width: 540px;
}

body.home .published-cafeteria-hero-actions {
  gap: 18px;
  margin-top: clamp(28px, 3vw, 38px);
}

body.home .published-cafeteria-hero-actions > a {
  min-width: 184px;
  min-height: 52px;
  padding-right: 24px;
  padding-left: 24px;
}

body.home .published-cafeteria-hero-actions > span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-left: 1px solid rgba(243, 215, 167, 0.45);
  padding-left: 18px;
}

body.home .published-cafeteria-hero-actions b {
  color: rgba(255, 248, 234, 0.8);
  font-size: 9px;
  letter-spacing: 0.18em;
}

@media (max-width: 980px) {
  body.home .published-cafeteria-hero-panel {
    width: min(640px, 100%);
  }
}

@media (max-width: 620px) {
  body.home .published-cafeteria-hero-actions {
    gap: 13px;
    margin-top: 20px;
  }

  body.home .published-cafeteria-hero-actions > a {
    min-width: 0;
    min-height: 44px;
    padding-right: 16px;
    padding-left: 16px;
  }

  body.home .published-cafeteria-hero-actions > span {
    min-height: 34px;
    padding-left: 12px;
  }

  body.home .published-cafeteria-hero-actions b {
    max-width: 90px;
    line-height: 1.35;
  }
}

/* End Cafeteria carousel content cleanup — v1.1.104 */

/* From farm visits to the Cafeteria — v1.1.105 */
.cafeteria-story-genesis {
  position: relative;
  min-height: 1040px;
  overflow: hidden;
  background: #dce9e8;
  color: #073c29;
}

.cafeteria-story-genesis-image,
.cafeteria-story-genesis-image img,
.cafeteria-story-genesis-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cafeteria-story-genesis-image {
  margin: 0;
}

.cafeteria-story-genesis-image img {
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cafeteria-story-genesis:hover .cafeteria-story-genesis-image img {
  transform: scale(1.018);
}

.cafeteria-story-genesis-veil {
  background:
    linear-gradient(180deg, rgba(247, 243, 233, 0.04) 0%, rgba(247, 243, 233, 0.06) 44%, rgba(5, 45, 29, 0.12) 61%, rgba(5, 45, 29, 0.92) 86%, #052d1d 100%),
    linear-gradient(270deg, rgba(247, 243, 233, 0.58), rgba(247, 243, 233, 0.13) 47%, transparent 70%);
}

.cafeteria-story-genesis-copy {
  position: absolute;
  top: clamp(80px, 9vw, 142px);
  right: clamp(32px, 7vw, 112px);
  z-index: 2;
  width: min(650px, 48vw);
}

.cafeteria-story-genesis-copy > span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #9e3439;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cafeteria-story-genesis-copy > span::before {
  width: 40px;
  height: 2px;
  background: #f47b50;
  content: "";
}

.cafeteria-story-genesis-copy h2 {
  max-width: 640px;
  margin: 22px 0 25px;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(53px, 6vw, 94px);
  line-height: 0.91;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cafeteria-story-genesis-copy p {
  max-width: 610px;
  margin: 0;
  color: #314d3e;
  font-family: var(--footer-font);
  font-size: clamp(16px, 1.32vw, 20px);
  font-weight: 700;
  line-height: 1.65;
}

.cafeteria-story-genesis-copy blockquote {
  max-width: 550px;
  margin: 26px 0 0;
  border-left: 2px solid #f47b50;
  padding: 4px 0 4px 22px;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(20px, 2vw, 29px);
  font-style: normal;
  line-height: 1.16;
  text-transform: uppercase;
}

.cafeteria-story-genesis-path {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(40px, 5vw, 72px);
  left: clamp(24px, 5vw, 80px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(243, 215, 167, 0.44);
  border-bottom: 1px solid rgba(243, 215, 167, 0.25);
  background: rgba(5, 45, 29, 0.32);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.cafeteria-story-genesis-path article {
  position: relative;
  min-height: 170px;
  padding: 30px clamp(22px, 3vw, 44px);
}

.cafeteria-story-genesis-path article + article {
  border-left: 1px solid rgba(243, 215, 167, 0.3);
}

.cafeteria-story-genesis-path article::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f47b50;
  content: "";
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cafeteria-story-genesis-path article:hover::before {
  width: 100%;
}

.cafeteria-story-genesis-path span,
.cafeteria-story-genesis-path strong,
.cafeteria-story-genesis-path small {
  display: block;
}

.cafeteria-story-genesis-path span {
  margin-bottom: 24px;
  color: #f47b50;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.cafeteria-story-genesis-path strong {
  margin-bottom: 8px;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(20px, 2vw, 29px);
  text-transform: uppercase;
}

.cafeteria-story-genesis-path small {
  max-width: 310px;
  color: rgba(255, 248, 234, 0.7);
  font-family: var(--footer-font);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.cafeteria-story-values h3 {
  font-size: clamp(31px, 3.2vw, 50px);
  line-height: 0.98;
}

@media (max-width: 980px) {
  .cafeteria-story-genesis {
    min-height: 1180px;
  }

  .cafeteria-story-genesis-image img {
    object-position: 43% center;
  }

  .cafeteria-story-genesis-veil {
    background:
      linear-gradient(180deg, rgba(247, 243, 233, 0.83) 0%, rgba(247, 243, 233, 0.45) 35%, rgba(5, 45, 29, 0.1) 57%, rgba(5, 45, 29, 0.93) 80%, #052d1d 100%);
  }

  .cafeteria-story-genesis-copy {
    top: 74px;
    right: 34px;
    left: 34px;
    width: auto;
  }

  .cafeteria-story-genesis-path {
    right: 28px;
    bottom: 36px;
    left: 28px;
  }
}

@media (max-width: 680px) {
  .cafeteria-story-genesis {
    min-height: 1420px;
  }

  .cafeteria-story-genesis-image img {
    object-position: 43% 55%;
  }

  .cafeteria-story-genesis-copy {
    top: 62px;
    right: 20px;
    left: 20px;
  }

  .cafeteria-story-genesis-copy h2 {
    margin: 17px 0;
    font-size: clamp(43px, 13.5vw, 61px);
  }

  .cafeteria-story-genesis-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .cafeteria-story-genesis-copy blockquote {
    margin-top: 20px;
    font-size: 19px;
  }

  .cafeteria-story-genesis-path {
    right: 20px;
    bottom: 28px;
    left: 20px;
    grid-template-columns: 1fr;
  }

  .cafeteria-story-genesis-path article {
    min-height: 0;
    padding: 22px 20px;
  }

  .cafeteria-story-genesis-path article + article {
    border-top: 1px solid rgba(243, 215, 167, 0.25);
    border-left: 0;
  }

  .cafeteria-story-genesis-path span {
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cafeteria-story-genesis-image img {
    transition: none;
  }
}

/* End From farm visits to the Cafeteria — v1.1.105 */

/* Canastra to Cariama visual chapters — v1.1.106 */
.cafeteria-story-territory {
  position: relative;
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 38px);
  padding: clamp(110px, 12vw, 180px) clamp(24px, 5vw, 74px);
  background: #f7f3e9;
}

.cafeteria-story-territory::before {
  position: absolute;
  top: 7%;
  right: -9%;
  color: rgba(7, 60, 41, 0.035);
  font-family: var(--strong-font);
  font-size: clamp(230px, 31vw, 520px);
  line-height: 0.8;
  content: "C";
  pointer-events: none;
}

.cafeteria-story-territory-landscape {
  position: relative;
  z-index: 1;
  min-height: clamp(480px, 55vw, 760px);
  grid-column: 1 / 10;
  margin: 0;
  overflow: hidden;
}

.cafeteria-story-territory-landscape::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(4, 36, 23, 0.68));
  content: "";
}

.cafeteria-story-territory-landscape img,
.cafeteria-story-territory-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cafeteria-story-territory-landscape:hover img,
.cafeteria-story-territory-product:hover img {
  transform: scale(1.025);
}

.cafeteria-story-territory-landscape figcaption {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 58px);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #fff8ea;
}

.cafeteria-story-territory-landscape figcaption span,
.cafeteria-story-territory-product figcaption span,
.cafeteria-story-territory-copy > span {
  color: #f3d7a7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.cafeteria-story-territory-landscape figcaption strong {
  max-width: 450px;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(27px, 3vw, 48px);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.cafeteria-story-territory-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  grid-column: 8 / 13;
  margin-top: clamp(-250px, -16vw, -130px);
  border-top: 4px solid #f47b50;
  padding: clamp(35px, 4.4vw, 68px);
  background: #7d2b2e;
  box-shadow: 0 28px 70px rgba(42, 22, 18, 0.16);
  color: #fff8ea;
}

.cafeteria-story-territory-copy h2 {
  margin: 18px 0 24px;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.cafeteria-story-territory-copy p {
  margin: 0;
  color: rgba(255, 248, 234, 0.8);
  font-family: var(--footer-font);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  line-height: 1.68;
}

.cafeteria-story-territory-copy blockquote {
  margin: 27px 0 0;
  border-left: 1px solid rgba(243, 215, 167, 0.5);
  padding: 3px 0 3px 20px;
  color: #f3d7a7;
  font-family: var(--strong-font);
  font-size: clamp(18px, 1.8vw, 26px);
  font-style: normal;
  line-height: 1.18;
  text-transform: uppercase;
}

.cafeteria-story-territory-product {
  position: relative;
  z-index: 1;
  min-height: 720px;
  grid-column: 2 / 7;
  margin: clamp(60px, 8vw, 115px) 0 0;
  overflow: visible;
}

.cafeteria-story-territory-product img {
  display: block;
  object-position: center 68%;
}

.cafeteria-story-territory-number {
  position: absolute;
  top: -72px;
  left: -72px;
  z-index: -1;
  color: rgba(7, 60, 41, 0.08);
  font-family: var(--strong-font);
  font-size: clamp(130px, 14vw, 220px);
  line-height: 1;
}

.cafeteria-story-territory-product figcaption {
  position: absolute;
  right: clamp(-110px, -7vw, -55px);
  bottom: 48px;
  width: min(390px, 80%);
  border-left: 3px solid #f47b50;
  padding: 24px 28px;
  background: rgba(5, 45, 29, 0.94);
  box-shadow: 0 20px 52px rgba(4, 36, 23, 0.2);
  color: #fff8ea;
}

.cafeteria-story-territory-product figcaption span,
.cafeteria-story-territory-product figcaption strong {
  display: block;
}

.cafeteria-story-territory-product figcaption strong {
  margin-top: 9px;
  font-family: var(--strong-font);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.04;
  text-transform: uppercase;
}

.cafeteria-story-territory-list {
  position: relative;
  align-self: center;
  grid-column: 8 / 12;
  margin-top: clamp(60px, 8vw, 115px);
  border-top: 1px solid rgba(7, 60, 41, 0.2);
  counter-reset: territory-item;
}

.cafeteria-story-territory-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(7, 60, 41, 0.2);
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(21px, 2.2vw, 31px);
  text-transform: uppercase;
  counter-increment: territory-item;
}

.cafeteria-story-territory-list span::after {
  color: #b52932;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  content: "0" counter(territory-item);
}

@media (max-width: 980px) {
  .cafeteria-story-territory-landscape {
    min-height: 600px;
    grid-column: 1 / 13;
  }

  .cafeteria-story-territory-copy {
    grid-column: 5 / 13;
    margin-top: -115px;
  }

  .cafeteria-story-territory-product {
    min-height: 660px;
    grid-column: 1 / 7;
  }

  .cafeteria-story-territory-list {
    grid-column: 8 / 13;
  }
}

@media (max-width: 680px) {
  .cafeteria-story-territory {
    display: block;
    padding: 88px 20px;
  }

  .cafeteria-story-territory-landscape {
    min-height: 470px;
  }

  .cafeteria-story-territory-landscape img {
    object-position: 58% center;
  }

  .cafeteria-story-territory-landscape figcaption {
    display: grid;
    gap: 8px;
  }

  .cafeteria-story-territory-landscape figcaption strong {
    font-size: 27px;
    text-align: left;
  }

  .cafeteria-story-territory-copy {
    margin: -45px 0 0 20px;
    padding: 32px 24px;
  }

  .cafeteria-story-territory-copy h2 {
    font-size: 40px;
  }

  .cafeteria-story-territory-product {
    min-height: 620px;
    margin: 78px 28px 0 0;
  }

  .cafeteria-story-territory-product figcaption {
    right: -28px;
    bottom: 30px;
    width: min(330px, 88%);
    padding: 20px;
  }

  .cafeteria-story-territory-list {
    margin: 64px 0 0 20px;
  }

  .cafeteria-story-territory-list span {
    min-height: 64px;
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cafeteria-story-territory-landscape img,
  .cafeteria-story-territory-product img {
    transition: none;
  }
}

/* End Canastra to Cariama visual chapters — v1.1.106 */

/* Dynamic Cariama coffee showcase — v1.1.107 */
.cariama-home-coffees {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 10vw, 154px) clamp(22px, 5vw, 76px) clamp(90px, 9vw, 138px);
  background:
    radial-gradient(circle at 8% 88%, rgba(243, 215, 167, 0.32), transparent 24%),
    #fbfaf6;
  color: #073c29;
}

.cariama-home-coffees::before {
  position: absolute;
  top: 52%;
  left: -9vw;
  width: 31vw;
  min-width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 60, 41, 0.045);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(7, 60, 41, 0.018);
  content: "";
  pointer-events: none;
}

.cariama-home-coffees-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.cariama-home-coffees-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #9d3338;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cariama-home-coffees-heading > span::before,
.cariama-home-coffees-heading > span::after {
  width: 28px;
  height: 1px;
  background: #f47b50;
  content: "";
}

.cariama-home-coffees-heading h2 {
  margin: 20px 0 12px;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(55px, 6.7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cariama-home-coffees-heading p {
  margin: 0;
  color: #617066;
  font-family: var(--footer-font);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 650;
}

.cariama-home-coffee-filters {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 1150px;
  margin: clamp(45px, 5vw, 70px) auto 0;
  justify-content: center;
  gap: clamp(21px, 3.3vw, 52px);
  overflow-x: auto;
  padding: 0 8px 18px;
  scrollbar-width: none;
}

.cariama-home-coffee-filters::-webkit-scrollbar,
.cariama-home-coffee-track::-webkit-scrollbar {
  display: none;
}

.cariama-home-coffee-filters::after {
  position: absolute;
  right: 8px;
  bottom: 1px;
  left: 8px;
  height: 7px;
  background: url("../assets/cariama-wave-line-horizontal.svg") center / 100% 7px no-repeat;
  opacity: 0.18;
  content: "";
}

.cariama-home-coffee-filters button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  padding: 8px 0 11px;
  background: transparent;
  color: #59665d;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.cariama-home-coffee-filters button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #9d3338;
  content: "";
  transform: scaleX(0);
  transition: transform 260ms ease;
}

.cariama-home-coffee-filters button:hover,
.cariama-home-coffee-filters button.is-active {
  color: #073c29;
}

.cariama-home-coffee-filters button.is-active::after {
  transform: scaleX(1);
}

.cariama-home-coffee-stage {
  position: relative;
  max-width: 1400px;
  margin: clamp(38px, 4vw, 60px) auto 0;
  padding: 0 clamp(45px, 5vw, 72px);
}

.cariama-home-coffee-track {
  display: flex;
  gap: clamp(24px, 3vw, 44px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 10px 8px 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cariama-home-coffee-track.is-centered {
  justify-content: center;
}

.cariama-home-coffee-card {
  position: relative;
  display: grid;
  flex: 0 0 clamp(280px, 25vw, 350px);
  min-width: 0;
  grid-template-rows: 440px auto;
  scroll-snap-align: center;
  text-align: center;
}

.cariama-home-coffee-card[hidden] {
  display: none !important;
}

.cariama-home-coffee-image {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
}

.cariama-home-coffee-image::after {
  position: absolute;
  right: 16%;
  bottom: 26px;
  left: 16%;
  height: 22px;
  border-radius: 50%;
  background: rgba(22, 35, 27, 0.13);
  filter: blur(14px);
  content: "";
  transition: transform 360ms ease, opacity 360ms ease;
}

.cariama-home-coffee-image > span {
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 60, 41, 0.22);
  border-radius: 50%;
  place-content: center;
  background: rgba(251, 250, 246, 0.8);
  color: #073c29;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cariama-home-coffee-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 415px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(25, 38, 29, 0.14));
  transform: translateY(8px) scale(0.94);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.cariama-home-coffee-card:hover .cariama-home-coffee-image img {
  filter: drop-shadow(0 30px 24px rgba(25, 38, 29, 0.2));
  transform: translateY(-4px) scale(1.01);
}

.cariama-home-coffee-card:hover .cariama-home-coffee-image::after {
  opacity: 0.72;
  transform: scaleX(0.84);
}

.cariama-home-coffee-info {
  position: relative;
  z-index: 2;
  padding: 16px 14px 0;
}

.cariama-home-coffee-info small {
  display: block;
  margin-bottom: 8px;
  color: #9d3338;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cariama-home-coffee-info h3 {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 auto 8px;
  overflow: hidden;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.03;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cariama-home-coffee-info > strong {
  display: block;
  min-height: 25px;
  color: #073c29;
  font-size: 16px;
  font-weight: 900;
}

.cariama-home-coffee-info > strong del {
  margin-right: 5px;
  color: #8a948e;
  font-size: 12px;
}

.cariama-home-coffee-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(7, 60, 41, 0.34);
  padding-bottom: 5px;
  color: #073c29;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cariama-home-coffee-link span {
  color: #f47b50;
  font-size: 15px;
  transition: transform 220ms ease;
}

.cariama-home-coffee-link:hover span {
  transform: translateX(4px);
}

.cariama-home-coffee-arrow {
  position: absolute;
  top: 42%;
  z-index: 4;
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 60, 41, 0.25);
  border-radius: 50%;
  place-content: center;
  background: rgba(251, 250, 246, 0.86);
  color: #073c29;
  cursor: pointer;
  font-family: serif;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease, opacity 220ms ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cariama-home-coffee-arrow.is-prev {
  left: 0;
}

.cariama-home-coffee-arrow.is-next {
  right: 0;
}

.cariama-home-coffee-arrow:hover:not(:disabled) {
  border-color: #073c29;
  background: #073c29;
  color: #fff8ea;
}

.cariama-home-coffee-arrow:disabled {
  opacity: 0.18;
  cursor: default;
}

.cariama-home-coffees-all {
  display: flex;
  width: fit-content;
  min-height: 48px;
  margin: 36px auto 0;
  align-items: center;
  gap: 12px;
  border: 1px solid #073c29;
  border-radius: 999px;
  padding: 12px 22px;
  color: #073c29;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.cariama-home-coffees-all:hover {
  background: #073c29;
  color: #fff8ea;
}

.cariama-home-coffees-empty {
  max-width: 580px;
  margin: 60px auto 0;
  text-align: center;
}

.cariama-home-coffees-empty a {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 1px solid;
  font-weight: 900;
}

@media (max-width: 760px) {
  .cariama-home-coffees {
    padding: 84px 14px 82px;
  }

  .cariama-home-coffees-heading {
    padding: 0 14px;
  }

  .cariama-home-coffees-heading h2 {
    font-size: clamp(49px, 15vw, 70px);
  }

  .cariama-home-coffee-filters {
    justify-content: flex-start;
    margin-top: 38px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .cariama-home-coffee-stage {
    padding: 0 26px;
  }

  .cariama-home-coffee-track {
    gap: 18px;
  }

  .cariama-home-coffee-card {
    flex-basis: min(78vw, 310px);
    grid-template-rows: 355px auto;
  }

  .cariama-home-coffee-image img {
    max-height: 335px;
  }

  .cariama-home-coffee-arrow {
    top: 37%;
    width: 38px;
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cariama-home-coffee-image img,
  .cariama-home-coffee-image::after,
  .cariama-home-coffee-link span {
    transition: none;
  }
}

/* End Dynamic Cariama coffee showcase — v1.1.107 */

/* Premium home coffee presentation — v1.1.108 */
body.home .cariama-home-coffees {
  padding-top: clamp(78px, 7.5vw, 112px);
  padding-bottom: clamp(78px, 7.5vw, 112px);
  background:
    radial-gradient(circle at 8% 88%, rgba(243, 215, 167, 0.3), transparent 23%),
    radial-gradient(circle at 92% 10%, rgba(201, 208, 184, 0.22), transparent 22%),
    #fbfaf6;
}

body.home .cariama-home-coffees-heading {
  max-width: 1120px;
}

body.home .cariama-home-coffees-heading h2 {
  margin-top: 16px;
  font-size: clamp(54px, 5.6vw, 82px);
  white-space: nowrap;
}

body.home .cariama-home-coffee-filters {
  max-width: 900px;
  margin-top: clamp(30px, 3vw, 43px);
  padding-bottom: 14px;
}

body.home .cariama-home-coffee-filters::after {
  right: 5%;
  left: 5%;
}

body.home .cariama-home-coffee-stage {
  max-width: 1120px;
  margin-top: clamp(20px, 2.5vw, 34px);
  padding-right: 54px;
  padding-left: 54px;
}

body.home .cariama-home-coffee-track {
  gap: clamp(28px, 3vw, 42px);
  padding: 12px 12px 24px;
  counter-reset: cariama-coffee;
}

body.home .cariama-home-coffee-card {
  flex-basis: clamp(320px, 31vw, 390px);
  grid-template-rows: 410px auto;
  counter-increment: cariama-coffee;
}

body.home .cariama-home-coffee-card::before {
  position: absolute;
  top: 27px;
  left: 24px;
  z-index: 4;
  color: rgba(7, 60, 41, 0.52);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  content: "0" counter(cariama-coffee);
}

body.home .cariama-home-coffee-image {
  border: 1px solid rgba(7, 60, 41, 0.1);
  border-radius: 190px 190px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 45%),
    #eee7d9;
  box-shadow: 0 22px 55px rgba(35, 45, 37, 0.1);
  isolation: isolate;
}

body.home .cariama-home-coffee-card:nth-child(3n + 2) .cariama-home-coffee-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 45%),
    #e3e7d9;
}

body.home .cariama-home-coffee-card:nth-child(3n) .cariama-home-coffee-image {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 45%),
    #f1dfd2;
}

body.home .cariama-home-coffee-image::before {
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(7, 60, 41, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

body.home .cariama-home-coffee-image::after {
  right: 21%;
  bottom: 30px;
  left: 21%;
}

body.home .cariama-home-coffee-image > span {
  top: 22px;
  right: 21px;
  width: 52px;
  border-color: rgba(125, 43, 46, 0.25);
  background: rgba(255, 248, 234, 0.72);
  color: #7d2b2e;
}

body.home .cariama-home-coffee-image img {
  width: calc(100% - 34px);
  height: calc(100% - 26px);
  max-height: none;
  margin: 13px 17px;
  mix-blend-mode: multiply;
  object-position: center;
  transform: translateY(5px) scale(0.98);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-image img {
  transform: translateY(-5px) scale(1.035);
}

body.home .cariama-home-coffee-info {
  padding: 20px 12px 0;
}

body.home .cariama-home-coffee-info h3 {
  min-height: 58px;
  max-width: 350px;
  margin-bottom: 9px;
  font-size: clamp(25px, 2.1vw, 31px);
}

body.home .cariama-home-coffee-detail {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 9px;
  color: #69766e;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}

body.home .cariama-home-coffee-detail span + span::before {
  margin-right: 8px;
  color: #f47b50;
  content: "•";
}

body.home .cariama-home-coffee-info > strong {
  font-size: 17px;
}

body.home .cariama-home-coffee-link {
  margin-top: 12px;
}

body.home .cariama-home-coffee-arrow {
  top: 34%;
  border-color: rgba(7, 60, 41, 0.2);
  box-shadow: 0 9px 25px rgba(7, 60, 41, 0.08);
}

body.home .cariama-home-coffee-arrow.is-prev {
  left: 2px;
}

body.home .cariama-home-coffee-arrow.is-next {
  right: 2px;
}

body.home .cariama-home-coffees-all {
  margin-top: 26px;
}

@media (max-width: 760px) {
  body.home .cariama-home-coffees-heading h2 {
    font-size: clamp(46px, 13.5vw, 64px);
    white-space: normal;
  }

  body.home .cariama-home-coffee-stage {
    margin-top: 17px;
    padding-right: 26px;
    padding-left: 26px;
  }

  body.home .cariama-home-coffee-card {
    flex-basis: min(80vw, 330px);
    grid-template-rows: 365px auto;
  }

  body.home .cariama-home-coffee-image {
    border-radius: 165px 165px 20px 20px;
  }

  body.home .cariama-home-coffee-arrow {
    top: 31%;
  }

  body.home .cariama-home-coffee-detail {
    display: grid;
    gap: 2px;
  }

  body.home .cariama-home-coffee-detail span + span::before {
    display: none;
    content: none;
  }
}

/* End Premium home coffee presentation — v1.1.108 */

/* Interactive product rail — v1.1.109 */
body.home .cariama-home-coffees {
  padding-top: clamp(72px, 7vw, 105px);
  background: #fcfbf8;
}

body.home .cariama-home-coffees::before {
  display: none;
  content: none;
}

body.home .cariama-home-coffees-heading h2 {
  margin: 13px 0 7px;
  color: #68483d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.4vw, 67px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: none;
}

body.home .cariama-home-coffees-heading > span {
  color: #073c29;
}

body.home .cariama-home-coffees-heading p {
  color: #7a817c;
  font-size: 14px;
  font-weight: 500;
}

body.home .cariama-home-coffee-filters {
  max-width: 1080px;
  margin-top: clamp(35px, 4vw, 56px);
  gap: clamp(28px, 4vw, 62px);
  padding-bottom: 10px;
}

body.home .cariama-home-coffee-filters::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(104, 72, 61, 0.18);
  opacity: 1;
}

body.home .cariama-home-coffee-filters button {
  color: #735b51;
  font-size: 12px;
  letter-spacing: 0.13em;
}

body.home .cariama-home-coffee-filters button::after {
  background: #68483d;
}

body.home .cariama-home-coffee-stage {
  max-width: 1360px;
  margin-top: 24px;
  padding-right: 62px;
  padding-left: 62px;
}

body.home .cariama-home-coffee-track {
  min-height: 535px;
  align-items: stretch;
  gap: clamp(18px, 2.3vw, 36px);
  padding: 0 8px 18px;
}

body.home .cariama-home-coffee-card {
  position: relative;
  display: block;
  flex-basis: clamp(245px, 21vw, 300px);
  height: 520px;
  padding-top: 20px;
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home .cariama-home-coffee-card::before {
  display: none;
  content: none;
}

body.home .cariama-home-coffee-image,
body.home .cariama-home-coffee-card:nth-child(3n + 2) .cariama-home-coffee-image,
body.home .cariama-home-coffee-card:nth-child(3n) .cariama-home-coffee-image {
  height: 390px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: auto;
  overflow: visible;
}

body.home .cariama-home-coffee-image::before,
body.home .cariama-home-coffee-image > span {
  display: none;
  content: none;
}

body.home .cariama-home-coffee-image::after {
  right: 18%;
  bottom: 20px;
  left: 18%;
  height: 18px;
  background: rgba(39, 31, 26, 0.18);
  filter: blur(13px);
}

body.home .cariama-home-coffee-image img {
  width: 100%;
  height: 100%;
  margin: 0;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: drop-shadow(0 19px 17px rgba(42, 31, 25, 0.12));
  transform: translateY(16px) scale(0.9);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

body.home .cariama-home-coffee-info {
  position: absolute;
  right: 7px;
  bottom: 5px;
  left: 7px;
  z-index: 5;
  min-height: 190px;
  border-left: 3px solid #f47b50;
  padding: 22px 22px 20px;
  background: rgba(255, 248, 234, 0.96);
  box-shadow: 0 22px 48px rgba(54, 38, 31, 0.16);
  opacity: 0;
  text-align: left;
  transform: translateY(28px);
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

body.home .cariama-home-coffee-card:hover,
body.home .cariama-home-coffee-card:focus-within {
  z-index: 6;
  transform: translateY(-5px);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-image img,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-image img {
  filter: drop-shadow(0 28px 22px rgba(42, 31, 25, 0.2));
  transform: translateY(-18px) scale(1.04);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-info,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.home .cariama-home-coffee-track:has(.cariama-home-coffee-card:hover) .cariama-home-coffee-card:not(:hover) {
  opacity: 0.5;
  transform: scale(0.94);
}

body.home .cariama-home-coffee-info small {
  margin-bottom: 7px;
  color: #a0373b;
}

body.home .cariama-home-coffee-info h3 {
  display: block;
  min-height: 0;
  margin: 0 0 7px;
  overflow: visible;
  color: #68483d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: none;
  -webkit-line-clamp: initial;
}

body.home .cariama-home-coffee-detail {
  min-height: 0;
  justify-content: flex-start;
  margin-bottom: 7px;
  color: #736d68;
  font-size: 8px;
}

body.home .cariama-home-coffee-info > strong {
  color: #68483d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

body.home .cariama-home-coffee-link {
  margin-top: 11px;
  border: 0;
  padding: 8px 13px;
  background: #073c29;
  color: #fff8ea;
}

body.home .cariama-home-coffee-link span {
  color: #f3d7a7;
}

body.home .cariama-home-coffee-arrow {
  top: 39%;
  width: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #68483d;
  font-size: 40px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.home .cariama-home-coffee-arrow:hover:not(:disabled) {
  background: transparent;
  color: #f47b50;
}

body.home .cariama-home-coffee-arrow:disabled {
  opacity: 0.14;
}

body.home .cariama-home-coffees-all {
  margin-top: 10px;
  border-color: #68483d;
  color: #68483d;
}

body.home .cariama-home-coffees-all:hover {
  background: #68483d;
}

@media (max-width: 760px) {
  body.home .cariama-home-coffees-heading h2 {
    font-size: clamp(39px, 11.5vw, 55px);
  }

  body.home .cariama-home-coffee-stage {
    padding-right: 30px;
    padding-left: 30px;
  }

  body.home .cariama-home-coffee-track {
    min-height: 540px;
  }

  body.home .cariama-home-coffee-card {
    flex-basis: min(76vw, 285px);
    height: 520px;
  }

  body.home .cariama-home-coffee-image {
    height: 350px;
  }

  body.home .cariama-home-coffee-info {
    min-height: 174px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.home .cariama-home-coffee-image img {
    transform: translateY(-4px) scale(0.96);
  }

  body.home .cariama-home-coffee-arrow {
    top: 34%;
  }
}

/* Cariama original showcase heading - v1.1.110 */
body.home .cariama-home-coffees {
  padding-top: clamp(78px, 8vw, 126px);
  background: radial-gradient(circle at 82% 10%, rgba(236, 192, 120, 0.16), transparent 28%), linear-gradient(180deg, #f8f5ed 0, #fcfbf8 42%);
}

body.home .cariama-home-coffees-heading {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  column-gap: clamp(46px, 7vw, 105px);
  text-align: left;
}

body.home .cariama-home-coffees-heading::before {
  position: absolute;
  top: -25px;
  left: -35px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(160, 55, 59, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px #f8f5ed, inset 0 0 0 11px rgba(160, 55, 59, 0.1);
  content: "";
}

body.home .cariama-home-coffees-heading > span {
  grid-column: 1 / -1;
  justify-self: start;
  margin: 0 0 22px 4px;
  color: #9d3338;
  font-size: 10px;
  letter-spacing: 0.23em;
}

body.home .cariama-home-coffees-heading > span::before {
  width: 38px;
  background: #d5a34e;
}

body.home .cariama-home-coffees-heading > span::after {
  display: none;
  content: none;
}

body.home .cariama-home-coffees-heading h2 {
  display: grid;
  margin: 0;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(49px, 5.6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

body.home .cariama-home-coffees-heading h2 span {
  display: block;
}

body.home .cariama-home-coffees-heading h2 em {
  display: block;
  margin: 8px 0 0 clamp(28px, 4vw, 66px);
  color: #9d3338;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76em;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: none;
}

body.home .cariama-home-coffees-heading > p {
  align-self: end;
  max-width: 365px;
  border-left: 2px solid #d5a34e;
  margin: 0 0 5px;
  padding: 4px 0 4px 25px;
  color: #53655b;
  font-family: var(--footer-font);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 550;
  line-height: 1.65;
}

body.home .cariama-home-coffees-signature {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 13px;
  margin: clamp(34px, 4vw, 52px) 0 0 clamp(28px, 4vw, 66px);
  color: #7a6c62;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body.home .cariama-home-coffees-signature i {
  position: relative;
  width: clamp(50px, 7vw, 90px);
  height: 12px;
  overflow: hidden;
}

body.home .cariama-home-coffees-signature i::before {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 12px;
  border: 1.5px solid #b63b3e;
  border-radius: 50%;
  content: "";
}

body.home .cariama-home-coffee-filters {
  margin-top: clamp(32px, 4vw, 48px);
}

@media (max-width: 760px) {
  body.home .cariama-home-coffees-heading {
    display: block;
    padding: 0 5px;
  }

  body.home .cariama-home-coffees-heading::before {
    top: -14px;
    left: -9px;
    width: 54px;
    height: 54px;
    box-shadow: inset 0 0 0 7px #f8f5ed, inset 0 0 0 8px rgba(160, 55, 59, 0.1);
  }

  body.home .cariama-home-coffees-heading > span { margin-bottom: 18px; }
  body.home .cariama-home-coffees-heading h2 { font-size: clamp(43px, 13.2vw, 62px); }
  body.home .cariama-home-coffees-heading h2 em { margin-top: 6px; margin-left: 20px; }

  body.home .cariama-home-coffees-heading > p {
    max-width: 500px;
    margin: 28px 0 0 20px;
    padding-left: 18px;
    font-size: 14px;
  }

  body.home .cariama-home-coffees-signature {
    margin: 30px 0 0 20px;
    gap: 9px;
  }

  body.home .cariama-home-coffees-signature i { width: 28px; }
}

/* End Cariama original showcase heading - v1.1.110 */

/* Restored showcase heading and brand typography - v1.1.111 */
body.home .cariama-home-coffees {
  padding-top: clamp(72px, 7vw, 105px);
  background: #fcfbf8;
}

body.home .cariama-home-coffees-heading {
  display: block;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

body.home .cariama-home-coffees-heading::before {
  display: none;
  content: none;
}

body.home .cariama-home-coffees-heading > span {
  display: inline-flex;
  align-items: center;
  justify-self: auto;
  gap: 12px;
  margin: 0;
  color: #073c29;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.home .cariama-home-coffees-heading > span::before,
body.home .cariama-home-coffees-heading > span::after {
  display: block;
  width: 28px;
  height: 1px;
  background: #f47b50;
  content: "";
}

body.home .cariama-home-coffees-heading h2 {
  display: block;
  margin: 13px 0 7px;
  color: #68483d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.4vw, 67px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: none;
}

body.home .cariama-home-coffees-heading > p {
  max-width: none;
  border: 0;
  margin: 0;
  padding: 0;
  color: #7a817c;
  font-family: var(--footer-font);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

body.home .cariama-home-coffees-signature {
  display: none;
}

body.home .cariama-home-coffee-filters {
  margin-top: clamp(35px, 4vw, 56px);
}

body.home .cariama-home-coffee-info {
  font-family: var(--footer-font);
}

body.home .cariama-home-coffee-info small {
  font-family: var(--strong-font);
  font-weight: 800;
}

body.home .cariama-home-coffee-info h3 {
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

body.home .cariama-home-coffee-detail {
  font-family: var(--footer-font);
  font-weight: 600;
}

body.home .cariama-home-coffee-info > strong {
  color: #073c29;
  font-family: var(--strong-font);
  font-size: 20px;
  font-weight: 700;
}

body.home .cariama-home-coffee-link {
  font-family: var(--strong-font);
  font-weight: 800;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  body.home .cariama-home-coffees-heading {
    display: block;
    padding: 0;
  }

  body.home .cariama-home-coffees-heading h2 {
    font-size: clamp(39px, 11.5vw, 55px);
  }

  body.home .cariama-home-coffees-heading > p {
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
}

/* End restored showcase heading and brand typography - v1.1.111 */

/* Premium product fact separators - v1.1.113 */
@media (min-width: 981px) {
  .single-product .product-detail-page::after,
  .product-template-default .product-detail-page::after {
    top: 76px !important;
    left: 50% !important;
    display: block !important;
    width: 22px !important;
    height: min(460px, calc(100% - 150px)) !important;
    background:
      url("../assets/cariama-wave-line-vertical.svg") center / 14px 100% no-repeat,
      linear-gradient(180deg, transparent, rgba(196, 151, 77, 0.58) 10%, rgba(196, 151, 77, 0.58) 90%, transparent) center / 1px 100% no-repeat !important;
    content: "" !important;
    opacity: 0.64 !important;
    filter: saturate(0.72) !important;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent) !important;
    mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent) !important;
    transform: translateX(-50%) !important;
  }

  .single-product .product-detail-page::before,
  .product-template-default .product-detail-page::before {
    position: absolute !important;
    z-index: 4 !important;
    top: 286px !important;
    left: 50% !important;
    display: block !important;
    width: 11px !important;
    height: 11px !important;
    border: 2px solid #fff !important;
    background: #a0373b !important;
    box-shadow: 0 0 0 1px rgba(160, 55, 59, 0.46), 0 0 0 6px rgba(252, 251, 248, 0.9) !important;
    content: "" !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  gap: 0 clamp(36px, 4vw, 58px) !important;
}

.single-product .product-details-list::before,
.product-template-default .product-details-list::before {
  top: 14px !important;
  bottom: 24px !important;
  width: 1px !important;
  background: linear-gradient(180deg, transparent, rgba(196, 151, 77, 0.58) 8%, rgba(196, 151, 77, 0.58) 92%, transparent) !important;
  opacity: 1 !important;
  transform: translateX(-50%) !important;
}

.single-product .product-details-list::after,
.product-template-default .product-details-list::after {
  position: absolute !important;
  z-index: 4 !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border: 2px solid #fcfbf8 !important;
  background: #a0373b !important;
  box-shadow: 0 0 0 1px rgba(160, 55, 59, 0.42) !important;
  content: "" !important;
  pointer-events: none !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  padding: 20px clamp(17px, 2vw, 28px) 38px !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  right: auto !important;
  bottom: 3px !important;
  left: 0 !important;
  display: block !important;
  width: calc(200% + clamp(36px, 4vw, 58px)) !important;
  height: 18px !important;
  background:
    url("../assets/cariama-wave-short.svg") center / 72px 15px no-repeat,
    linear-gradient(90deg, transparent, rgba(196, 151, 77, 0.46) 7%, rgba(196, 151, 77, 0.46) 43%, transparent 43%, transparent 57%, rgba(196, 151, 77, 0.46) 57%, rgba(196, 151, 77, 0.46) 93%, transparent) center / 100% 1px no-repeat !important;
  content: "" !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  color: #8b6847 !important;
}

@media (max-width: 980px) {
  .single-product .product-detail-visual::after,
  .product-template-default .product-detail-visual::after {
    width: min(82%, 390px) !important;
    height: 18px !important;
    background:
      url("../assets/cariama-wave-short.svg") center / 72px 15px no-repeat,
      linear-gradient(90deg, transparent, rgba(196, 151, 77, 0.46) 8%, rgba(196, 151, 77, 0.46) 42%, transparent 42%, transparent 58%, rgba(196, 151, 77, 0.46) 58%, rgba(196, 151, 77, 0.46) 92%, transparent) center / 100% 1px no-repeat !important;
  }
}

@media (max-width: 760px) {
  .single-product .product-details-list,
  .product-template-default .product-details-list {
    gap: 0 !important;
  }

  .single-product .product-details-list::before,
  .product-template-default .product-details-list::before,
  .single-product .product-details-list::after,
  .product-template-default .product-details-list::after {
    display: none !important;
    content: none !important;
  }

  .single-product .product-details-list > div::after,
  .product-template-default .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    right: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    background:
      url("../assets/cariama-wave-short.svg") center / 66px 14px no-repeat,
      linear-gradient(90deg, transparent, rgba(196, 151, 77, 0.4) 8%, rgba(196, 151, 77, 0.4) 40%, transparent 40%, transparent 60%, rgba(196, 151, 77, 0.4) 60%, rgba(196, 151, 77, 0.4) 92%, transparent) center / 100% 1px no-repeat !important;
  }
}

/* End premium product fact separators - v1.1.113 */

/* Best sellers ranking and coming-soon rail - v1.1.115 */
body.home .cariama-home-coffees-heading h2 {
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(48px, 5.8vw, 84px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

body.home .cariama-home-coffees-heading > span {
  color: #9d3338;
}

body.home .cariama-home-coffees-heading p {
  max-width: 620px;
  margin: 15px auto 0;
  color: #53655b;
  font-family: var(--footer-font);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  line-height: 1.55;
}

body.home .cariama-home-best-sellers-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  max-width: 1080px;
  margin: clamp(35px, 4vw, 52px) auto 0;
  color: #806a5d;
  font-family: var(--strong-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.home .cariama-home-best-sellers-seal i {
  width: clamp(70px, 11vw, 150px);
  height: 8px;
  background: url("../assets/cariama-wave-short.svg") center / 70px 14px no-repeat;
  opacity: 0.72;
}

body.home .cariama-home-coffee-stage {
  margin-top: 12px;
}

body.home .cariama-home-coffee-rank {
  position: absolute;
  z-index: 4;
  top: 29px;
  left: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7, 60, 41, 0.24);
  border-radius: 50%;
  background: rgba(252, 251, 248, 0.92);
  color: #9d3338;
  font-family: var(--strong-font);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
  transition: background 260ms ease, color 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-rank,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-rank {
  background: #9d3338;
  color: #fff8ea;
  transform: translateY(-4px);
}

.cariama-coming-soon {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 9vw, 138px) 0 clamp(82px, 8vw, 124px);
  background:
    radial-gradient(circle at 8% 12%, rgba(224, 182, 101, 0.14), transparent 26%),
    radial-gradient(circle at 92% 84%, rgba(160, 55, 59, 0.18), transparent 25%),
    #063c29;
  color: #fff8ea;
}

.cariama-coming-soon::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: url("../assets/cariama-wave-line-horizontal.svg") center / 100% 8px no-repeat;
  content: "";
  opacity: 0.52;
}

.cariama-coming-soon-heading {
  position: relative;
  z-index: 2;
  width: min(100% - 44px, 1040px);
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.cariama-coming-soon-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e0b665;
  font-family: var(--strong-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cariama-coming-soon-heading > span::before,
.cariama-coming-soon-heading > span::after {
  width: 30px;
  height: 1px;
  background: #f47b50;
  content: "";
}

.cariama-coming-soon-heading h2 {
  margin: 14px 0 12px;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(50px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.cariama-coming-soon-heading p {
  margin: 0;
  color: rgba(255, 248, 234, 0.7);
  font-family: var(--footer-font);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 600;
}

.cariama-coming-soon-window {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.cariama-coming-soon-track {
  display: flex;
  width: max-content;
  animation: cariama-coming-soon-flow 34s linear infinite;
  will-change: transform;
}

.cariama-coming-soon-window:hover .cariama-coming-soon-track,
.cariama-coming-soon-window:focus-within .cariama-coming-soon-track {
  animation-play-state: paused;
}

.cariama-coming-soon-group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(20px, 2.4vw, 34px);
  padding-right: clamp(20px, 2.4vw, 34px);
}

.cariama-coming-soon-card {
  display: grid;
  flex: 0 0 clamp(260px, 22vw, 320px);
  width: clamp(260px, 22vw, 320px);
  grid-template-rows: 330px auto;
  color: #fff8ea;
}

.cariama-coming-soon-image {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(224, 182, 101, 0.3);
  background: #f6f1e6;
  place-items: center;
}

.cariama-coming-soon-image::after {
  position: absolute;
  right: 18%;
  bottom: 22px;
  left: 18%;
  height: 16px;
  background: rgba(29, 25, 20, 0.17);
  content: "";
  filter: blur(12px);
}

.cariama-coming-soon-image > span {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 17px;
  border: 1px solid rgba(160, 55, 59, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 248, 234, 0.9);
  color: #9d3338;
  font-family: var(--strong-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cariama-coming-soon-image img {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 86%;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: saturate(0.82) drop-shadow(0 20px 18px rgba(26, 30, 23, 0.18));
  transition: filter 360ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cariama-coming-soon-card:hover .cariama-coming-soon-image img {
  filter: saturate(1) drop-shadow(0 28px 22px rgba(26, 30, 23, 0.24));
  transform: translateY(-8px) scale(1.035);
}

.cariama-coming-soon-card > div:last-child {
  border-left: 2px solid #e0b665;
  padding: 20px 4px 0 18px;
}

.cariama-coming-soon-card small {
  display: block;
  margin-bottom: 7px;
  color: #e0b665;
  font-family: var(--strong-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cariama-coming-soon-card h3 {
  margin: 0;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.cariama-coming-soon-card p {
  margin: 9px 0 0;
  color: rgba(255, 248, 234, 0.66);
  font-family: var(--footer-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.cariama-coming-soon-empty {
  display: grid;
  width: min(100% - 44px, 720px);
  min-height: 170px;
  margin: 0 auto;
  border: 1px solid rgba(224, 182, 101, 0.28);
  padding: 34px;
  place-items: center;
  text-align: center;
}

.cariama-coming-soon-empty span {
  width: 82px;
  height: 16px;
  background: url("../assets/cariama-wave-short.svg") center / 82px 16px no-repeat;
}

.cariama-coming-soon-empty p {
  margin: 0;
  color: rgba(255, 248, 234, 0.76);
  font-family: var(--footer-font);
  font-weight: 600;
}

@keyframes cariama-coming-soon-flow {
  to { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  body.home .cariama-home-coffees-heading h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  body.home .cariama-home-best-sellers-seal {
    gap: 9px;
    font-size: 8px;
  }

  body.home .cariama-home-best-sellers-seal i {
    width: 44px;
  }

  body.home .cariama-home-coffee-rank {
    top: 25px;
    left: 5px;
    width: 38px;
    height: 38px;
  }

  .cariama-coming-soon-heading h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .cariama-coming-soon-window {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .cariama-coming-soon-card {
    flex-basis: min(76vw, 285px);
    width: min(76vw, 285px);
    grid-template-rows: 300px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cariama-coming-soon-track {
    animation-play-state: paused;
  }
}

/* End best sellers ranking and coming-soon rail - v1.1.115 */

/* Refined best-sellers editorial cards - v1.1.116 */
body.home .cariama-home-coffees {
  padding: clamp(82px, 8vw, 118px) clamp(20px, 4vw, 62px) clamp(84px, 8vw, 120px);
  background:
    radial-gradient(circle at 10% 22%, rgba(224, 182, 101, 0.14), transparent 24%),
    radial-gradient(circle at 91% 78%, rgba(7, 60, 41, 0.07), transparent 25%),
    #f8f5ed;
}

body.home .cariama-home-coffees-heading {
  max-width: 920px;
}

body.home .cariama-home-coffees-heading h2 {
  max-width: 820px;
  margin: 17px auto 0;
  font-size: clamp(45px, 5.2vw, 72px);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

body.home .cariama-home-coffees-heading p {
  margin-top: 18px;
  font-size: clamp(14px, 1.15vw, 17px);
}

body.home .cariama-home-best-sellers-seal {
  display: none;
}

body.home .cariama-home-coffee-stage {
  max-width: 1240px;
  margin-top: clamp(40px, 5vw, 66px);
  padding-right: 48px;
  padding-left: 48px;
}

body.home .cariama-home-coffee-track {
  min-height: 610px;
  align-items: start;
  gap: clamp(24px, 3vw, 42px);
  padding: 8px 12px 30px;
}

body.home .cariama-home-coffee-card {
  display: grid;
  flex-basis: clamp(310px, 28vw, 380px);
  height: auto;
  min-height: 570px;
  padding: 0;
  grid-template-rows: 400px auto;
  background: transparent;
  transform: none;
}

body.home .cariama-home-coffee-image,
body.home .cariama-home-coffee-card:nth-child(3n + 2) .cariama-home-coffee-image,
body.home .cariama-home-coffee-card:nth-child(3n) .cariama-home-coffee-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(7, 60, 41, 0.14);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.95), rgba(246, 239, 224, 0.74) 64%, rgba(224, 182, 101, 0.16));
  box-shadow: 0 24px 48px rgba(53, 43, 34, 0.1);
}

body.home .cariama-home-coffee-image::before {
  position: absolute;
  z-index: 1;
  right: 19px;
  bottom: 18px;
  left: 19px;
  display: block;
  height: 6px;
  background: url("../assets/cariama-wave-line-horizontal.svg") center / 100% 6px no-repeat;
  content: "";
  opacity: 0.42;
}

body.home .cariama-home-coffee-image::after {
  right: 23%;
  bottom: 32px;
  left: 23%;
  height: 17px;
}

body.home .cariama-home-coffee-image img {
  z-index: 2;
  width: 88%;
  height: 88%;
  mix-blend-mode: multiply;
  filter: saturate(0.95) drop-shadow(0 22px 18px rgba(42, 31, 25, 0.15));
  transform: translateY(11px) scale(0.94);
}

body.home .cariama-home-coffee-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  top: 17px;
  left: 17px;
  width: auto;
  min-width: 56px;
  height: 31px;
  border: 0;
  border-radius: 0;
  padding: 0 11px;
  background: #9d3338;
  box-shadow: 7px 7px 0 rgba(224, 182, 101, 0.24);
  color: #fff8ea;
  font-size: 11px;
  letter-spacing: 0.12em;
}

body.home .cariama-home-coffee-rank::before {
  content: "#";
  opacity: 0.68;
}

body.home .cariama-home-coffee-info {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 4;
  display: grid;
  min-height: 178px;
  align-content: start;
  border: 0;
  border-top: 3px solid #e0b665;
  padding: 22px 24px 24px;
  background: #073c29;
  box-shadow: 0 20px 38px rgba(7, 60, 41, 0.16);
  opacity: 1;
  text-align: left;
  transform: none;
  pointer-events: auto;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.home .cariama-home-coffee-info small {
  margin-bottom: 7px;
  color: #e0b665;
}

body.home .cariama-home-coffee-info h3 {
  margin-bottom: 9px;
  color: #fff8ea;
  font-size: clamp(22px, 1.8vw, 27px);
  line-height: 1.02;
}

body.home .cariama-home-coffee-info h3 a {
  color: inherit;
}

body.home .cariama-home-coffee-detail {
  overflow: hidden;
  max-height: 0;
  min-height: 0;
  margin: 0;
  color: rgba(255, 248, 234, 0.7);
  opacity: 0;
  transition: max-height 360ms ease, margin 360ms ease, opacity 260ms ease;
}

body.home .cariama-home-coffee-info > strong {
  color: #e0b665;
  font-size: 22px;
}

body.home .cariama-home-coffee-link {
  justify-self: start;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  padding: 0 15px;
  background: #fff8ea;
  color: #073c29;
  opacity: 0;
  transition: max-height 360ms ease, margin 360ms ease, padding 360ms ease, opacity 260ms ease;
}

body.home .cariama-home-coffee-card:hover,
body.home .cariama-home-coffee-card:focus-within {
  transform: translateY(-9px);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-image img,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-image img {
  filter: saturate(1.04) drop-shadow(0 30px 23px rgba(42, 31, 25, 0.22));
  transform: translateY(-3px) scale(1.025);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-info,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-info {
  opacity: 1;
  transform: none;
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-detail,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-detail {
  max-height: 55px;
  margin: 0 0 9px;
  opacity: 1;
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-link,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-link {
  max-height: 42px;
  margin-top: 12px;
  padding-top: 9px;
  padding-bottom: 9px;
  opacity: 1;
}

body.home .cariama-home-coffee-track:has(.cariama-home-coffee-card:hover) .cariama-home-coffee-card:not(:hover) {
  opacity: 0.78;
  transform: scale(0.98);
}

body.home .cariama-home-coffee-arrow {
  top: 34%;
  color: #9d3338;
  opacity: 0.78;
}

body.home .cariama-home-coffees-all {
  margin-top: 6px;
  border-color: #073c29;
  color: #073c29;
  font-family: var(--strong-font);
  font-weight: 800;
}

@media (max-width: 760px) {
  body.home .cariama-home-coffees-heading h2 {
    font-size: clamp(42px, 12.5vw, 58px);
  }

  body.home .cariama-home-coffee-stage {
    padding-right: 26px;
    padding-left: 26px;
  }

  body.home .cariama-home-coffee-track {
    min-height: 580px;
  }

  body.home .cariama-home-coffee-card {
    flex-basis: min(82vw, 330px);
    min-height: 550px;
    grid-template-rows: 365px auto;
  }

  body.home .cariama-home-coffee-image,
  body.home .cariama-home-coffee-card:nth-child(3n + 2) .cariama-home-coffee-image,
  body.home .cariama-home-coffee-card:nth-child(3n) .cariama-home-coffee-image {
    height: 365px;
  }

  body.home .cariama-home-coffee-info {
    min-height: 180px;
    padding: 20px;
  }

  body.home .cariama-home-coffee-detail {
    max-height: 55px;
    margin-bottom: 9px;
    opacity: 1;
  }

  body.home .cariama-home-coffee-link {
    max-height: 42px;
    margin-top: 12px;
    padding-top: 9px;
    padding-bottom: 9px;
    opacity: 1;
  }
}

@media (hover: none) {
  body.home .cariama-home-coffee-detail {
    max-height: 55px;
    margin-bottom: 9px;
    opacity: 1;
  }

  body.home .cariama-home-coffee-link {
    max-height: 42px;
    margin-top: 12px;
    padding-top: 9px;
    padding-bottom: 9px;
    opacity: 1;
  }
}

/* End refined best-sellers editorial cards - v1.1.116 */

/* Simple clean best-sellers rail - v1.1.118 */
body.home .cariama-home-coffees {
  padding: clamp(76px, 7vw, 104px) clamp(18px, 4vw, 58px) clamp(76px, 7vw, 106px);
  background: #fbfaf6;
}

body.home .cariama-home-coffees-heading {
  max-width: 760px;
}

body.home .cariama-home-coffees-heading h2 {
  margin: 0;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(43px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-transform: uppercase;
}

body.home .cariama-home-coffees-heading p {
  margin: 14px 0 0;
  color: #66736b;
  font-family: var(--footer-font);
  font-size: 15px;
  font-weight: 600;
}

body.home .cariama-home-coffee-stage {
  max-width: 1260px;
  margin-top: clamp(38px, 4vw, 54px);
  padding-right: 46px;
  padding-left: 46px;
}

body.home .cariama-home-coffee-track {
  min-height: 500px;
  align-items: start;
  gap: clamp(18px, 2.5vw, 34px);
  padding: 0 8px 22px;
}

body.home .cariama-home-coffee-card {
  display: block;
  flex-basis: clamp(245px, 22vw, 290px);
  height: 470px;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.home .cariama-home-coffee-image,
body.home .cariama-home-coffee-card:nth-child(3n + 2) .cariama-home-coffee-image,
body.home .cariama-home-coffee-card:nth-child(3n) .cariama-home-coffee-image {
  height: 390px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.home .cariama-home-coffee-image::before {
  display: none;
  content: none;
}

body.home .cariama-home-coffee-image::after {
  right: 24%;
  bottom: 28px;
  left: 24%;
  height: 15px;
  background: rgba(36, 29, 24, 0.14);
  filter: blur(12px);
}

body.home .cariama-home-coffee-image img {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 16px rgba(42, 31, 25, 0.12));
  transform: translateY(9px) scale(0.9);
}

body.home .cariama-home-coffee-rank {
  display: none;
}

body.home .cariama-home-coffee-info {
  position: absolute;
  right: 6px;
  bottom: 2px;
  left: 6px;
  display: block;
  min-height: 0;
  border: 0;
  border-top: 1px solid rgba(7, 60, 41, 0.18);
  padding: 15px 8px 4px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: none;
  opacity: 0;
  text-align: center;
  transform: translateY(12px);
  pointer-events: none;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

body.home .cariama-home-coffee-info small {
  margin-bottom: 5px;
  color: #9d3338;
}

body.home .cariama-home-coffee-info h3 {
  margin: 0 0 7px;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
}

body.home .cariama-home-coffee-detail {
  display: none;
}

body.home .cariama-home-coffee-info > strong {
  display: block;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: 18px;
  font-weight: 800;
}

body.home .cariama-home-coffee-link {
  display: inline-flex;
  overflow: visible;
  max-height: none;
  margin-top: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #9d3338;
  opacity: 1;
  font-family: var(--strong-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home .cariama-home-coffee-card:hover,
body.home .cariama-home-coffee-card:focus-within {
  transform: translateY(-5px);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-image img,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-image img {
  filter: drop-shadow(0 26px 21px rgba(42, 31, 25, 0.18));
  transform: translateY(-7px) scale(1.015);
}

body.home .cariama-home-coffee-card:hover .cariama-home-coffee-info,
body.home .cariama-home-coffee-card:focus-within .cariama-home-coffee-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.home .cariama-home-coffee-track:has(.cariama-home-coffee-card:hover) .cariama-home-coffee-card:not(:hover) {
  opacity: 0.72;
  transform: scale(0.98);
}

body.home .cariama-home-coffee-arrow {
  top: 36%;
  color: #9d3338;
  font-size: 36px;
}

body.home .cariama-home-coffees-all {
  margin-top: 0;
  font-family: var(--strong-font);
}

@media (max-width: 760px), (hover: none) {
  body.home .cariama-home-coffee-stage {
    padding-right: 24px;
    padding-left: 24px;
  }

  body.home .cariama-home-coffee-track {
    min-height: 515px;
  }

  body.home .cariama-home-coffee-card {
    flex-basis: min(78vw, 285px);
    height: 490px;
  }

  body.home .cariama-home-coffee-image,
  body.home .cariama-home-coffee-card:nth-child(3n + 2) .cariama-home-coffee-image,
  body.home .cariama-home-coffee-card:nth-child(3n) .cariama-home-coffee-image {
    height: 365px;
  }

  body.home .cariama-home-coffee-info {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

/* End simple clean best-sellers rail - v1.1.118 */

/* Clearer cafeteria origin story - v1.1.119 */
.cafeteria-story-genesis-veil {
  background:
    linear-gradient(180deg, rgba(247, 243, 233, 0.03) 0%, rgba(247, 243, 233, 0.07) 42%, rgba(5, 45, 29, 0.16) 62%, rgba(5, 45, 29, 0.94) 87%, #052d1d 100%),
    linear-gradient(270deg, rgba(247, 243, 233, 0.78), rgba(247, 243, 233, 0.34) 42%, rgba(247, 243, 233, 0.04) 68%, transparent 78%);
}

.cafeteria-story-genesis-copy {
  width: min(620px, 46vw);
}

.cafeteria-story-genesis-copy h2 {
  max-width: 610px;
  margin: 19px 0 20px;
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: 0.94;
}

.cafeteria-story-genesis-copy p {
  max-width: 570px;
  color: #294a39;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 650;
  line-height: 1.6;
}

.cafeteria-story-genesis-copy blockquote {
  max-width: 570px;
  margin-top: 22px;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.18;
}

.cafeteria-story-genesis-path article {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: center;
  padding-top: 25px;
  padding-bottom: 25px;
}

.cafeteria-story-genesis-path strong {
  margin-bottom: 10px;
  font-size: clamp(21px, 1.75vw, 27px);
  line-height: 1.05;
}

.cafeteria-story-genesis-path small {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.45;
}

.cafeteria-story-genesis-path span {
  display: none;
}

@media (max-width: 980px) {
  .cafeteria-story-genesis-copy {
    width: auto;
  }
}

@media (max-width: 760px) {
  .cafeteria-story-genesis-copy h2 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .cafeteria-story-genesis-path article {
    min-height: 0;
    padding: 20px;
  }
}

/* End clearer cafeteria origin story - v1.1.119 */

/* Editorial cafeteria genesis with image collage - v1.1.120 */
.cafeteria-story-genesis {
  display: grid;
  min-height: 0;
  overflow: hidden;
  padding: clamp(88px, 9vw, 144px) clamp(28px, 6vw, 105px);
  background:
    radial-gradient(circle at 8% 92%, rgba(224, 182, 101, 0.16), transparent 24%),
    #f6f1e7;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(58px, 8vw, 128px);
}

.cafeteria-story-genesis-gallery {
  position: relative;
  width: 100%;
  height: clamp(570px, 52vw, 760px);
}

.cafeteria-story-genesis-image {
  position: absolute;
  inset: 0 auto auto 0;
  width: 78%;
  height: 86%;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(34, 48, 37, 0.14);
}

.cafeteria-story-genesis-image img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cafeteria-story-genesis-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 48%;
  height: 43%;
  margin: 0;
  overflow: hidden;
  border: clamp(8px, 1vw, 14px) solid #f6f1e7;
  background: #073c29;
  box-shadow: 0 25px 52px rgba(35, 43, 35, 0.2);
}

.cafeteria-story-genesis-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cafeteria-story-genesis-gallery:hover .cafeteria-story-genesis-image img,
.cafeteria-story-genesis-gallery:hover .cafeteria-story-genesis-detail img {
  transform: scale(1.025);
}

.cafeteria-story-genesis-caption {
  position: absolute;
  bottom: 6%;
  left: 4%;
  z-index: 4;
  max-width: 260px;
  border-left: 3px solid #f47b50;
  padding: 15px 18px;
  background: #073c29;
  box-shadow: 0 18px 34px rgba(7, 60, 41, 0.2);
}

.cafeteria-story-genesis-caption span,
.cafeteria-story-genesis-caption strong {
  display: block;
}

.cafeteria-story-genesis-caption span {
  margin-bottom: 5px;
  color: #e0b665;
  font-family: var(--strong-font);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cafeteria-story-genesis-caption strong {
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.05;
  text-transform: uppercase;
}

.cafeteria-story-genesis-veil,
.cafeteria-story-genesis-path {
  display: none;
}

.cafeteria-story-genesis-copy {
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;
  width: auto;
  max-width: 650px;
}

.cafeteria-story-genesis-copy > span {
  color: #9d3338;
  font-family: var(--strong-font);
}

.cafeteria-story-genesis-copy h2 {
  max-width: 630px;
  margin: 20px 0 25px;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(50px, 5.1vw, 82px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.91;
  text-transform: uppercase;
}

.cafeteria-story-genesis-copy p {
  max-width: 570px;
  color: #40584b;
  font-family: var(--footer-font);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.65;
}

.cafeteria-story-genesis-copy blockquote {
  max-width: 575px;
  margin: 28px 0 0;
  color: #073c29;
  font-family: var(--strong-font);
  font-size: clamp(20px, 1.75vw, 27px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.cafeteria-story-genesis-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  border-bottom: 1px solid #9d3338;
  padding: 0 0 8px;
  color: #9d3338;
  font-family: var(--strong-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.cafeteria-story-genesis-copy > a span {
  font-size: 17px;
  transition: transform 220ms ease;
}

.cafeteria-story-genesis-copy > a:hover span {
  transform: translateY(4px);
}

@media (max-width: 980px) {
  .cafeteria-story-genesis {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .cafeteria-story-genesis-gallery {
    height: min(84vw, 690px);
  }

  .cafeteria-story-genesis-copy {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .cafeteria-story-genesis {
    padding: 68px 20px 78px;
    gap: 46px;
  }

  .cafeteria-story-genesis-gallery {
    height: 470px;
  }

  .cafeteria-story-genesis-image {
    width: 88%;
    height: 76%;
  }

  .cafeteria-story-genesis-detail {
    width: 58%;
    height: 39%;
  }

  .cafeteria-story-genesis-caption {
    bottom: 4%;
    left: 0;
    max-width: 220px;
    padding: 12px 14px;
  }

  .cafeteria-story-genesis-copy h2 {
    font-size: clamp(40px, 12vw, 57px);
  }
}

/* End editorial cafeteria genesis with image collage - v1.1.120 */

/* Removed territory and product pair - v1.1.121 */
.cafeteria-story-territory {
  display: none !important;
}

@media (hover: none) {
  body.home .cariama-home-coffee-info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Selection warning above every product option - v1.1.142 */
.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  grid-template-areas:
    "warn warn"
    "variation variation"
    "grind ship"
    "button button" !important;
}

.single-product .product-grind-warning,
.product-template-default .product-grind-warning {
  grid-area: warn !important;
  grid-column: 1 / -1 !important;
  order: -10;
}

.single-product .product-variation-warning,
.product-template-default .product-variation-warning {
  grid-column: 1 / -1 !important;
  order: -10;
}

.single-product .product-grind-warning,
.single-product .product-variation-warning,
.product-template-default .product-grind-warning,
.product-template-default .product-variation-warning {
  width: 100% !important;
  margin: 0 0 4px !important;
  border: 1px solid rgba(162, 57, 60, 0.2) !important;
  border-left: 4px solid #a2393c !important;
  border-radius: 4px !important;
  padding: 10px 13px !important;
  background: linear-gradient(90deg, #fff4ed, #fffaf4) !important;
  box-shadow: 0 7px 18px rgba(162, 57, 60, 0.06) !important;
  color: #a2393c !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.055em !important;
  line-height: 1.35 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.single-product .product-grind-warning.is-visible,
.single-product .product-variation-warning.is-visible,
.product-template-default .product-grind-warning.is-visible,
.product-template-default .product-variation-warning.is-visible {
  display: block !important;
}

@media (max-width: 760px) {
  .single-product .product-buy-actions,
  .product-template-default .product-buy-actions {
    grid-template-areas:
      "warn"
      "variation"
      "grind"
      "ship"
      "button" !important;
  }
}

/* End selection warning above every product option - v1.1.142 */

/* Clean editorial product fact separation - v1.1.145 */
@media (min-width: 981px) {
  .single-product .product-detail-page::after,
  .product-template-default .product-detail-page::after {
    top: 8% !important;
    left: 50% !important;
    display: block !important;
    width: 1px !important;
    height: 84% !important;
    background: linear-gradient(180deg, transparent, rgba(7, 60, 41, 0.18) 12%, rgba(7, 60, 41, 0.18) 88%, transparent) !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    transform: translateX(-50%) !important;
  }

  .single-product .product-detail-page::before,
  .product-template-default .product-detail-page::before {
    top: 50% !important;
    left: 50% !important;
    width: 34px !important;
    height: 3px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #a2393c 0 48%, #e0a93f 48% 100%) !important;
    box-shadow: 0 0 0 8px #fff !important;
    transform: translate(-50%, -50%) !important;
  }
}

.single-product .product-editor-description > span,
.product-template-default .product-editor-description > span {
  margin: 0 0 18px !important;
  padding: 0 0 13px !important;
  border-bottom: 1px solid rgba(7, 60, 41, 0.14) !important;
  color: #a2393c !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
}

.single-product .product-editor-description > span::after,
.product-template-default .product-editor-description > span::after {
  right: auto !important;
  bottom: -1px !important;
  left: 0 !important;
  width: 52px !important;
  height: 2px !important;
  background: #e0a93f !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 0 !important;
}

.single-product .product-details-list::before,
.single-product .product-details-list::after,
.product-template-default .product-details-list::before,
.product-template-default .product-details-list::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  position: relative !important;
  min-height: 92px !important;
  border: 1px solid rgba(7, 60, 41, 0.11) !important;
  border-left: 3px solid rgba(224, 169, 63, 0.72) !important;
  border-radius: 3px !important;
  padding: 16px 17px 15px !important;
  background: #fbfaf6 !important;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease !important;
}

.single-product .product-details-list > div:hover,
.product-template-default .product-details-list > div:hover {
  border-color: rgba(7, 60, 41, 0.24) !important;
  border-left-color: #a2393c !important;
  background: #fff !important;
  transform: translateY(-3px) !important;
}

.single-product .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  margin: 0 0 7px !important;
  color: #a2393c !important;
  font-size: 8px !important;
  letter-spacing: 0.17em !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  color: #073c29 !important;
  font-size: clamp(16px, 1.25vw, 20px) !important;
  line-height: 1.13 !important;
}

.single-product .product-details-list .product-detail-fact-notas-sensoriais,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais {
  grid-column: 1 / -1 !important;
  min-height: 0 !important;
  border-color: #073c29 !important;
  border-left-color: #e0a93f !important;
  padding: 19px 20px !important;
  background: #073c29 !important;
}

.single-product .product-details-list .product-detail-fact-notas-sensoriais dt,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais dt {
  color: #e0a93f !important;
}

.single-product .product-details-list .product-detail-fact-notas-sensoriais dd,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais dd {
  max-width: 620px !important;
  color: #fff3d6 !important;
  font-size: clamp(16px, 1.25vw, 20px) !important;
}

.single-product .product-details-list .product-detail-fact-notas-sensoriais:hover,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais:hover {
  border-color: #073c29 !important;
  border-left-color: #e0a93f !important;
  background: #0b4934 !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list,
  .product-template-default .product-details-list {
    grid-template-columns: 1fr !important;
  }

  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    min-height: 0 !important;
  }
}

/* End clean editorial product fact separation - v1.1.145 */

/* Refined restoration of original product separators - v1.1.146 */
@media (min-width: 981px) {
  .single-product .product-detail-page::after,
  .product-template-default .product-detail-page::after {
    top: 76px !important;
    left: 50% !important;
    display: block !important;
    width: 18px !important;
    height: min(460px, calc(100% - 150px)) !important;
    background:
      url("../assets/cariama-wave-line-vertical.svg") center / 10px 100% no-repeat,
      linear-gradient(180deg, transparent, rgba(196, 151, 77, 0.35) 12%, rgba(196, 151, 77, 0.35) 88%, transparent) center / 1px 100% no-repeat !important;
    opacity: 0.52 !important;
    filter: saturate(0.64) !important;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent) !important;
    mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent) !important;
    transform: translateX(-50%) !important;
  }

  .single-product .product-detail-page::before,
  .product-template-default .product-detail-page::before {
    top: 286px !important;
    left: 50% !important;
    width: 8px !important;
    height: 8px !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    background: #a0373b !important;
    box-shadow: 0 0 0 1px rgba(160, 55, 59, 0.36), 0 0 0 5px rgba(252, 251, 248, 0.86) !important;
    transform: translate(-50%, -50%) !important;
  }
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 clamp(30px, 3vw, 46px) !important;
  padding: 0 !important;
}

.single-product .product-details-list::before,
.product-template-default .product-details-list::before {
  position: absolute !important;
  top: 13px !important;
  bottom: 25px !important;
  left: 50% !important;
  display: block !important;
  width: 1px !important;
  background: linear-gradient(180deg, transparent, rgba(196, 151, 77, 0.42) 8%, rgba(196, 151, 77, 0.42) 92%, transparent) !important;
  content: "" !important;
  opacity: 1 !important;
  transform: translateX(-50%) !important;
}

.single-product .product-details-list::after,
.product-template-default .product-details-list::after {
  position: absolute !important;
  z-index: 4 !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  width: 7px !important;
  height: 7px !important;
  border: 2px solid #fcfbf8 !important;
  border-radius: 50% !important;
  background: #a0373b !important;
  box-shadow: 0 0 0 1px rgba(160, 55, 59, 0.34) !important;
  content: "" !important;
  transform: translate(-50%, -50%) !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div,
.single-product .product-details-list .product-detail-fact-notas-sensoriais,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais {
  grid-column: auto !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 19px clamp(15px, 1.6vw, 23px) 35px !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  transform: none !important;
  transition: color 200ms ease, transform 200ms ease !important;
}

.single-product .product-details-list > div:hover,
.product-template-default .product-details-list > div:hover,
.single-product .product-details-list .product-detail-fact-notas-sensoriais:hover,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais:hover {
  border: 0 !important;
  background: transparent !important;
  transform: translateY(-2px) !important;
}

.single-product .product-details-list > div::after,
.product-template-default .product-details-list > div::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  position: absolute !important;
  right: auto !important;
  bottom: 3px !important;
  left: 0 !important;
  display: block !important;
  width: calc(200% + clamp(30px, 3vw, 46px)) !important;
  height: 14px !important;
  background:
    url("../assets/cariama-wave-short.svg") center / 52px 11px no-repeat,
    linear-gradient(90deg, transparent, rgba(196, 151, 77, 0.32) 7%, rgba(196, 151, 77, 0.32) 44%, transparent 44%, transparent 56%, rgba(196, 151, 77, 0.32) 56%, rgba(196, 151, 77, 0.32) 93%, transparent) center / 100% 1px no-repeat !important;
  content: "" !important;
  opacity: 0.9 !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt,
.single-product .product-details-list .product-detail-fact-notas-sensoriais dt,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais dt {
  margin: 0 0 8px !important;
  color: #8b6847 !important;
  font-size: 8px !important;
  letter-spacing: 0.17em !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd,
.single-product .product-details-list .product-detail-fact-notas-sensoriais dd,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais dd {
  max-width: none !important;
  color: #073c29 !important;
  font-size: clamp(16px, 1.2vw, 20px) !important;
  line-height: 1.14 !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list,
  .product-template-default .product-details-list {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .single-product .product-details-list::before,
  .single-product .product-details-list::after,
  .product-template-default .product-details-list::before,
  .product-template-default .product-details-list::after {
    display: none !important;
    content: none !important;
  }

  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    padding: 17px 8px 30px !important;
  }

  .single-product .product-details-list > div::after,
  .single-product .product-details-list > div:nth-child(odd)::after,
  .product-template-default .product-details-list > div::after,
  .product-template-default .product-details-list > div:nth-child(odd)::after {
    right: 0 !important;
    bottom: 2px !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 12px !important;
    background:
      url("../assets/cariama-wave-short.svg") center / 48px 10px no-repeat,
      linear-gradient(90deg, transparent, rgba(196, 151, 77, 0.3) 9%, rgba(196, 151, 77, 0.3) 43%, transparent 43%, transparent 57%, rgba(196, 151, 77, 0.3) 57%, rgba(196, 151, 77, 0.3) 91%, transparent) center / 100% 1px no-repeat !important;
    content: "" !important;
  }
}

/* End refined restoration of original product separators - v1.1.146 */

/* Product facts list and gallery arrows - v1.1.148 */
.single-product .product-details-list,
.product-template-default .product-details-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  padding: 0 !important;
}

.single-product .product-details-list::before,
.single-product .product-details-list::after,
.product-template-default .product-details-list::before,
.product-template-default .product-details-list::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div,
.single-product .product-details-list .product-detail-fact-notas-sensoriais,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais {
  position: relative !important;
  display: grid !important;
  min-height: 60px !important;
  grid-template-columns: minmax(118px, 145px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(196, 151, 77, 0.34) !important;
  border-radius: 0 !important;
  padding: 14px 7px !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  transition: background 200ms ease, padding 200ms ease !important;
}

.single-product .product-details-list > div:hover,
.product-template-default .product-details-list > div:hover,
.single-product .product-details-list .product-detail-fact-notas-sensoriais:hover,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais:hover {
  border: 0 !important;
  border-bottom: 1px solid rgba(162, 57, 60, 0.42) !important;
  background: rgba(248, 246, 240, 0.72) !important;
  padding-right: 11px !important;
  padding-left: 11px !important;
  transform: none !important;
}

.single-product .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  position: absolute !important;
  right: auto !important;
  bottom: -1px !important;
  left: 7px !important;
  display: block !important;
  width: 34px !important;
  height: 2px !important;
  background: #a2393c !important;
  content: "" !important;
  opacity: 0.72 !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt,
.single-product .product-details-list .product-detail-fact-notas-sensoriais dt,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais dt {
  margin: 0 !important;
  color: #a2393c !important;
  font-size: 8px !important;
  letter-spacing: 0.17em !important;
  text-align: left !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd,
.single-product .product-details-list .product-detail-fact-notas-sensoriais dd,
.product-template-default .product-details-list .product-detail-fact-notas-sensoriais dd {
  max-width: none !important;
  margin: 0 !important;
  color: #073c29 !important;
  font-size: clamp(15px, 1.1vw, 18px) !important;
  line-height: 1.22 !important;
  text-align: left !important;
}

.single-product .product-detail-visual,
.product-template-default .product-detail-visual {
  position: relative !important;
  overflow: visible !important;
}

.single-product .product-gallery-arrow,
.product-template-default .product-gallery-arrow {
  position: absolute !important;
  z-index: 12 !important;
  top: 39% !important;
  display: grid !important;
  width: 50px !important;
  height: 50px !important;
  place-items: center !important;
  border: 1px solid rgba(162, 57, 60, 0.48) !important;
  border-radius: 50% !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 13px 30px rgba(7, 60, 41, 0.12) !important;
  color: #a2393c !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease !important;
}

.single-product .product-gallery-arrow span,
.product-template-default .product-gallery-arrow span {
  display: block !important;
  font-size: 25px !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

.single-product .product-gallery-arrow-previous,
.product-template-default .product-gallery-arrow-previous {
  left: 12px !important;
}

.single-product .product-gallery-arrow-next,
.product-template-default .product-gallery-arrow-next {
  right: 12px !important;
  animation: cariama-gallery-next-attention 2.2s ease-in-out infinite !important;
}

.single-product .product-gallery-arrow:hover,
.single-product .product-gallery-arrow:focus-visible,
.product-template-default .product-gallery-arrow:hover,
.product-template-default .product-gallery-arrow:focus-visible {
  background: #073c29 !important;
  box-shadow: 0 16px 34px rgba(7, 60, 41, 0.22) !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.08) !important;
  animation-play-state: paused !important;
}

.single-product [data-product-main-image].is-gallery-changing,
.product-template-default [data-product-main-image].is-gallery-changing {
  animation: cariama-gallery-image-change 420ms cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

@keyframes cariama-gallery-next-attention {
  0%, 100% { box-shadow: 0 13px 30px rgba(7, 60, 41, 0.12), 0 0 0 0 rgba(162, 57, 60, 0.2); }
  50% { box-shadow: 0 16px 34px rgba(7, 60, 41, 0.16), 0 0 0 9px rgba(162, 57, 60, 0); }
}

@keyframes cariama-gallery-image-change {
  0% { opacity: 0.25; transform: translateX(16px) scale(0.98); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@media (max-width: 760px) {
  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    grid-template-columns: 100px minmax(0, 1fr) !important;
    gap: 13px !important;
    padding: 13px 5px !important;
  }

  .single-product .product-gallery-arrow,
  .product-template-default .product-gallery-arrow {
    top: 35% !important;
    width: 42px !important;
    height: 42px !important;
  }

  .single-product .product-gallery-arrow-previous,
  .product-template-default .product-gallery-arrow-previous {
    left: 3px !important;
  }

  .single-product .product-gallery-arrow-next,
  .product-template-default .product-gallery-arrow-next {
    right: 3px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-product .product-gallery-arrow-next,
  .product-template-default .product-gallery-arrow-next,
  .single-product [data-product-main-image].is-gallery-changing,
  .product-template-default [data-product-main-image].is-gallery-changing {
    animation: none !important;
  }
}

/* End product facts list and gallery arrows - v1.1.148 */

/* Premium connected facts and gallery guidance - v1.1.150 */
.single-product .product-details-list,
.product-template-default .product-details-list {
  --cariama-fact-label-width: 145px;
  position: relative !important;
}

.single-product .product-details-list::before,
.product-template-default .product-details-list::before {
  position: absolute !important;
  z-index: 2 !important;
  top: 20px !important;
  bottom: 20px !important;
  left: calc(7px + var(--cariama-fact-label-width) + 9px) !important;
  display: block !important;
  width: 1px !important;
  background: linear-gradient(180deg, transparent, rgba(224, 169, 63, 0.5) 8%, rgba(224, 169, 63, 0.5) 92%, transparent) !important;
  content: "" !important;
  opacity: 1 !important;
  transform: none !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div {
  grid-template-columns: minmax(118px, var(--cariama-fact-label-width)) minmax(0, 1fr) !important;
  min-height: 61px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.single-product .product-details-list > div::before,
.product-template-default .product-details-list > div::before {
  position: absolute !important;
  z-index: 3 !important;
  top: 50% !important;
  left: calc(7px + var(--cariama-fact-label-width) + 5px) !important;
  display: block !important;
  width: 9px !important;
  height: 9px !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  background: #e0a93f !important;
  box-shadow: 0 0 0 1px rgba(224, 169, 63, 0.44) !important;
  content: "" !important;
  transform: translateY(-50%) !important;
}

.single-product .product-details-list > div:first-child::before,
.product-template-default .product-details-list > div:first-child::before {
  background: #a2393c !important;
  box-shadow: 0 0 0 1px rgba(162, 57, 60, 0.42), 0 0 0 5px rgba(162, 57, 60, 0.06) !important;
}

.single-product .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  width: 45px !important;
  background: linear-gradient(90deg, #a2393c, #e0a93f) !important;
  opacity: 0.78 !important;
  transition: width 240ms ease !important;
}

.single-product .product-details-list > div:hover::after,
.product-template-default .product-details-list > div:hover::after {
  width: 82px !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  font-weight: 800 !important;
  transition: transform 220ms ease, color 220ms ease !important;
}

.single-product .product-details-list > div:hover dd,
.product-template-default .product-details-list > div:hover dd {
  color: #005b31 !important;
  transform: translateX(4px) !important;
}

.single-product .product-details-list > div:last-child,
.product-template-default .product-details-list > div:last-child {
  min-height: 78px !important;
  border-bottom-color: rgba(162, 57, 60, 0.32) !important;
  background: linear-gradient(90deg, rgba(248, 246, 240, 0.76), rgba(255, 255, 255, 0)) !important;
}

.single-product .product-gallery-arrow-next::before,
.product-template-default .product-gallery-arrow-next::before {
  position: absolute !important;
  inset: -7px !important;
  border: 1px solid rgba(162, 57, 60, 0.26) !important;
  border-radius: 50% !important;
  content: "" !important;
  animation: cariama-gallery-guide-ring 2.2s ease-out infinite !important;
}

.single-product .product-gallery-arrow-next::after,
.product-template-default .product-gallery-arrow-next::after {
  position: absolute !important;
  right: -1px !important;
  bottom: calc(100% + 13px) !important;
  color: #a2393c !important;
  content: "Próxima foto" !important;
  font-family: var(--strong-font) !important;
  font-size: 8px !important;
  font-weight: 900 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.single-product .product-gallery-status,
.product-template-default .product-gallery-status {
  position: absolute !important;
  z-index: 11 !important;
  top: calc(39% + 36px) !important;
  right: 18px !important;
  color: #6b7c72 !important;
  font-family: var(--strong-font) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
}

@keyframes cariama-gallery-guide-ring {
  0% { opacity: 0.75; transform: scale(0.86); }
  75%, 100% { opacity: 0; transform: scale(1.3); }
}

@media (max-width: 760px) {
  .single-product .product-details-list,
  .product-template-default .product-details-list {
    --cariama-fact-label-width: 100px;
  }

  .single-product .product-details-list::before,
  .product-template-default .product-details-list::before {
    left: calc(5px + var(--cariama-fact-label-width) + 6px) !important;
  }

  .single-product .product-details-list > div::before,
  .product-template-default .product-details-list > div::before {
    left: calc(5px + var(--cariama-fact-label-width) + 2px) !important;
  }

  .single-product .product-gallery-arrow-next::after,
  .product-template-default .product-gallery-arrow-next::after {
    display: none !important;
  }

  .single-product .product-gallery-status,
  .product-template-default .product-gallery-status {
    top: calc(35% + 32px) !important;
    right: 8px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-product .product-gallery-arrow-next::before,
  .product-template-default .product-gallery-arrow-next::before {
    animation: none !important;
  }
}

/* End premium connected facts and gallery guidance - v1.1.150 */

/* Plain single product option message - v1.1.151 */
.single-product .product-option-warning,
.product-template-default .product-option-warning {
  grid-area: warn !important;
  grid-column: 1 / -1 !important;
  display: none !important;
  width: 100% !important;
  margin: 0 0 7px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #a2393c !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.035em !important;
  line-height: 1.35 !important;
  text-align: left !important;
  text-transform: none !important;
}

.single-product .product-option-warning.is-visible,
.product-template-default .product-option-warning.is-visible {
  display: block !important;
}

/* End plain single product option message - v1.1.151 */

/* Clear product information beside image - v1.1.153 */
@media (min-width: 981px) {
  .single-product .product-detail-page::after,
  .product-template-default .product-detail-page::after {
    top: 9% !important;
    left: 50% !important;
    display: block !important;
    width: 1px !important;
    height: 82% !important;
    background: linear-gradient(180deg, transparent, rgba(7, 60, 41, 0.14) 12%, rgba(7, 60, 41, 0.14) 88%, transparent) !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    transform: translateX(-50%) !important;
  }

  .single-product .product-detail-page::before,
  .product-template-default .product-detail-page::before {
    display: none !important;
    content: none !important;
  }
}

.single-product .product-editor-description,
.product-template-default .product-editor-description {
  margin-bottom: 18px !important;
  padding: 0 !important;
}

.single-product .product-editor-description > .product-details-heading,
.product-template-default .product-editor-description > .product-details-heading {
  display: block !important;
  margin: 0 0 16px !important;
  border: 0 !important;
  padding: 0 !important;
  color: #303a34 !important;
  font-family: var(--main-font) !important;
  font-size: 17px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
}

.single-product .product-editor-description > .product-details-heading::after,
.product-template-default .product-editor-description > .product-details-heading::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.single-product .product-details-list::before,
.single-product .product-details-list::after,
.product-template-default .product-details-list::before,
.product-template-default .product-details-list::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div,
.single-product .product-details-list > div:last-child,
.product-template-default .product-details-list > div:last-child {
  position: relative !important;
  display: grid !important;
  min-height: 0 !important;
  grid-template-columns: 128px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 14px !important;
  border: 0 !important;
  padding: 6px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  transform: none !important;
  transition: none !important;
}

.single-product .product-details-list > div:hover,
.product-template-default .product-details-list > div:hover,
.single-product .product-details-list > div:last-child:hover,
.product-template-default .product-details-list > div:last-child:hover {
  border: 0 !important;
  padding: 6px 0 !important;
  background: transparent !important;
  transform: none !important;
}

.single-product .product-details-list > div::before,
.single-product .product-details-list > div::after,
.single-product .product-details-list > div:nth-child(odd)::after,
.product-template-default .product-details-list > div::before,
.product-template-default .product-details-list > div::after,
.product-template-default .product-details-list > div:nth-child(odd)::after {
  display: none !important;
  content: none !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  margin: 0 !important;
  color: #657069 !important;
  font-family: var(--main-font) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  text-transform: none !important;
}

.single-product .product-details-list dt::after,
.product-template-default .product-details-list dt::after {
  content: ":" !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  max-width: none !important;
  margin: 0 !important;
  color: #303a34 !important;
  font-family: var(--main-font) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  transform: none !important;
}

.single-product .product-details-list > div:hover dd,
.product-template-default .product-details-list > div:hover dd {
  color: #303a34 !important;
  transform: none !important;
}

.single-product .product-detail-sensory-list,
.product-template-default .product-detail-sensory-list {
  display: grid !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.single-product .product-detail-sensory-list li,
.product-template-default .product-detail-sensory-list li {
  position: relative !important;
  padding-left: 13px !important;
  color: #46524b !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.single-product .product-detail-sensory-list li::before,
.product-template-default .product-detail-sensory-list li::before {
  position: absolute !important;
  top: 0.67em !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: #a2393c !important;
  content: "" !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    grid-template-columns: 105px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .single-product .product-details-list dt,
  .single-product .product-details-list dd,
  .single-product .product-detail-sensory-list li,
  .product-template-default .product-details-list dt,
  .product-template-default .product-details-list dd,
  .product-template-default .product-detail-sensory-list li {
    font-size: 13px !important;
  }
}

/* End clear product information beside image - v1.1.153 */

/* Larger Cariama product info and repaired selector - v1.1.155 */
.single-product .product-detail-page-copy,
.product-template-default .product-detail-page-copy,
.single-product .product-buy-panel,
.product-template-default .product-buy-panel {
  width: 100% !important;
  max-width: 620px !important;
}

.single-product .product-editor-description > .product-details-heading,
.product-template-default .product-editor-description > .product-details-heading {
  margin-bottom: 19px !important;
  color: #073c29 !important;
  font-family: var(--strong-font) !important;
  font-size: clamp(21px, 1.7vw, 27px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div,
.single-product .product-details-list > div:last-child,
.product-template-default .product-details-list > div:last-child {
  grid-template-columns: 145px minmax(0, 1fr) !important;
  gap: 17px !important;
  padding: 8px 0 !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  color: #a2393c !important;
  font-family: var(--strong-font) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.11em !important;
  line-height: 1.45 !important;
  text-transform: uppercase !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  color: #073c29 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.42 !important;
}

.single-product .product-detail-sensory-list,
.product-template-default .product-detail-sensory-list {
  gap: 7px !important;
}

.single-product .product-detail-sensory-list li,
.product-template-default .product-detail-sensory-list li {
  color: #40584b !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.single-product .product-detail-sensory-list li::before,
.product-template-default .product-detail-sensory-list li::before {
  width: 5px !important;
  height: 5px !important;
  background: #e0a93f !important;
  box-shadow: 0 0 0 2px rgba(224, 169, 63, 0.1) !important;
}

.single-product .product-buy-actions,
.product-template-default .product-buy-actions {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-areas:
    "warn"
    "variation"
    "grind"
    "commerce" !important;
  gap: 14px !important;
}

.single-product .product-option-warning,
.product-template-default .product-option-warning {
  grid-area: warn !important;
  width: 100% !important;
  margin: 0 !important;
  color: #a2393c !important;
  font-family: var(--main-font) !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  white-space: normal !important;
}

.single-product .product-variation-options,
.product-template-default .product-variation-options {
  grid-area: variation !important;
  display: grid !important;
  width: 100% !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  border: 0 !important;
  padding: 0 !important;
}

.single-product .product-variation-options label,
.product-template-default .product-variation-options label,
.single-product .product-grind-select,
.product-template-default .product-grind-select {
  display: grid !important;
  width: 100% !important;
  min-width: 0 !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 0 !important;
}

.single-product .product-grind-select,
.product-template-default .product-grind-select {
  grid-area: grind !important;
}

.single-product .product-variation-options label > span,
.product-template-default .product-variation-options label > span,
.single-product .product-grind-select > span,
.product-template-default .product-grind-select > span {
  color: #073c29 !important;
  font-family: var(--strong-font) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

.single-product .product-variation-options select,
.product-template-default .product-variation-options select,
.single-product .product-grind-select select,
.product-template-default .product-grind-select select {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 52px !important;
  border: 2px solid #073c29 !important;
  border-radius: 8px !important;
  padding: 0 46px 0 15px !important;
  background-color: #fffdf7 !important;
  color: #073c29 !important;
  font-family: var(--main-font) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
}

.single-product .product-variation-options select:focus,
.product-template-default .product-variation-options select:focus,
.single-product .product-grind-select select:focus,
.product-template-default .product-grind-select select:focus {
  border-color: #a2393c !important;
  outline: 3px solid rgba(162, 57, 60, 0.1) !important;
  outline-offset: 2px !important;
}

.single-product .product-commerce-row,
.product-template-default .product-commerce-row {
  grid-area: commerce !important;
  width: 100% !important;
  margin-top: 3px !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .single-product .product-details-list dd,
  .product-template-default .product-details-list dd {
    font-size: 14px !important;
  }
}

/* End larger Cariama product info and repaired selector - v1.1.155 */

/* One gallery arrow and universal larger product info - v1.1.156 */
.single-product .product-gallery-arrow-previous,
.product-template-default .product-gallery-arrow-previous,
.single-product .product-gallery-status,
.product-template-default .product-gallery-status {
  display: none !important;
}

.single-product .product-gallery-arrow-next::after,
.product-template-default .product-gallery-arrow-next::after {
  display: none !important;
  content: none !important;
}

.single-product .product-gallery-arrow-next,
.product-template-default .product-gallery-arrow-next {
  right: 14px !important;
}

.single-product .product-editor-description > .product-details-heading,
.product-template-default .product-editor-description > .product-details-heading {
  font-size: clamp(26px, 2vw, 32px) !important;
  line-height: 1.08 !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div,
.single-product .product-details-list > div:last-child,
.product-template-default .product-details-list > div:last-child {
  grid-template-columns: 155px minmax(0, 1fr) !important;
  gap: 19px !important;
  padding: 9px 0 !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  font-size: 11px !important;
  line-height: 1.5 !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  font-size: 18px !important;
  line-height: 1.4 !important;
}

.single-product .product-detail-sensory-list li,
.product-template-default .product-detail-sensory-list li {
  font-size: 17px !important;
  line-height: 1.42 !important;
}

@media (max-width: 760px) {
  .single-product .product-details-list > div,
  .product-template-default .product-details-list > div {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .single-product .product-details-list dt,
  .product-template-default .product-details-list dt {
    font-size: 10px !important;
  }

  .single-product .product-details-list dd,
  .single-product .product-detail-sensory-list li,
  .product-template-default .product-details-list dd,
  .product-template-default .product-detail-sensory-list li {
    font-size: 15px !important;
  }
}

/* End one gallery arrow and universal larger product info - v1.1.156 */

/* Restore previous gallery arrow - v1.1.157 */
.single-product .product-gallery-arrow-previous,
.product-template-default .product-gallery-arrow-previous {
  left: 14px !important;
  display: grid !important;
}

/* End restore previous gallery arrow - v1.1.157 */

/* Correct product information alignment - v1.1.158 */
.single-product .product-editor-description,
.product-template-default .product-editor-description {
  --cariama-info-label-width: 155px;
  --cariama-info-column-gap: 19px;
  width: 100% !important;
  text-align: left !important;
}

.single-product .product-editor-description > .product-details-heading,
.product-template-default .product-editor-description > .product-details-heading {
  width: auto !important;
  margin-right: 0 !important;
  margin-left: calc(var(--cariama-info-label-width) + var(--cariama-info-column-gap)) !important;
  text-align: left !important;
}

.single-product .product-details-list,
.product-template-default .product-details-list {
  width: 100% !important;
}

.single-product .product-details-list > div,
.product-template-default .product-details-list > div,
.single-product .product-details-list > div:last-child,
.product-template-default .product-details-list > div:last-child {
  width: 100% !important;
  grid-template-columns: var(--cariama-info-label-width) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: var(--cariama-info-column-gap) !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  width: 100% !important;
  text-align: right !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd,
.single-product .product-detail-sensory-list,
.product-template-default .product-detail-sensory-list {
  width: 100% !important;
  min-width: 0 !important;
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 760px) {
  .single-product .product-editor-description,
  .product-template-default .product-editor-description {
    --cariama-info-label-width: 112px;
    --cariama-info-column-gap: 12px;
  }

  .single-product .product-editor-description > .product-details-heading,
  .product-template-default .product-editor-description > .product-details-heading {
    margin-left: 0 !important;
  }

  .single-product .product-details-list dt,
  .product-template-default .product-details-list dt {
    text-align: left !important;
  }
}

/* End correct product information alignment - v1.1.158 */

/* Larger universal coffee information - v1.1.159 */
.single-product .product-editor-description > .product-details-heading,
.product-template-default .product-editor-description > .product-details-heading {
  font-size: clamp(29px, 2.25vw, 35px) !important;
}

.single-product .product-details-list dt,
.product-template-default .product-details-list dt {
  font-size: 12px !important;
}

.single-product .product-details-list dd,
.product-template-default .product-details-list dd {
  font-size: 20px !important;
}

.single-product .product-detail-sensory-list li,
.product-template-default .product-detail-sensory-list li {
  font-size: 18px !important;
}

@media (max-width: 760px) {
  .single-product .product-editor-description > .product-details-heading,
  .product-template-default .product-editor-description > .product-details-heading {
    font-size: 25px !important;
  }

  .single-product .product-details-list dt,
  .product-template-default .product-details-list dt {
    font-size: 11px !important;
  }

  .single-product .product-details-list dd,
  .single-product .product-detail-sensory-list li,
  .product-template-default .product-details-list dd,
  .product-template-default .product-detail-sensory-list li {
    font-size: 16px !important;
  }
}

/* End larger universal coffee information - v1.1.159 */

/* End Interactive product rail — v1.1.109 */

/* Cafeteria construction carousel on the Visitação page. */
.cariama-language-switcher {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-left: 18px;
  border-left: 1px solid rgba(243, 215, 167, 0.42);
  padding-left: 22px;
}

.cariama-language-option {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(243, 215, 167, 0.42);
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.08);
  line-height: 0;
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.cariama-language-option img {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  filter: none !important;
}

.cariama-language-option:hover,
.cariama-language-option.is-active {
  border-color: #f47b50;
  background: rgba(255, 248, 234, 0.16);
  transform: translateY(-2px);
}

.cariama-language-option.is-active::after {
  position: absolute;
  right: 7px;
  bottom: -7px;
  left: 7px;
  height: 2px;
  background: #f47b50;
  content: "";
}

@media (max-width: 980px) {
  .home-header .home-header-actions .cariama-language-switcher {
    margin-left: 4px;
    padding-left: 12px;
  }

  .cariama-language-option {
    width: 32px;
    height: 32px;
  }

  .cariama-language-option img {
    width: 24px;
    height: 24px;
  }
}

.visitacao-cafeteria-progress {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
  padding: clamp(80px, 9vw, 148px) clamp(24px, 7vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(243, 215, 167, 0.1), transparent 27%),
    #064f35;
  color: #fff8ea;
}

.visitacao-cafeteria-progress-copy > span {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #f3d7a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visitacao-cafeteria-progress-copy > span::before {
  width: 38px;
  height: 2px;
  background: #f47b50;
  content: "";
}

.visitacao-cafeteria-progress-copy h2 {
  max-width: 700px;
  margin: 26px 0 24px;
  color: #fff8ea;
  font-family: var(--strong-font);
  font-size: clamp(50px, 5.5vw, 94px);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.visitacao-cafeteria-progress-copy p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 248, 234, 0.84);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
}

.visitacao-cafeteria-progress-copy > strong {
  display: block;
  margin-top: 22px;
  color: #f3d7a7;
  font-size: 13px;
}

.visitacao-cafeteria-progress-copy > a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  border-bottom: 1px solid #f47b50;
  padding-bottom: 7px;
  color: #fff8ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.visitacao-cafeteria-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 215, 167, 0.38);
  background: #033e2a;
  box-shadow: 18px 18px 0 rgba(243, 215, 167, 0.08);
}

.visitacao-cafeteria-track {
  display: flex;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.visitacao-cafeteria-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.visitacao-cafeteria-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 7s ease;
}

.visitacao-cafeteria-slide.is-active img {
  transform: scale(1.035);
}

.visitacao-cafeteria-slide::after {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(1, 33, 21, 0.88));
  pointer-events: none;
  content: "";
}

.visitacao-cafeteria-slide figcaption {
  position: absolute;
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(22px, 4vw, 52px);
  z-index: 2;
  color: #fff8ea;
}

.visitacao-cafeteria-slide figcaption span,
.visitacao-cafeteria-slide figcaption strong {
  display: block;
}

.visitacao-cafeteria-slide figcaption span {
  margin-bottom: 8px;
  color: #f3d7a7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visitacao-cafeteria-slide figcaption strong {
  max-width: 620px;
  font-family: var(--strong-font);
  font-size: clamp(25px, 3vw, 46px);
  line-height: 0.98;
  text-transform: uppercase;
}

.visitacao-cafeteria-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 248, 234, 0.7);
  border-radius: 50%;
  background: rgba(3, 62, 42, 0.8);
  color: #fff8ea;
  cursor: pointer;
  font: 34px/1 Georgia, serif;
  transform: translateY(-50%);
}

.visitacao-cafeteria-arrow.is-prev { left: 18px; }
.visitacao-cafeteria-arrow.is-next { right: 18px; }

.visitacao-cafeteria-dots {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.visitacao-cafeteria-dots button {
  width: 28px;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(255, 248, 234, 0.42);
  cursor: pointer;
}

.visitacao-cafeteria-dots button.is-active { background: #f47b50; }

@media (max-width: 1000px) {
  .visitacao-cafeteria-progress {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .visitacao-cafeteria-progress {
    gap: 38px;
    padding: 70px 18px;
  }

  .visitacao-cafeteria-progress-copy h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

.visitacao-cafeteria-slide img { aspect-ratio: 4 / 5; }
  .visitacao-cafeteria-arrow { width: 42px; height: 42px; }
  .visitacao-cafeteria-arrow.is-prev { left: 10px; }
  .visitacao-cafeteria-arrow.is-next { right: 10px; }
}

/* Header parity: preserve the Cariama gold icons on every page variant. */
.site-header .header-icon-link > img,
.home-header.site-header .header-icon-link > img,
.cariama-identity-header.site-header .header-icon-link > img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(26%) saturate(512%) hue-rotate(349deg) brightness(103%) contrast(94%) !important;
}

.site-header .header-icon-link:hover > img,
.home-header.site-header .header-icon-link:hover > img,
.cariama-identity-header.site-header .header-icon-link:hover > img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(86%) saturate(1643%) hue-rotate(325deg) brightness(101%) contrast(91%) !important;
}

/* Cart typography and layout parity for PT-BR and EN-US - v1.1.273 */
body.woocommerce-cart,
body.woocommerce-cart .woocommerce,
body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td,
body.woocommerce-cart .product-name,
body.woocommerce-cart .product-name a,
body.woocommerce-cart .product-name .variation,
body.woocommerce-cart .product-name .variation *,
body.woocommerce-cart .cart_totals,
body.woocommerce-cart .cart_totals table,
body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td,
body.woocommerce-cart ul#shipping_method,
body.woocommerce-cart ul#shipping_method li,
body.woocommerce-cart .shipping-calculator-button,
body.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-cart .cross-sells ul.products li.product .price {
  font-family: "DIN Pro", Arial, sans-serif !important;
  font-style: normal !important;
  letter-spacing: normal !important;
}

body.woocommerce-cart .product-name,
body.woocommerce-cart .product-name a,
body.woocommerce-cart .product-name .variation,
body.woocommerce-cart .product-name .variation *,
body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td,
body.woocommerce-cart ul#shipping_method li,
body.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: none !important;
  line-height: 1.38 !important;
}

body.woocommerce-cart .cart_totals h2,
body.woocommerce-cart .cross-sells h2,
body.woocommerce-cart .actions .button,
body.woocommerce-cart .coupon .button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .cross-sells ul.products li.product .button {
  font-family: "DIN Pro Condensed", "DIN Pro", Arial, sans-serif !important;
}

body.woocommerce-cart .cart-collaterals {
  grid-template-areas:
    "totals"
    "recommendations" !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 22px !important;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
  grid-area: totals !important;
  grid-column: 1 !important;
  min-width: 0 !important;
}

body.woocommerce-cart .cart-collaterals .cross-sells {
  grid-area: recommendations !important;
  min-width: 0 !important;
}

body.woocommerce-cart .cart_totals table.shop_table th {
  width: 34% !important;
}

body.woocommerce-cart .cart_totals table.shop_table td {
  width: 66% !important;
}

body.woocommerce-cart .cross-sells ul.products li.product {
  grid-template-columns: 92px minmax(0, 1fr) !important;
}

body.woocommerce-cart .cross-sells ul.products li.product img {
  width: 92px !important;
  height: 92px !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 700 !important;
}

body.woocommerce-cart .cross-sells ul.products li.product .button {
  white-space: normal !important;
  text-align: center !important;
}

@media (max-width: 1040px) {
  body.woocommerce-cart .cart-collaterals {
    width: 100% !important;
  }
}

@media (max-width: 520px) {
  body.woocommerce-cart .cross-sells ul.products li.product {
    grid-template-columns: 72px minmax(0, 1fr) !important;
  }

  body.woocommerce-cart .cross-sells ul.products li.product img {
    width: 72px !important;
    height: 72px !important;
  }
}
