:root {
  --tiffany: #078282;
  --tiffany-2: #0aa6a0;
  --tiffany-light: #d9f3f1;
  --tiffany-pale: #eefcfb;
  --ink: #052b2d;
  --ink-soft: #15484a;
  --muted: #6b7d7f;
  --sand: #fff8ed;
  --paper: #fffdf8;
  --white: #fff;
  --gold: #c7a45b;
  --rose: #fde8dc;
  --line: rgba(7, 31, 33, .12);
  --line-soft: rgba(7, 31, 33, .07);
  --shadow: 0 24px 58px rgba(7, 31, 33, .11);
  --shadow-soft: 0 12px 30px rgba(7, 31, 33, .075);
  --ease: cubic-bezier(.19, 1, .22, 1);
  --container: min(1320px, calc(100% - 44px));
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.public-site {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fffdf8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }

.public-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(7, 130, 130, .18), transparent 34%),
    linear-gradient(140deg, #fafffd 0%, #fffaf2 54%, #ffffff 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .42s ease, visibility .42s ease;
  animation: divasLoaderFailsafe 3.6s ease forwards;
}
.public-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.public-page-loader-card {
  width: 132px;
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow: 0 22px 54px rgba(7, 31, 33, .13);
  backdrop-filter: blur(14px) saturate(125%);
}
.public-page-loader-symbol {
  width: 76px;
  height: 76px;
  object-fit: contain;
  animation: divasLoaderSpin 1.15s var(--ease) infinite;
  filter: drop-shadow(0 8px 14px rgba(199, 164, 91, .24));
}
.public-page-loader-text {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tiffany);
}

@keyframes divasLoaderFailsafe {
  0%, 82% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes divasLoaderSpin {
  0% { transform: rotateY(0deg) scale(.96); }
  50% { transform: rotateY(180deg) scale(1.04); }
  100% { transform: rotateY(360deg) scale(.96); }
}
@media (prefers-reduced-motion: reduce) {
  .public-page-loader-symbol { animation: none; }
}
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
main { width: var(--container); margin: 0 auto; }

.site-aura {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 4%, rgba(7, 130, 130, .23), transparent 25%),
    radial-gradient(circle at 88% 6%, rgba(199, 164, 91, .12), transparent 28%),
    linear-gradient(140deg, #fafffd 0%, #fffaf2 52%, #ffffff 100%);
}
.site-aura span {
  position: absolute;
  border-radius: 999px;
  opacity: .18;
  filter: none;
  animation: none;
}
.site-aura span:nth-child(1) { width: 360px; height: 360px; left: -120px; top: 22%; background: var(--tiffany); }
.site-aura span:nth-child(2) { width: 260px; height: 260px; right: -90px; top: 30%; background: #ffd98c; animation-delay: -7s; }
.site-aura span:nth-child(3) { width: 420px; height: 420px; left: 38%; bottom: -190px; background: rgba(7, 130, 130, .62); animation-delay: -12s; }
@keyframes auraFloat { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(34px,-42px,0) scale(1.08); } }

.top-ribbon {
  min-height: 32px;
  padding: 7px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 6vw, 86px);
  color: rgba(255, 255, 255, .82);
  background: #052b2d;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  width: var(--container);
  margin: 14px auto 0;
  min-height: 76px;
  padding: 10px 12px 10px 21px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(14px) saturate(125%);
  box-shadow: 0 12px 34px rgba(7, 31, 33, .08);
  transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .94); box-shadow: 0 14px 38px rgba(7, 31, 33, .10); }
.site-brand { width: 164px; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.site-brand img { width: 154px; max-height: 58px; object-fit: contain; flex: 0 0 auto; }
.site-brand-with-customer { width: clamp(228px, 18vw, 292px); }
.site-customer-welcome {
  min-width: 0;
  padding-left: 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid rgba(7, 130, 130, .20);
  color: #073638;
  line-height: 1.05;
}
.site-customer-welcome small {
  color: var(--tiffany);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-customer-welcome strong {
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #073638;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: 5px; }
.site-nav a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  color: #163538;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform .28s var(--ease), background .28s ease, color .28s ease;
}
.site-nav a:hover { transform: translateY(-2px); background: rgba(7, 130, 130, .20); color: #062b2e; }
.site-nav .site-nav-whatsapp { padding-inline: 18px; color: #fff; background: #052b2d; box-shadow: 0 14px 28px rgba(7,31,33,.16); }

.site-header-actions { display: inline-flex; align-items: center; justify-content: flex-end; gap: 8px; }
.erp-login-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(8, 40, 42, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #08282a;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(7,31,33,.08);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.erp-login-button svg { width: 22px; height: 22px; display: block; }
.erp-login-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.erp-login-button:hover { transform: translateY(-2px); background: rgba(7, 130, 130, .20); box-shadow: 0 16px 30px rgba(7,31,33,.12); }

.site-menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.82); padding: 11px; cursor: pointer; }
.site-menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 99px; background: var(--ink); transition: transform .24s ease, opacity .24s ease; }
.site-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.site-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #078282;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(199,164,91,.14); }

.home-hero {
  min-height: 560px;
  padding: clamp(34px, 5vw, 72px) 0 clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
}
.hero-copy h1,
.catalog-hero h1,
.product-detail-info h1,
.story-hero h1,
.not-found-public h1 {
  margin: 18px 0;
  max-width: 980px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.15vw, 76px);
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.hero-copy p,
.catalog-hero p,
.story-hero p,
.not-found-public p,
.product-lead {
  margin: 0;
  max-width: 690px;
  color: #51676a;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.58;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn-public {
  min-height: 46px;
  padding: 12px 21px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  transition: transform .28s var(--ease), box-shadow .28s ease, background .28s ease, color .28s ease;
  white-space: nowrap;
}
.btn-primary { background: #052b2d; color: #fff; box-shadow: 0 20px 50px rgba(7, 31, 33, .22); }
.btn-soft { background: rgba(255,255,255,.68); color: var(--ink); border-color: var(--line); backdrop-filter: blur(18px); }
.btn-public:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(7,31,33,.18); }

.hero-gallery {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}
.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 9% 7% 12% 4%;
  border-radius: 44% 56% 60% 40% / 48% 46% 54% 52%;
  background: linear-gradient(145deg, rgba(7,130,130,.36), rgba(255,255,255,.42), rgba(199,164,91,.20));
  filter: blur(.2px);
  animation: morphShape 12s var(--ease) infinite alternate;
  z-index: -1;
}
@keyframes morphShape { to { border-radius: 58% 42% 48% 52% / 44% 58% 42% 56%; transform: translate3d(10px,-8px,0) rotate(2deg); } }
.hero-tile {
  position: absolute;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 30px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease;
  backdrop-filter: blur(10px);
}
.hero-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1.18; }
.hero-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6,27,29,.72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.hero-tile-1 { width: 40%; left: 3%; top: 2%; }
.hero-tile-2 { width: 34%; right: 6%; top: 11%; }
.hero-tile-3 { width: 32%; left: 18%; bottom: 6%; }
.hero-tile-4 { width: 27%; right: 17%; bottom: 4%; }
.hero-placeholder { min-height: 260px; display: grid; place-items: center; background: linear-gradient(145deg, #f8fffd, #e9faf8 55%, #fff4dc); }
.hero-placeholder span { position: static; width: auto; color: var(--ink); background: rgba(255,255,255,.78); }
.hero-signature { display: none !important;
  position: absolute;
  left: 46%;
  top: 47%;
  width: 182px;
  padding: 16px;
  border-radius: 28px;
  color: #fff;
  background: #052b2d;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.hero-signature small { display: block; color: var(--tiffany); font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.hero-signature strong { display: block; margin-top: 6px; font-family: Georgia, "Times New Roman", serif; font-size: 21px; line-height: 1.08; font-weight: 500; }

.brand-benefits {
  margin: 8px 0 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.brand-benefits div,
.section-block,
.catalog-page,
.product-detail-shell,
.product-description-section,
.story-preview,
.story-layout,
.mission-grid,
.values-section,
.story-cta,
.not-found-public {
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px) saturate(115%);
}
.brand-benefits div { padding: 22px; border-radius: 26px; }
.brand-benefits strong { display: block; font-size: 15px; }
.brand-benefits span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

.section-block,
.catalog-page,
.product-description-section,
.story-preview,
.values-section,
.story-cta,
.not-found-public {
  margin: 26px 0;
  padding: clamp(20px, 2.7vw, 36px);
  border-radius: var(--radius-xl);
}
.section-head {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.section-head h2,
.promo-copy h2,
.story-preview h2,
.product-description-section h2,
.values-section h2,
.story-cta h2,
.mission-grid span {
  margin: 9px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 500;
  text-wrap: balance;
}
.section-head a { color: #078282; font-size: 13px; font-weight: 950; text-decoration: none; }
.section-head a:hover { text-decoration: underline; }

.category-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.category-chip {
  min-height: 48px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(7,31,33,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(7,31,33,.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.category-chip:hover,
.category-chip.is-active { transform: translateY(-2px); border-color: rgba(7,130,130,.28); background: rgba(241,255,253,.95); box-shadow: 0 12px 28px rgba(7,31,33,.08); }
.category-chip span { font-size: 14px; font-weight: 900; letter-spacing: -.015em; }
.category-chip small { padding: 5px 8px; border-radius: 999px; background: rgba(7,130,130,.18); color: #477072; font-size: 10px; font-weight: 900; white-space: nowrap; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.product-card-public { position: relative; min-width: 0; }
.product-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  background: #f8f3ea;
  box-shadow: 0 18px 44px rgba(7,31,33,.10);
  transform: translateZ(0);
}
.product-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,33,.26), transparent 46%);
  opacity: 0;
  transition: opacity .35s ease;
}
.product-card-image img { width: 100%; aspect-ratio: 4 / 5.35; object-fit: cover; transition: transform .42s ease; }
.product-card-public:hover .product-card-image img { transform: scale(1.035); }
.product-card-public:hover .product-card-image::after { opacity: 1; }
.quick-view-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6,27,29,.78);
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 12px;
  font-weight: 950;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .30s ease, transform .30s var(--ease);
}
.product-card-public:hover .quick-view-label { opacity: 1; transform: translateY(0); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 999px;
  color: #061b1d;
  background: rgba(255,255,255,.86);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.product-card-info { padding: 14px 2px 0; }
.product-category {
  display: inline-flex;
  margin-bottom: 6px;
  color: #078282;
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.product-title {
  display: block;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.32;
  font-weight: 850;
  letter-spacing: -.02em;
}
.product-title:hover { color: #078282; }
.product-card-bottom { margin-top: 11px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card-bottom strong { color: var(--ink); font-size: 18px; letter-spacing: -.035em; }
.product-card-bottom a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: #052b2d;
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .24s var(--ease), box-shadow .24s ease;
}
.product-card-bottom a:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7,31,33,.18); }

.public-empty { padding: 34px; border-radius: 30px; background: rgba(255,255,255,.72); border: 1px dashed rgba(7,130,130,.22); text-align: center; }
.public-empty strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; letter-spacing: -.03em; }
.public-empty span { display: block; margin: 8px auto 0; max-width: 520px; color: var(--muted); line-height: 1.55; }
.public-empty .btn-public { margin-top: 18px; }

.promo-runway {
  margin: 32px 0;
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: .86fr 1.15fr;
  gap: clamp(20px, 4vw, 52px);
  border-radius: var(--radius-xl);
  background: #052b2d;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.promo-copy p { color: rgba(255,255,255,.70); line-height: 1.65; }
.promo-copy h2 { color: #fff; }
.promo-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.promo-stack a { padding: 10px; border-radius: 26px; background: rgba(255,255,255,.08); text-decoration: none; transition: transform .28s var(--ease), background .28s ease; }
.promo-stack a:hover { transform: translateY(-5px); background: rgba(255,255,255,.13); }
.promo-stack img { width: 100%; aspect-ratio: 1 / 1.2; object-fit: cover; border-radius: 20px; }
.promo-stack span { display: block; margin-top: 10px; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.35; }
.promo-stack strong { display: block; margin-top: 5px; color: #fff; font-size: 15px; }

.story-preview { display: grid; grid-template-columns: .72fr 1fr auto; align-items: center; gap: 24px; }
.story-preview p { margin: 0; color: #51676a; line-height: 1.64; }

.catalog-hero,
.story-hero {
  margin: clamp(36px, 6vw, 72px) 0 26px;
  padding: clamp(28px, 5vw, 62px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(255,255,255,.66), rgba(245,255,253,.62)),
    radial-gradient(circle at 84% 20%, rgba(7,130,130,.36), transparent 32%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
}
.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 230px) auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 20px;
}
.catalog-toolbar label { display: grid; gap: 6px; }
.catalog-toolbar span { color: var(--muted); font-size: 10px; font-weight: 950; letter-spacing: .10em; text-transform: uppercase; }
.catalog-toolbar input,
.catalog-toolbar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255,255,255,.84);
  outline: none;
  color: var(--ink);
}
.catalog-toolbar input:focus,
.catalog-toolbar select:focus { border-color: rgba(7,130,130,.44); box-shadow: 0 0 0 4px rgba(7,130,130,.18); }
.catalog-toolbar button,
.catalog-toolbar > a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}
.catalog-toolbar button { background: #052b2d; color: #fff; }
.catalog-toolbar > a { background: rgba(255,255,255,.7); color: var(--ink); border: 1px solid var(--line); }
.catalog-result-head { margin: 20px 0; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 13px; }
.catalog-result-head strong { color: var(--ink); font-size: 15px; }
.pagination-public { margin-top: 28px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.pagination-public a { min-width: 42px; min-height: 42px; padding: 0 14px; display: inline-flex; justify-content: center; align-items: center; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid var(--line); text-decoration: none; font-weight: 900; font-size: 13px; }
.pagination-public a.is-active { background: #052b2d; color: #fff; border-color: #078282; }

.product-detail-shell {
  margin: clamp(36px, 6vw, 72px) 0 32px;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  border-radius: var(--radius-xl);
}
.product-detail-image { position: relative; overflow: hidden; border-radius: 34px; background: #f4eee2; box-shadow: 0 24px 60px rgba(7,31,33,.12); }
.product-detail-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-detail-image span { position: absolute; top: 16px; left: 16px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.86); color: var(--ink); font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .07em; }
.breadcrumb-public { margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 850; }
.breadcrumb-public a { color: #078282; text-decoration: none; }
.product-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-detail-tags span { padding: 8px 10px; border-radius: 999px; background: rgba(7,130,130,.21); color: #063d3a; font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.product-detail-info h1 { font-size: clamp(34px, 4vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
.product-price-line { margin: 26px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-price-line strong { display: block; font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -.05em; }
.product-price-line span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 800; }
.product-actions-public { display: flex; flex-wrap: wrap; gap: 12px; }
.product-detail-meta { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.product-detail-meta div { padding: 14px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(255,255,255,.64); }
.product-detail-meta span { display: block; color: var(--muted); font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .09em; }
.product-detail-meta strong { display: block; margin-top: 5px; font-size: 13px; }
.product-description-section { display: grid; grid-template-columns: .55fr 1fr; gap: 28px; }
.product-description-text { color: #4e6365; font-size: 16px; line-height: 1.76; }
.not-found-public { min-height: 440px; display: grid; align-content: center; }

.story-layout { margin: 30px 0; padding: clamp(24px, 4vw, 48px); display: grid; grid-template-columns: 310px 1fr; gap: clamp(24px, 4vw, 54px); border-radius: var(--radius-xl); }
.story-aside { position: sticky; top: 120px; align-self: start; min-height: 280px; padding: 28px; border-radius: 30px; color: #fff; background: #052b2d; box-shadow: var(--shadow-soft); }
.story-aside span { color: var(--tiffany); font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .14em; }
.story-aside strong { display: block; margin: 4px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: 72px; line-height: .9; font-weight: 500; letter-spacing: -.06em; }
.story-aside p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.6; }
.story-content p { margin: 0 0 18px; color: #455d60; font-size: 17px; line-height: 1.82; }
.mission-grid { margin: 30px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }
.mission-grid div { padding: clamp(22px, 4vw, 38px); border-radius: var(--radius-xl); background: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.78); box-shadow: var(--shadow-soft); backdrop-filter: blur(22px); }
.mission-grid p { color: #4e6365; line-height: 1.68; }
.values-list { display: flex; flex-wrap: wrap; gap: 10px; }
.values-list span { padding: 12px 15px; border: 1px solid var(--line-soft); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--ink); font-size: 13px; font-weight: 850; }
.story-cta { text-align: center; }
.story-cta p { max-width: 600px; margin: 10px auto 0; color: var(--muted); line-height: 1.65; }
.story-cta .hero-actions { justify-content: center; }

.site-footer { width: var(--container); margin: 48px auto 24px; padding: 34px; border-radius: var(--radius-xl); background: #052b2d; color: rgba(255,255,255,.82); box-shadow: var(--shadow); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 28px; }
.footer-logo { width: 150px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer p { margin: 0; max-width: 360px; line-height: 1.62; color: rgba(255,255,255,.70); }
.site-footer h3 { margin: 0 0 14px; color: #fff; font-size: 12px; letter-spacing: .10em; text-transform: uppercase; }
.site-footer a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); text-decoration: none; font-weight: 760; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: rgba(255,255,255,.55); }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 55; min-height: 50px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: #052b2d; color: #fff; text-decoration: none; font-size: 13px; font-weight: 950; box-shadow: 0 18px 44px rgba(7,31,33,.26); transition: transform .24s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }

[data-reveal], [data-reveal-card] { opacity: 0; transform: translateY(16px); transition: opacity .46s ease, transform .46s ease; }
[data-reveal].is-visible, [data-reveal-card].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-card]:nth-child(2n),
[data-reveal-card]:nth-child(3n),
[data-reveal-card]:nth-child(4n) { transition-delay: 0s; }

@media (max-width: 1180px) {
  .top-ribbon span:nth-child(3) { display: none; }
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .site-header-actions { justify-self: end; }
  .erp-login-button { width: 46px; height: 46px; }
  .site-menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transition: opacity .24s ease, transform .24s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .site-nav a { display: flex; justify-content: center; text-align: center; background: rgba(246,255,253,.80); }
  .product-grid, .catalog-product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 40px; }
  .hero-gallery { min-height: 470px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 24px, 720px); }
  .top-ribbon { justify-content: flex-start; overflow: hidden; white-space: nowrap; gap: 30px; font-size: 9px; }
  .top-ribbon span:nth-child(2) { display: none; }
  .site-header { top: 10px; min-height: 62px; padding: 8px 9px 8px 14px; border-radius: 24px; gap: 10px; }
  .site-brand { width: 126px; }
  .site-brand img { width: 122px; max-height: 42px; }
  .erp-login-button, .site-menu-toggle { width: 44px; height: 44px; }
  .home-hero { padding-top: 44px; gap: 20px; }
  .hero-copy h1, .catalog-hero h1, .product-detail-info h1, .story-hero h1, .not-found-public h1 { font-size: clamp(34px, 11vw, 48px); line-height: 1.02; letter-spacing: -.045em; }
  .hero-copy p, .catalog-hero p, .story-hero p, .not-found-public p, .product-lead { font-size: 14.5px; line-height: 1.58; }
  .hero-gallery { min-height: 440px; }
  .hero-tile-1 { width: 58%; left: 0; top: 4%; }
  .hero-tile-2 { width: 45%; right: 0; top: 26%; }
  .hero-tile-3 { width: 45%; left: 20%; bottom: 2%; }
  .hero-tile-4 { display: none; }
  .hero-signature { display: none !important; left: 0; top: auto; bottom: 21%; width: 172px; padding: 14px; }
  .brand-benefits { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .product-grid, .catalog-product-grid, .product-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .promo-runway, .story-preview, .product-detail-shell, .product-description-section, .story-layout, .mission-grid { grid-template-columns: 1fr; }
  .promo-stack { grid-template-columns: repeat(3, minmax(138px, 1fr)); overflow-x: auto; }
  .catalog-toolbar { grid-template-columns: 1fr; position: sticky; top: 86px; z-index: 24; padding: 12px; margin: -8px -8px 18px; border-radius: 24px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.88); backdrop-filter: blur(20px); box-shadow: 0 14px 36px rgba(7,31,33,.08); }
  .catalog-toolbar button, .catalog-toolbar > a { width: 100%; }
  .product-detail-meta { grid-template-columns: 1fr; }
  .story-aside { position: relative; top: auto; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  :root { --container: calc(100% - 18px); }
  main { width: var(--container); }
  .site-nav { grid-template-columns: 1fr; }
  .hero-actions, .product-actions-public { display: grid; grid-template-columns: 1fr; }
  .btn-public { width: 100%; min-height: 50px; }
  .hero-gallery { min-height: 450px; }
  .hero-tile { border-radius: 26px; }
  .hero-tile span { display: none; }
  .hero-tile-1 { width: 64%; }
  .hero-tile-2 { width: 50%; top: 31%; }
  .hero-tile-3 { width: 50%; left: 20%; }
  .hero-signature { display: none !important; width: 152px; bottom: 20%; }
  .hero-signature strong { font-size: 20px; }
  .section-block, .catalog-hero, .catalog-page, .product-detail-shell, .product-description-section, .story-preview, .values-section, .story-cta, .not-found-public, .story-hero, .story-layout { padding: 18px; border-radius: 28px; margin: 22px 0; }
  .category-chip { min-height: 44px; padding: 9px 12px; }
  .category-chip span { font-size: 13px; }
  .product-grid, .catalog-product-grid, .product-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 10px; }
  .product-card-image { border-radius: 22px; }
  .product-card-info { padding-top: 10px; }
  .product-category { font-size: 9px; margin-bottom: 5px; }
  .product-title { min-height: 40px; font-size: 13px; line-height: 1.34; }
  .product-card-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .product-card-bottom strong { font-size: 16px; }
  .product-card-bottom a { width: 100%; display: inline-flex; justify-content: center; padding: 9px 8px; font-size: 10px; }
  .quick-view-label { display: none; }
  .product-badge { top: 8px; left: 8px; padding: 7px 8px; font-size: 9px; }
  .catalog-result-head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .product-detail-image { border-radius: 26px; }
  .mission-grid div { padding: 20px; border-radius: 28px; }
  .story-content p { font-size: 15.5px; line-height: 1.72; }
  .site-footer { width: var(--container); padding: 24px; border-radius: 28px; }
  .floating-whatsapp { right: 12px; bottom: 12px; min-height: 46px; padding: 0 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-reveal-card] { opacity: 1; transform: none; }
}


/* Public v5 - fluidez desktop e navegação de categorias mais simples */
.section-head-compact { align-items: center; }
.categories-editorial { overflow: visible; }
.catalog-categories { margin: 0 0 20px; }

@media (min-width: 861px) {
  body.public-site { background-attachment: scroll; }
  .site-aura span { display: none; }
  .section-block,
  .catalog-page,
  .product-description-section,
  .story-preview,
  .values-section,
  .story-cta,
  .not-found-public,
  .catalog-hero,
  .story-hero,
  .story-layout,
  .mission-grid div,
  .site-header {
    backdrop-filter: none;
  }
  .category-flow { max-width: 980px; }
  .categories-editorial .section-head { margin-bottom: 18px; }
  .categories-editorial .section-head h2 { max-width: 720px; }
  .category-chip { flex: 0 0 auto; }
}

@media (max-width: 860px) {
  .category-flow {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .category-chip { scroll-snap-align: start; flex: 0 0 auto; min-height: 46px; }
}

/* Public v6 - vitrine com menu lateral no desktop e filtros sem congelar */
.catalog-page-v6 {
  padding: clamp(18px, 3vw, 30px);
}
.catalog-layout-v6 {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
}
.catalog-sidebar-v6 {
  display: block;
}
.catalog-sidebar-card-v6 {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(7,31,33,.08);
  box-shadow: 0 10px 26px rgba(7,31,33,.055);
}
.catalog-sidebar-kicker-v6 {
  display: block;
  margin-bottom: 8px;
  color: #078282;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.catalog-sidebar-card-v6 h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.035em;
}
.catalog-sidebar-list-v6 {
  display: grid;
  gap: 8px;
}
.catalog-sidebar-link-v6 {
  min-height: 44px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.catalog-sidebar-link-v6:hover {
  transform: translateX(2px);
  background: rgba(7,130,130,.14);
}
.catalog-sidebar-link-v6.is-active {
  background: #052b2d;
  color: #fff;
  border-color: #078282;
}
.catalog-sidebar-link-v6 span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}
.catalog-sidebar-link-v6 small {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(7,130,130,.16);
  color: inherit;
  font-size: 10px;
  font-weight: 950;
  white-space: nowrap;
  opacity: .82;
}
.catalog-main-v6 { min-width: 0; }
.catalog-toolbar-v6 {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  margin: 0 0 16px !important;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none !important;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 190px) auto auto;
  gap: 10px;
}
.catalog-toolbar-v6 input,
.catalog-toolbar-v6 select {
  min-height: 44px;
  background: rgba(255,255,255,.76);
}
.catalog-toolbar-v6 button,
.catalog-toolbar-v6 > a {
  min-height: 44px;
  padding-inline: 17px;
}
.catalog-mobile-categories-v6 { display: none; }
.catalog-result-head-v6 {
  margin: 14px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(7,31,33,.07);
}

@media (min-width: 1181px) {
  .catalog-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .catalog-layout-v6 { grid-template-columns: 1fr; }
  .catalog-sidebar-v6 { display: none; }
  .catalog-mobile-categories-v6 { display: flex; margin: 4px 0 16px; }
  .catalog-toolbar-v6 { grid-template-columns: 1fr 1fr; padding: 0; }
  .catalog-search-v6 { grid-column: 1 / -1; }
  .catalog-toolbar-v6 button,
  .catalog-toolbar-v6 > a { width: 100%; }
}

@media (max-width: 560px) {
  .catalog-page-v6 { padding: 14px; }
  .catalog-toolbar-v6 { grid-template-columns: 1fr; }
  .catalog-toolbar-v6 input,
  .catalog-toolbar-v6 select,
  .catalog-toolbar-v6 button,
  .catalog-toolbar-v6 > a { min-height: 46px; }
  .catalog-mobile-categories-v6 { margin-left: -2px; margin-right: -2px; }
}

/* Produto público: versão compacta para desktop 1920x1080 */
@media (min-width: 1025px) {
  .product-detail-shell {
    width: min(1120px, 100%);
    margin: 42px auto 26px;
    padding: 24px 28px;
    grid-template-columns: minmax(330px, 460px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    border-radius: 34px;
  }

  .product-detail-image {
    border-radius: 28px;
    box-shadow: 0 16px 42px rgba(7,31,33,.10);
  }

  .product-detail-image img {
    aspect-ratio: 1 / 1.12;
    max-height: 560px;
    object-fit: cover;
  }

  .breadcrumb-public {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .product-detail-tags span {
    padding: 7px 9px;
    font-size: 9px;
  }

  .product-detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 2.7vw, 44px);
    line-height: 1.04;
    letter-spacing: -.04em;
  }

  .product-lead {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.55;
  }

  .product-price-line {
    margin: 18px 0;
    padding: 14px 0;
  }

  .product-price-line strong {
    font-size: clamp(25px, 2.2vw, 34px);
  }

  .product-price-line span {
    font-size: 12px;
  }

  .product-actions-public .btn-public {
    min-height: 44px;
    padding: 0 20px;
    font-size: 12px;
  }

  .product-detail-meta {
    margin-top: 18px;
    gap: 9px;
  }

  .product-detail-meta div {
    padding: 12px;
    border-radius: 16px;
  }

  .product-detail-meta span {
    font-size: 9px;
  }

  .product-detail-meta strong {
    font-size: 12px;
  }

  .product-description-section {
    width: min(1120px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding: 26px 28px;
    border-radius: 30px;
  }
}

@media (min-width: 1500px) {
  .product-detail-shell {
    margin-top: 36px;
    grid-template-columns: 430px minmax(0, 1fr);
  }

  .product-detail-image img {
    max-height: 520px;
  }
}


/* Public v8 - identidade Tiffany #078282, logo maior e vitrine com DE/POR */
.home-hero {
  position: relative;
  margin-top: 24px;
  padding: clamp(34px, 5vw, 70px) clamp(20px, 3.4vw, 44px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 16%, rgba(7,130,130,.18), transparent 31%),
    radial-gradient(circle at 78% 22%, rgba(199,164,91,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(238,252,251,.78));
  border: 1px solid rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -140px;
  bottom: -150px;
  border-radius: 999px;
  background: rgba(7,130,130,.13);
  pointer-events: none;
}
.home-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -95px;
  top: 24%;
  border-radius: 999px;
  background: rgba(199,164,91,.13);
  pointer-events: none;
}
.hero-copy, .hero-gallery { position: relative; z-index: 1; }
.hero-copy h1 { color: #078282; }
.btn-primary,
.catalog-toolbar button,
.product-card-bottom a,
.floating-whatsapp,
.site-nav .site-nav-whatsapp {
  background: linear-gradient(135deg, #078282 0%, #056b6b 100%);
  color: #fff;
}
.btn-primary,
.product-card-bottom a,
.floating-whatsapp { box-shadow: 0 18px 44px rgba(7,130,130,.24); }
.site-menu-toggle span { background: #078282; }
.erp-login-button { color: #078282; }
.hero-tile {
  border-radius: 34px;
  border: 2px solid rgba(255,255,255,.82);
  box-shadow: 0 22px 54px rgba(7,130,130,.13);
}
.hero-gallery::before {
  background: linear-gradient(145deg, rgba(7,130,130,.18), rgba(255,255,255,.42), rgba(199,164,91,.15));
}
.hero-tile span { background: rgba(5,43,45,.74); }
.product-badge-off {
  color: #fff;
  background: linear-gradient(135deg, #078282 0%, #056b6b 100%);
  box-shadow: 0 12px 24px rgba(7,130,130,.20);
}
.product-card-price {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.price-from,
.product-price-from {
  color: #7d8d8e;
  font-size: 12px;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.product-card-price strong { color: var(--ink); font-size: 18px; letter-spacing: -.035em; }
.product-price-line {
  position: relative;
}
.product-price-line .product-price-from {
  display: inline-block;
  margin: 0 0 4px;
  font-size: 15px;
}
.product-price-line em {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #078282 0%, #056b6b 100%);
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}
.promo-runway {
  background:
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.20), transparent 26%),
    linear-gradient(135deg, #078282 0%, #056b6b 100%);
}
.promo-stack a { background: rgba(255,255,255,.14); }
.promo-stack a:hover { background: rgba(255,255,255,.20); }
.brand-benefits strong,
.category-chip:hover,
.category-chip.is-active,
.product-title:hover,
.section-head a { color: #078282; }
.story-aside,
.site-footer {
  background: linear-gradient(135deg, #052b2d 0%, #078282 100%);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 82px;
    padding: 10px 12px 10px 22px;
    border-radius: 30px;
  }
  .site-brand { width: 152px; }
  .site-brand img { width: 146px; max-height: 68px; }
  .home-hero {
    margin-top: 14px;
    padding: 34px 24px 28px;
    gap: 24px;
  }
  .hero-copy h1 { font-size: clamp(42px, 14vw, 58px); line-height: .98; }
  .hero-gallery { min-height: 500px; }
  .hero-tile-1 { width: 63%; left: -2%; top: 46%; }
  .hero-tile-2 { width: 52%; right: -1%; top: 24%; }
  .hero-tile-3 { width: 50%; left: 18%; bottom: auto; top: 4%; }
  .brand-benefits div { padding: 18px 22px; }
}

@media (max-width: 520px) {
  .site-brand { width: 142px; }
  .site-brand img { width: 136px; max-height: 64px; }
  .hero-gallery { min-height: 470px; }
  .hero-tile-1 { width: 68%; top: 47%; }
  .hero-tile-2 { width: 54%; top: 24%; }
  .hero-tile-3 { width: 54%; left: 8%; top: 6%; }
  .product-card-bottom { align-items: stretch; }
  .product-card-price strong { font-size: 16px; }
  .price-from { font-size: 11px; }
}

/* Public v9 - correção de contraste na seção verde Tiffany */
.promo-runway .eyebrow {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(5, 43, 45, .20);
}

.promo-runway .eyebrow::before {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .18);
}

.promo-runway .btn-primary {
  background: #ffffff;
  color: #078282;
  box-shadow: 0 18px 42px rgba(5, 43, 45, .18);
}

.promo-runway .btn-primary:hover {
  background: #fffdf8;
  color: #056b6b;
}

.promo-stack a {
  border: 1px solid rgba(255, 255, 255, .18);
}

.promo-stack span {
  color: rgba(255, 255, 255, .86);
}

.story-aside span {
  color: #d9f3f1;
}

.catalog-sidebar-link-v6.is-active small {
  background: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .92);
}


/* Public v10 - slogan oficial Divas */
.top-ribbon-slogan {
  color: #f7d57c;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
}

.brand-slogan-text {
  width: fit-content;
  margin: 16px 0 0;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(199, 164, 91, .22);
  color: #078282;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 26px rgba(7, 31, 33, .07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.45vw, 21px);
  font-style: italic;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.slogan-strip {
  position: relative;
  margin: 26px 0;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(260px, .72fr);
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .25), transparent 28%),
    linear-gradient(135deg, #078282 0%, #056b6b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .50);
  box-shadow: var(--shadow);
}
.slogan-strip::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -130px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  pointer-events: none;
}
.slogan-strip-copy,
.slogan-strip-art { position: relative; z-index: 1; }
.slogan-strip .eyebrow { color: #ffffff; }
.slogan-strip .eyebrow::before { box-shadow: 0 0 0 6px rgba(255, 255, 255, .18); }
.slogan-strip h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 500;
  color: #fff;
  text-wrap: balance;
}
.slogan-strip p {
  margin: 14px 0 0;
  max-width: 610px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.58;
}
.slogan-strip-art {
  min-height: 190px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(5, 43, 45, .22);
  border: 1px solid rgba(255, 255, 255, .17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 42px rgba(5,43,45,.16);
}
.slogan-strip-art img {
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .20));
}

.promo-slogan {
  margin: 16px 0 0;
  display: inline-flex;
  color: #fff7df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 650;
}

.product-slogan-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7, 130, 130, .12), rgba(199, 164, 91, .12));
  border: 1px solid rgba(7, 130, 130, .16);
}
.product-slogan-note strong {
  display: block;
  color: #078282;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.08;
  font-style: italic;
  font-weight: 650;
  letter-spacing: -.035em;
}
.product-slogan-note span {
  display: block;
  margin-top: 6px;
  color: #51676a;
  font-size: 13px;
  line-height: 1.45;
}

.footer-slogan-art {
  width: min(260px, 100%);
  margin: 14px 0 12px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .22));
}

@media (max-width: 860px) {
  .top-ribbon { gap: 18px; overflow-x: auto; justify-content: flex-start; padding-inline: 18px; scrollbar-width: none; }
  .top-ribbon::-webkit-scrollbar { display: none; }
  .top-ribbon span { flex: 0 0 auto; }
  .slogan-strip { grid-template-columns: 1fr; padding: 24px; }
  .slogan-strip-art { min-height: 150px; }
  .slogan-strip-art img { width: min(100%, 330px); }
}

@media (max-width: 520px) {
  .brand-slogan-text { font-size: 16px; padding: 8px 12px; }
  .slogan-strip { margin: 22px 0; border-radius: 28px; }
  .slogan-strip h2 { font-size: clamp(31px, 10vw, 42px); }
  .slogan-strip p { font-size: 14px; }
  .slogan-strip-art { min-height: 132px; border-radius: 24px; }
  .footer-slogan-art { width: 220px; }
}

/* Carrinho público - finalização e atendimento assistido */
.site-cart-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(7,31,33,.08);
  text-decoration: none;
}
.site-cart-button svg { width: 24px; height: 24px; }
.site-cart-count {
  position: absolute;
  right: -3px;
  top: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #078282;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid #fff;
}
.site-cart-count:empty { display: none; }

.cart-add-form { margin: 0; }
.cart-add-form button,
.product-card-bottom .cart-add-form button {
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  min-height: 40px;
  background: #078282;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7,130,130,.18);
}
.cart-add-form button:disabled { opacity: .68; cursor: wait; }
.product-cart-add-form .btn-public { width: 100%; }

.public-cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9999;
  transform: translate(-50%, 16px);
  opacity: 0;
  max-width: min(520px, calc(100vw - 32px));
  padding: 13px 17px;
  border-radius: 18px;
  font-weight: 850;
  box-shadow: 0 20px 55px rgba(5,43,45,.20);
  transition: opacity .22s ease, transform .22s ease;
}
.public-cart-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.public-cart-toast.is-ok { background: #078282; color: #fff; }
.public-cart-toast.is-error { background: #fff1f1; color: #8b1515; border: 1px solid rgba(139,21,21,.14); }

.cart-page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 54px;
}
.cart-page-head {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(7,130,130,.16), rgba(255,255,255,.86));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.cart-page-head h1 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #052b2d;
}
.cart-page-head p { max-width: 740px; color: #51676a; line-height: 1.58; }
.cart-countdown-banner {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(7,130,130,.12), rgba(255,248,237,.92));
  border: 1px solid rgba(199,164,91,.24);
  box-shadow: 0 16px 38px rgba(7,31,33,.08);
}
.cart-countdown-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #078282;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 12px 28px rgba(7,130,130,.20);
}
.cart-countdown-banner strong {
  display: block;
  color: #052b2d;
  font-size: 17px;
  line-height: 1.25;
}
.cart-countdown-banner strong span {
  color: #a66d00;
  white-space: nowrap;
}
.cart-countdown-banner > div:last-child > span {
  display: block;
  margin-top: 3px;
  color: #52696b;
  font-weight: 780;
  line-height: 1.35;
}
.cart-countdown-banner.is-expired {
  background: #fff1f1;
  border-color: rgba(160, 38, 38, .18);
}

.cart-alert { margin: 16px 0 0; padding: 13px 16px; border-radius: 16px; font-weight: 850; }
.cart-alert-ok { background: rgba(7,130,130,.10); color: #056b6b; }
.cart-alert-erro { background: #fff1f1; color: #9a1919; }
.cart-empty-card {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cart-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 22px;
  align-items: start;
}
.cart-items-list { display: grid; gap: 14px; }
.cart-item-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(7,31,33,.07);
}
.cart-item-image {
  width: 108px;
  height: 108px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7,130,130,.10);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info strong { display: block; color: #052b2d; font-size: 17px; }
.cart-item-info span { display: block; margin-top: 5px; color: #078282; font-weight: 900; }
.cart-item-info small { display: block; margin-top: 6px; color: #6f8082; }
.cart-item-price { text-align: right; display: grid; gap: 8px; }
.cart-item-price strong { color: #052b2d; font-size: 18px; }
.cart-item-price button {
  border: 1px solid rgba(7,130,130,.18);
  border-radius: 999px;
  background: #fff;
  color: #078282;
  padding: 8px 12px;
  font-weight: 850;
  cursor: pointer;
}
.cart-checkout-card {
  position: sticky;
  top: 106px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cart-checkout-card h2 { margin: 0 0 14px; color: #052b2d; }
.cart-total-line { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid rgba(7,130,130,.12); }
.cart-total-line strong { color: #052b2d; font-size: 20px; }
.cart-checkout-card p { color: #66787a; line-height: 1.48; }
.cart-checkout-form { display: grid; gap: 12px; margin-top: 14px; }
.cart-checkout-form label { display: grid; gap: 6px; }
.cart-checkout-form span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #557072; font-weight: 900; }
.cart-checkout-form input,
.cart-checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(7,130,130,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  padding: 13px 14px;
  font: inherit;
  color: #052b2d;
  outline: none;
}
.cart-checkout-form input:focus,
.cart-checkout-form textarea:focus { border-color: #078282; box-shadow: 0 0 0 4px rgba(7,130,130,.10); }

@media (max-width: 920px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-checkout-card { position: static; }
}
@media (max-width: 620px) {
  .site-cart-button { width: 44px; height: 44px; }
  .cart-item-card { grid-template-columns: 86px minmax(0, 1fr); }
  .cart-item-image { width: 86px; height: 86px; }
  .cart-item-price { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; text-align: left; }
  .product-card-bottom { gap: 10px; }
  .product-card-bottom .cart-add-form button { width: 100%; }
}
.product-actions-public .product-cart-add-form { display: inline-flex; margin: 0; }
.product-actions-public .product-cart-add-form .btn-public { border: 0; }
@media (max-width: 520px) { .product-actions-public .product-cart-add-form { display: block; width: 100%; } }

/* Public cart v1.1 - entrega por CEP */
.cart-address-block {
  display: grid;
  gap: 12px;
  margin: 6px 0 2px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(7,130,130,.08), rgba(255,255,255,.74));
  border: 1px solid rgba(7,130,130,.14);
}
.cart-address-title {
  display: grid;
  gap: 4px;
}
.cart-address-title strong {
  color: #052b2d;
  font-size: 16px;
}
.cart-address-title small {
  color: #66787a;
  line-height: 1.4;
}
.cart-form-grid {
  display: grid;
  gap: 10px;
}
.cart-form-grid-cep {
  grid-template-columns: minmax(130px, 170px) 1fr;
  align-items: end;
}
.cart-form-grid-address {
  grid-template-columns: minmax(95px, .75fr) 1.25fr;
}
.cart-form-grid-city {
  grid-template-columns: 1fr 1fr minmax(64px, .38fr);
}
.cart-cep-status {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 850;
  color: #6a7b7d;
  background: rgba(255,255,255,.58);
  border: 1px dashed rgba(7,130,130,.18);
}
.cart-cep-status:empty {
  display: none;
}
.cart-cep-status.is-loading {
  color: #056b6b;
  background: rgba(7,130,130,.08);
  border-style: solid;
}
.cart-cep-status.is-ok {
  color: #056b6b;
  background: rgba(7,130,130,.12);
  border-style: solid;
}
.cart-cep-status.is-error {
  color: #9a1919;
  background: #fff1f1;
  border-color: rgba(154,25,25,.18);
  border-style: solid;
}
@media (max-width: 620px) {
  .cart-address-block { padding: 14px; border-radius: 20px; }
  .cart-form-grid-cep,
  .cart-form-grid-address,
  .cart-form-grid-city { grid-template-columns: 1fr; }
  .cart-cep-status { min-height: 0; }
}


/* Produto público v9 - compactação desktop + fluxo claro de carrinho */
@media (min-width: 1025px) {
  .product-detail-shell {
    width: min(980px, 100%) !important;
    margin: 24px auto 18px !important;
    padding: 18px 22px !important;
    grid-template-columns: minmax(290px, 360px) minmax(0, 1fr) !important;
    gap: 28px !important;
    border-radius: 30px !important;
  }

  .product-detail-image {
    border-radius: 24px !important;
    box-shadow: 0 14px 34px rgba(7,31,33,.09) !important;
  }

  .product-detail-image img {
    aspect-ratio: 1 / 1.12 !important;
    max-height: 430px !important;
    object-fit: cover !important;
  }

  .product-detail-image span {
    top: 12px !important;
    left: 12px !important;
    padding: 7px 10px !important;
    font-size: 10px !important;
  }

  .breadcrumb-public {
    margin-bottom: 8px !important;
    font-size: 10.5px !important;
  }

  .product-detail-tags {
    gap: 6px !important;
  }

  .product-detail-tags span {
    padding: 6px 8px !important;
    font-size: 8.5px !important;
    letter-spacing: .075em !important;
  }

  .product-detail-info h1 {
    margin: 12px 0 10px !important;
    font-size: clamp(27px, 2.05vw, 36px) !important;
    line-height: 1.03 !important;
    letter-spacing: -.04em !important;
  }

  .product-lead {
    max-width: 520px !important;
    font-size: 13px !important;
    line-height: 1.48 !important;
  }

  .product-price-line {
    margin: 14px 0 !important;
    padding: 12px 0 !important;
  }

  .product-price-line .product-price-from {
    font-size: 13px !important;
    margin-bottom: 2px !important;
  }

  .product-price-line strong {
    font-size: clamp(24px, 1.9vw, 30px) !important;
  }

  .product-price-line em {
    margin-top: 6px !important;
    padding: 6px 9px !important;
    font-size: 10px !important;
  }

  .product-price-line span {
    margin-top: 4px !important;
    font-size: 11.5px !important;
  }

  .product-slogan-note {
    margin: 12px 0 0 !important;
    padding: 11px 13px !important;
    border-radius: 16px !important;
  }

  .product-slogan-note strong {
    font-size: 16px !important;
  }

  .product-slogan-note span {
    margin-top: 4px !important;
    font-size: 11.5px !important;
  }

  .product-actions-public {
    gap: 9px !important;
    margin-top: 10px !important;
  }

  .product-actions-public .btn-public {
    min-height: 40px !important;
    padding: 0 16px !important;
    font-size: 11.5px !important;
  }

  .product-detail-meta {
    margin-top: 14px !important;
    gap: 8px !important;
  }

  .product-detail-meta div {
    padding: 10px 11px !important;
    border-radius: 14px !important;
  }

  .product-detail-meta span {
    font-size: 8.5px !important;
  }

  .product-detail-meta strong {
    margin-top: 4px !important;
    font-size: 11.5px !important;
  }

  .product-description-section {
    width: min(980px, 100%) !important;
    margin-top: 18px !important;
    padding: 22px 24px !important;
    border-radius: 26px !important;
  }
}

@media (min-width: 1500px) {
  .product-detail-shell {
    width: min(940px, 100%) !important;
    grid-template-columns: 340px minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  .product-detail-image img {
    max-height: 410px !important;
  }
}

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

.cart-page-head-with-action > div {
  min-width: 0;
}

.cart-continue-top,
.cart-continue-button {
  white-space: nowrap;
}

.cart-checkout-form .cart-continue-button {
  width: 100%;
  margin-top: -2px;
}

@media (max-width: 720px) {
  .cart-page-head-with-action {
    display: grid;
  }

  .cart-continue-top {
    width: 100%;
  }
}


/* Produto público v10 - desktop com detalhes na lateral e mobile preservado */
.product-description-aside {
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px) saturate(115%);
}

@media (min-width: 1025px) {
  .product-detail-desktop-grid {
    width: min(1280px, 100%);
    margin: 24px auto 18px;
    display: grid;
    grid-template-columns: minmax(0, 2.12fr) minmax(300px, .88fr);
    gap: 14px;
    align-items: stretch;
  }

  .product-detail-desktop-grid .product-detail-shell {
    width: 100% !important;
    min-height: 0;
    margin: 0 !important;
    padding: 18px 22px !important;
    grid-template-columns: minmax(270px, 330px) minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: center !important;
    border-radius: 30px 0 0 30px !important;
  }

  .product-detail-desktop-grid .product-detail-image img {
    max-height: 390px !important;
  }

  .product-detail-desktop-grid .product-detail-info h1 {
    font-size: clamp(27px, 1.85vw, 35px) !important;
  }

  .product-detail-desktop-grid .product-lead {
    font-size: 12.8px !important;
    line-height: 1.45 !important;
  }

  .product-detail-desktop-grid .product-price-line {
    margin: 12px 0 !important;
    padding: 11px 0 !important;
  }

  .product-detail-desktop-grid .product-slogan-note {
    margin-top: 10px !important;
  }

  .product-detail-desktop-grid .product-detail-meta {
    margin-top: 12px !important;
  }

  .product-description-aside {
    min-height: 100%;
    margin: 0;
    padding: 28px 28px 24px;
    border-radius: 0 30px 30px 0;
    display: grid;
    align-content: start;
    gap: 18px;
    overflow: hidden;
  }

  .product-description-aside h2 {
    margin: 8px 0 0;
    font-size: clamp(28px, 2.05vw, 38px);
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  .product-description-aside .product-description-text {
    max-height: 390px;
    overflow: auto;
    padding-right: 8px;
    color: #4e6365;
    font-size: 14px;
    line-height: 1.72;
  }

  .product-description-aside .product-description-text::-webkit-scrollbar {
    width: 7px;
  }

  .product-description-aside .product-description-text::-webkit-scrollbar-thumb {
    background: rgba(7,130,130,.28);
    border-radius: 999px;
  }

  .product-description-section-mobile {
    display: none !important;
  }

  .product-description-section:not(.product-description-section-mobile) {
    display: none !important;
  }
}

@media (min-width: 1500px) {
  .product-detail-desktop-grid {
    width: min(1260px, 100%);
    grid-template-columns: minmax(0, 2.18fr) minmax(310px, .82fr);
    gap: 16px;
  }

  .product-detail-desktop-grid .product-detail-shell {
    grid-template-columns: 330px minmax(0, 1fr) !important;
  }

  .product-detail-desktop-grid .product-detail-image img,
  .product-description-aside .product-description-text {
    max-height: 385px !important;
  }
}

@media (max-width: 1024px) {
  .product-detail-desktop-grid {
    display: block;
  }

  .product-description-aside {
    display: none !important;
  }

  .product-detail-desktop-grid .product-detail-shell {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Rodapé público ultracompacto - Divas Joias */
.site-footer {
  margin: 28px auto 12px !important;
  padding: 20px 28px 12px !important;
  border-radius: 30px 30px 0 0 !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.2fr) .72fr .72fr .82fr !important;
  gap: clamp(24px, 4vw, 72px) !important;
  align-items: start !important;
}

.site-footer .footer-brand-block {
  display: grid !important;
  grid-template-columns: 86px 132px !important;
  grid-template-areas:
    "logo slogan"
    "text text" !important;
  column-gap: 18px !important;
  row-gap: 8px !important;
  align-items: center !important;
  max-width: 330px !important;
}

.site-footer .footer-logo {
  grid-area: logo !important;
  width: 86px !important;
  max-width: 86px !important;
  height: auto !important;
  margin: 0 !important;
}

.site-footer .footer-slogan-art {
  grid-area: slogan !important;
  width: 132px !important;
  max-width: 132px !important;
  height: auto !important;
  margin: 0 !important;
  display: block !important;
}

.site-footer .footer-brand-block p {
  grid-area: text !important;
  margin: 6px 0 0 !important;
  max-width: 300px !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
  color: rgba(255,255,255,.68) !important;
}

.site-footer h3 {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  letter-spacing: .12em !important;
}

.site-footer a {
  display: block !important;
  margin: 0 0 6px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 820 !important;
}

.site-footer .footer-bottom {
  margin-top: 12px !important;
  padding-top: 10px !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

@media (min-width: 981px) {
  .site-footer .footer-grid > div:not(.footer-brand-block) {
    padding-top: 2px !important;
  }
}

@media (max-width: 980px) {
  .site-footer {
    margin-top: 24px !important;
    padding: 18px 20px 12px !important;
    border-radius: 26px 26px 0 0 !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 28px !important;
  }

  .site-footer .footer-brand-block {
    grid-column: 1 / -1 !important;
    grid-template-columns: 74px 118px minmax(0, 1fr) !important;
    grid-template-areas: "logo slogan text" !important;
    max-width: none !important;
  }

  .site-footer .footer-logo {
    width: 74px !important;
    max-width: 74px !important;
  }

  .site-footer .footer-slogan-art {
    width: 118px !important;
    max-width: 118px !important;
  }

  .site-footer .footer-brand-block p {
    margin: 0 !important;
    max-width: none !important;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 18px 16px 12px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .site-footer .footer-brand-block {
    grid-template-columns: 68px 108px !important;
    grid-template-areas:
      "logo slogan"
      "text text" !important;
    column-gap: 14px !important;
    row-gap: 8px !important;
  }

  .site-footer .footer-logo {
    width: 68px !important;
    max-width: 68px !important;
  }

  .site-footer .footer-slogan-art {
    width: 108px !important;
    max-width: 108px !important;
  }

  .site-footer .footer-brand-block p {
    font-size: 12px !important;
  }

  .site-footer .footer-bottom {
    margin-top: 10px !important;
    padding-top: 10px !important;
    display: grid !important;
    gap: 4px !important;
  }
}


/* Continuar comprando mais visível */
.btn-continue-shopping {
  position: relative;
  border-color: rgba(199, 164, 91, .55) !important;
  background: linear-gradient(135deg, rgba(199,164,91,.22), rgba(255,248,237,.96)) !important;
  color: #6f4b07 !important;
  font-weight: 950 !important;
  box-shadow: 0 10px 24px rgba(199,164,91,.18) !important;
  isolation: isolate;
}

.btn-continue-shopping::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(199, 164, 91, .32);
  opacity: .55;
  z-index: -1;
  animation: divasContinuePulse 1.9s ease-out infinite;
}

.btn-continue-shopping::after {
  content: '✨';
  margin-left: 8px;
  font-size: .95em;
}

.btn-continue-shopping:hover {
  color: #533700 !important;
  border-color: rgba(199, 164, 91, .82) !important;
  background: linear-gradient(135deg, rgba(199,164,91,.35), rgba(255,248,237,1)) !important;
  box-shadow: 0 18px 34px rgba(199,164,91,.24) !important;
}

@keyframes divasContinuePulse {
  0% {
    transform: scale(.96);
    opacity: .62;
  }
  70% {
    transform: scale(1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1.06);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-continue-shopping::before {
    animation: none !important;
    opacity: .28 !important;
  }
}

@media (max-width: 720px) {
  .btn-continue-shopping {
    min-height: 50px;
  }
}


@media (max-width: 620px) {
  .cart-countdown-banner {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 13px 14px;
  }
  .cart-countdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 20px;
  }
  .cart-countdown-banner strong {
    font-size: 15px;
  }
}


/* Home desktop: vitrine mais compacta sem mexer no mobile */
@media (min-width: 981px) {
  .product-grid.product-grid-home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .product-grid.product-grid-home .product-card-image {
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(7,31,33,.08);
  }

  .product-grid.product-grid-home .product-card-image img {
    aspect-ratio: 4 / 4.65;
  }

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

  .product-grid.product-grid-home .product-title {
    min-height: 38px;
    font-size: 14px;
    line-height: 1.25;
  }

  .product-grid.product-grid-home .product-card-bottom {
    margin-top: 7px;
  }

  .product-grid.product-grid-home .product-card-bottom strong {
    font-size: 16px;
  }

  .product-grid.product-grid-home .product-card-bottom a {
    padding: 10px 15px;
    min-height: 38px;
    font-size: 12px;
  }

  .product-grid.product-grid-home .product-category {
    margin-bottom: 4px;
    font-size: 10px;
  }
}
/* Home desktop: vitrine estilo e-commerce mais compacta */
@media (min-width: 981px) {
  .showcase-block {
    padding: 26px 30px 28px !important;
    border-radius: 30px !important;
  }

  .showcase-block .section-head {
    margin-bottom: 16px !important;
  }

  .showcase-block .section-head h2 {
    font-size: clamp(27px, 2.15vw, 36px) !important;
    line-height: 1.05 !important;
  }

  .product-grid.product-grid-home {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .product-grid.product-grid-home .product-card-image {
    border-radius: 20px !important;
    box-shadow: 0 10px 22px rgba(7,31,33,.075) !important;
  }

  .product-grid.product-grid-home .product-card-image img {
    aspect-ratio: 4 / 4.20 !important;
    object-fit: cover !important;
  }

  .product-grid.product-grid-home .product-badge {
    top: 9px !important;
    left: 9px !important;
    padding: 6px 8px !important;
    font-size: 9px !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.08) !important;
  }

  .product-grid.product-grid-home .product-card-info {
    padding: 8px 0 0 !important;
  }

  .product-grid.product-grid-home .product-category {
    margin-bottom: 4px !important;
    font-size: 9px !important;
    letter-spacing: .08em !important;
  }

  .product-grid.product-grid-home .product-title {
    min-height: 34px !important;
    font-size: 12.5px !important;
    line-height: 1.24 !important;
    letter-spacing: -.01em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .product-grid.product-grid-home .product-card-bottom {
    margin-top: 7px !important;
    gap: 8px !important;
  }

  .product-grid.product-grid-home .price-old,
  .product-grid.product-grid-home del {
    font-size: 10.5px !important;
  }

  .product-grid.product-grid-home .product-card-bottom strong {
    font-size: 14.5px !important;
    line-height: 1.1 !important;
  }

  .product-grid.product-grid-home .product-card-bottom a,
  .product-grid.product-grid-home .btn-public,
  .product-grid.product-grid-home button {
    min-height: 34px !important;
    padding: 8px 12px !important;
    font-size: 11.5px !important;
    border-radius: 999px !important;
  }

  .product-grid.product-grid-home .quick-view-label {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    padding: 8px 10px !important;
    font-size: 10.5px !important;
  }
}

@media (min-width: 1660px) {
  .product-grid.product-grid-home {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}
/* Home desktop: carrossel horizontal de produtos */
@media (min-width: 981px) {
  .home-carousel-wrap {
    position: relative;
    margin-inline: -2px;
    overflow: hidden;
  }

  .product-grid.product-grid-home.home-products-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    padding: 2px 4px 6px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-grid.product-grid-home.home-products-carousel::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .product-grid.product-grid-home.home-products-carousel > * {
    scroll-snap-align: start;
  }

  .home-carousel-nav {
    position: absolute;
    top: 38%;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(7, 130, 130, .16);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #007c78;
    box-shadow: 0 10px 28px rgba(7,31,33,.14);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }

  .home-carousel-nav:hover {
    transform: translateY(-1px) scale(1.04);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(7,31,33,.18);
  }

  .home-carousel-prev { left: -18px; }
  .home-carousel-next { right: -18px; }
}

@media (min-width: 1280px) {
  .product-grid.product-grid-home.home-products-carousel {
    grid-auto-columns: calc((100% - 64px) / 5) !important;
  }
}

@media (min-width: 1660px) {
  .product-grid.product-grid-home.home-products-carousel {
    grid-auto-columns: calc((100% - 80px) / 6) !important;
  }
}

@media (max-width: 980px) {
  .home-carousel-nav { display: none !important; }
}

/* Public v14 - mobile: preservar foto inteira nos cards da vitrine */
@media (max-width: 980px) {
  .product-grid.product-grid-home .product-card-image {
    background: #ffffff !important;
  }

  .product-grid.product-grid-home .product-card-image img {
    aspect-ratio: 4 / 5.35 !important;
    object-fit: contain !important;
    background: #ffffff !important;
  }

  .product-grid.product-grid-home .product-card-public:hover .product-card-image img {
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .product-grid.product-grid-home .product-card-image img {
    aspect-ratio: 4 / 5.65 !important;
    object-fit: contain !important;
  }
}

/* Ajuste global de fotos públicas: preservar peça inteira sem cortes */
.product-card-image,
.product-detail-image,
.promo-stack,
.hero-tile {
  background: #fff;
}

.product-card-image img,
.catalog-product-grid .product-card-image img,
.featured-carousel .product-card-image img,
.product-detail-image img,
.promo-stack img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}

.product-detail-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.product-detail-image img {
  display: block;
  height: auto;
  max-height: min(72vh, 620px);
}

@media (max-width: 768px) {
  .product-detail-shell {
    gap: 18px;
  }

  .product-detail-image {
    border-radius: 26px;
    padding: 8px;
  }

  .product-detail-image img {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    max-height: 58vh;
  }

  .product-card-image img,
  .catalog-product-grid .product-card-image img,
  .featured-carousel .product-card-image img {
    aspect-ratio: 4 / 5 !important;
  }
}


/* Área da cliente - etapa 1 */
.site-account-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(7, 130, 130, .18);
  color: #075f5f;
  background: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-weight: 800;
  font-size: .86rem;
  box-shadow: 0 10px 26px rgba(5, 72, 72, .08);
}

.site-account-button svg {
  width: 20px;
  height: 20px;
}

.customer-auth-shell,
.customer-orders-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 34px auto 56px;
}

.customer-auth-shell {
  display: grid;
  place-items: center;
  min-height: 58vh;
}

.customer-auth-card,
.customer-order-card,
.customer-profile-strip {
  border: 1px solid rgba(7, 130, 130, .13);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 55px rgba(5, 72, 72, .10);
}

.customer-auth-card {
  width: min(460px, 100%);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 38px);
}

.customer-auth-card-wide {
  width: min(680px, 100%);
}

.customer-auth-card h1,
.customer-orders-head h1 {
  margin: 6px 0 10px;
  color: #063d3d;
}

.customer-auth-card p,
.customer-orders-head p {
  color: #5a7373;
  line-height: 1.55;
}

.customer-auth-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.customer-auth-form label,
.customer-check-line {
  display: grid;
  gap: 7px;
  color: #234c4c;
  font-weight: 800;
  font-size: .92rem;
}

.customer-auth-form input:not([type="checkbox"]) {
  width: 100%;
  border: 1px solid rgba(7, 130, 130, .18);
  border-radius: 18px;
  min-height: 48px;
  padding: 0 15px;
  font: inherit;
  outline: none;
  background: #fff;
}

.customer-auth-form input:focus {
  border-color: rgba(7, 130, 130, .55);
  box-shadow: 0 0 0 4px rgba(7, 130, 130, .10);
}

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

.customer-check-line {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  font-weight: 700;
  color: #577070;
}

.customer-check-line input {
  margin-top: 4px;
}

.customer-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.customer-auth-links a,
.cart-customer-login-hint a,
.cart-customer-logged a {
  color: #078282;
  font-weight: 900;
  text-decoration: none;
}

.customer-orders-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.customer-orders-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.customer-profile-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  border-radius: 22px;
  padding: 14px 18px;
  margin: 12px 0 18px;
  color: #355b5b;
}

.customer-orders-list {
  display: grid;
  gap: 16px;
}

.customer-order-card {
  border-radius: 28px;
  padding: 18px;
}

.customer-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.customer-order-top strong {
  display: block;
  color: #063d3d;
  font-size: 1.05rem;
}

.customer-order-top span:not(.customer-order-status) {
  color: #6a7d7d;
  font-size: .9rem;
}

.customer-order-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
  background: rgba(7, 130, 130, .12);
  color: #066262;
  white-space: nowrap;
}

.customer-order-status-aprovado { background: rgba(34, 150, 90, .13); color: #16633f; }
.customer-order-status-cancelado,
.customer-order-status-expirado { background: rgba(140, 76, 76, .12); color: #7a3030; }

.customer-order-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.customer-order-metrics span {
  border-radius: 18px;
  background: rgba(7, 130, 130, .06);
  padding: 12px;
}

.customer-order-metrics small {
  display: block;
  color: #648080;
  font-weight: 800;
  font-size: .76rem;
}

.customer-order-metrics strong {
  display: block;
  color: #063d3d;
  margin-top: 2px;
}

.customer-order-items {
  display: grid;
  gap: 8px;
  border-top: 1px dashed rgba(7, 130, 130, .2);
  padding-top: 12px;
}

.customer-order-item-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #355b5b;
  font-size: .92rem;
}

.customer-order-item-line strong {
  white-space: nowrap;
  color: #063d3d;
}

.cart-customer-logged,
.cart-customer-login-hint {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 12px 14px;
  margin: 12px 0;
  background: rgba(7, 130, 130, .08);
  color: #245858;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid rgba(7, 130, 130, .24);
  color: #078282;
  background: #fff;
}

@media (max-width: 760px) {
  .site-account-button span { display: none; }
  .site-account-button { min-width: 42px; justify-content: center; padding: 0 10px; }
  .customer-auth-shell,
  .customer-orders-shell { width: min(100% - 22px, 1120px); margin-top: 22px; }
  .customer-auth-card { border-radius: 26px; padding: 22px; }
  .customer-auth-grid-2,
  .customer-order-metrics { grid-template-columns: 1fr; }
  .customer-orders-head { align-items: stretch; flex-direction: column; }
  .customer-orders-actions { justify-content: stretch; }
  .customer-orders-actions .btn-public { flex: 1 1 auto; }
  .customer-order-top { flex-direction: column; }
  .customer-order-item-line { align-items: flex-start; flex-direction: column; }
}

/* Separação clara: cliente público x ERP interno */
.site-register-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(7, 130, 130, .16);
  background: #078282;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: .84rem;
  box-shadow: 0 12px 28px rgba(7, 130, 130, .18);
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.site-register-button:hover {
  transform: translateY(-2px);
  background: #066f6f;
  box-shadow: 0 16px 34px rgba(7, 130, 130, .24);
}

.customer-access-strip {
  width: var(--container);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 130, 130, .13);
  border-radius: 26px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 42px rgba(5, 72, 72, .08);
}

.customer-access-strip strong {
  display: block;
  color: #063d3d;
  font-size: 1.02rem;
}

.customer-access-strip span {
  display: block;
  margin-top: 3px;
  color: #5b7373;
  font-size: .9rem;
}

.customer-access-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-register-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: .78rem;
  }
}

@media (max-width: 760px) {
  .site-register-button {
    display: none;
  }

  .customer-access-strip {
    width: min(100% - 22px, 1120px);
    align-items: stretch;
    flex-direction: column;
    padding: 15px;
    border-radius: 22px;
  }

  .customer-access-actions {
    justify-content: stretch;
  }

  .customer-access-actions .btn-public {
    flex: 1 1 auto;
    min-width: 128px;
  }
}


/* Área da cliente - perfil e endereços */
.customer-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.customer-account-card {
  border: 1px solid rgba(7, 130, 130, .13);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 55px rgba(5, 72, 72, .10);
  border-radius: 28px;
  padding: clamp(18px, 3vw, 26px);
}

.customer-account-card-head {
  margin-bottom: 12px;
}

.customer-account-card-head h2 {
  margin: 5px 0 0;
  color: #063d3d;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.customer-auth-form select,
.customer-auth-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 130, 130, .18);
  border-radius: 18px;
  min-height: 48px;
  padding: 0 15px;
  font: inherit;
  outline: none;
  background: #fff;
}

.customer-auth-form small {
  color: #779090;
  font-weight: 800;
}

.customer-address-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
}

.customer-address-item {
  border-radius: 20px;
  padding: 13px 14px;
  background: rgba(7, 130, 130, .06);
  border: 1px solid rgba(7, 130, 130, .12);
  color: #355b5b;
}

.customer-address-item strong {
  color: #063d3d;
}

.customer-address-item > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  margin-left: 7px;
  border-radius: 999px;
  background: rgba(7, 130, 130, .13);
  color: #066262;
  font-weight: 900;
  font-size: .72rem;
}

.customer-address-item p {
  margin: 7px 0 0;
  line-height: 1.45;
}

.customer-mini-note {
  border-radius: 18px;
  padding: 13px 14px;
  margin: 12px 0 16px;
  background: rgba(221, 184, 84, .12);
  color: #6a5010;
  font-weight: 800;
}

.customer-account-orders-card {
  margin-top: 18px;
}

.customer-account-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 16px;
}

.customer-account-summary span {
  border-radius: 18px;
  background: rgba(7, 130, 130, .06);
  padding: 12px;
  min-width: 0;
}

.customer-account-summary small {
  display: block;
  color: #648080;
  font-weight: 800;
  font-size: .76rem;
}

.customer-account-summary strong {
  display: block;
  color: #063d3d;
  margin-top: 2px;
  overflow-wrap: anywhere;
}

@media (max-width: 880px) {
  .customer-account-grid,
  .customer-account-summary {
    grid-template-columns: 1fr;
  }
}

/* Cliente logada: saudação ao lado do logo no cabeçalho público */
@media (max-width: 1180px) {
  .site-brand-with-customer { width: min(232px, 48vw); }
  .site-customer-welcome strong { max-width: 96px; }
}

@media (max-width: 860px) {
  .site-brand-with-customer { width: 158px; gap: 7px; }
  .site-brand-with-customer img { width: 74px; max-height: 44px; }
  .site-customer-welcome { padding-left: 8px; }
  .site-customer-welcome small { display: none; }
  .site-customer-welcome strong { max-width: 62px; font-size: 11px; }
}

@media (max-width: 420px) {
  .site-brand-with-customer { width: 138px; }
  .site-brand-with-customer img { width: 68px; }
  .site-customer-welcome strong { max-width: 52px; font-size: 10.5px; }
}

/* Área da cliente em estilo app + sidebar desktop */
.public-customer-account,
.public-customer-orders {
  background:
    radial-gradient(circle at 12% 8%, rgba(126, 213, 205, .24), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(221, 184, 84, .12), transparent 28%),
    #fbfaf7;
}

.customer-app-shell {
  width: var(--container);
  margin: 34px auto 64px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.customer-app-sidebar {
  position: sticky;
  top: 112px;
  border: 1px solid rgba(7, 130, 130, .14);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 55px rgba(5, 72, 72, .10);
  padding: 18px;
}

.customer-sidebar-profile {
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 8px 8px 16px;
  border-bottom: 1px solid rgba(7, 130, 130, .11);
  margin-bottom: 12px;
}

.customer-avatar {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #078282, #7ed5cd);
  color: #fff;
  font-weight: 950;
  letter-spacing: .04em;
  box-shadow: 0 14px 30px rgba(7, 130, 130, .22);
}

.customer-avatar-large {
  width: 70px;
  height: 70px;
  font-size: 1.45rem;
}

.customer-sidebar-profile strong {
  color: #063d3d;
  font-size: 1.02rem;
}

.customer-sidebar-profile small {
  color: #6a7f7f;
  overflow-wrap: anywhere;
}

.customer-side-nav {
  display: grid;
  gap: 6px;
}

.customer-side-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 16px;
  color: #315b5b;
  text-decoration: none;
  font-weight: 900;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.customer-side-nav a:hover,
.customer-side-nav a.is-active {
  background: rgba(7, 130, 130, .10);
  color: #057373;
  transform: translateX(2px);
}

.customer-side-nav .customer-side-exit {
  margin-top: 6px;
  color: #9b4b38;
}

.customer-app-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.customer-mobile-titlebar { display: none; }

.customer-app-hero,
.customer-app-shortcuts,
.customer-panel-card,
.customer-order-filter-strip,
.customer-empty-orders-card {
  border: 1px solid rgba(7, 130, 130, .13);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(5, 72, 72, .10);
}

.customer-app-hero {
  border-radius: 34px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 84% 20%, rgba(126, 213, 205, .22), transparent 34%),
    rgba(255, 255, 255, .94);
}

.customer-app-hero-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.customer-app-hero h1 {
  margin: 4px 0 6px;
  color: #063d3d;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
}

.customer-app-hero p {
  margin: 0;
  color: #617777;
  overflow-wrap: anywhere;
}

.customer-app-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 10px;
  min-width: min(420px, 48%);
}

.customer-app-hero-stats span,
.customer-order-filter-strip span {
  border-radius: 20px;
  background: rgba(7, 130, 130, .07);
  padding: 13px 14px;
}

.customer-app-hero-stats small,
.customer-order-filter-strip small {
  display: block;
  color: #688181;
  font-weight: 900;
  font-size: .76rem;
}

.customer-app-hero-stats strong,
.customer-order-filter-strip strong {
  display: block;
  color: #063d3d;
  font-size: 1.1rem;
  margin-top: 3px;
}

.customer-app-shortcuts {
  border-radius: 28px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.customer-app-shortcuts a {
  display: grid;
  gap: 3px;
  min-height: 96px;
  align-content: center;
  border-radius: 22px;
  padding: 12px;
  background: rgba(7, 130, 130, .055);
  color: #063d3d;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.customer-app-shortcuts a:hover {
  transform: translateY(-2px);
  background: rgba(7, 130, 130, .10);
  box-shadow: 0 14px 28px rgba(5, 72, 72, .10);
}

.customer-app-shortcuts span {
  font-size: 1.28rem;
}

.customer-app-shortcuts strong {
  font-weight: 950;
}

.customer-app-shortcuts small {
  color: #6c8181;
  font-weight: 800;
}

.customer-app-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.customer-panel-card {
  border-radius: 30px;
}

.customer-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.customer-panel-head a {
  color: #078282;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.customer-empty-mini {
  display: grid;
  gap: 8px;
  border-radius: 22px;
  padding: 16px;
  background: rgba(7, 130, 130, .055);
  color: #506b6b;
}

.customer-empty-mini strong {
  color: #063d3d;
}

.customer-mini-order-list {
  display: grid;
  gap: 10px;
}

.customer-mini-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 20px;
  padding: 13px 14px;
  background: rgba(7, 130, 130, .055);
  color: #063d3d;
  text-decoration: none;
}

.customer-mini-order span,
.customer-mini-order small {
  display: block;
}

.customer-mini-order small {
  margin-top: 2px;
  color: #748989;
  font-weight: 800;
}

.customer-mini-order em {
  font-style: normal;
  color: #078282;
  font-weight: 950;
  text-align: right;
}

.customer-address-featured {
  border-radius: 22px;
  padding: 16px;
  background: rgba(7, 130, 130, .055);
  color: #456868;
}

.customer-address-featured strong {
  display: block;
  color: #063d3d;
  margin-bottom: 7px;
}

.customer-address-featured p {
  margin: 0;
  line-height: 1.55;
}

.customer-address-list-app {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-orders-app-head {
  border: 1px solid rgba(7, 130, 130, .13);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 55px rgba(5, 72, 72, .09);
  border-radius: 30px;
  padding: 22px;
  margin-bottom: 0;
}

.customer-order-filter-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-radius: 26px;
  padding: 12px;
}

.customer-orders-list-app {
  gap: 14px;
}

.customer-order-card-app {
  border-radius: 28px;
}

.customer-bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid rgba(7, 130, 130, .16);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 40px rgba(5, 72, 72, .18);
  backdrop-filter: blur(18px);
}

.customer-bottom-nav a {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 54px;
  border-radius: 18px;
  text-decoration: none;
  color: #6f8383;
  font-weight: 900;
}

.customer-bottom-nav span {
  font-size: 1.25rem;
  line-height: 1;
}

.customer-bottom-nav small {
  font-size: .72rem;
}

.customer-bottom-nav a.is-active {
  color: #fff;
  background: #078282;
  box-shadow: 0 10px 20px rgba(7, 130, 130, .22);
}

@media (max-width: 1080px) {
  .customer-app-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .customer-app-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .customer-app-layout-grid {
    grid-template-columns: 1fr;
  }
  .customer-app-hero {
    align-items: stretch;
    flex-direction: column;
  }
  .customer-app-hero-stats {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .public-customer-account .site-header,
  .public-customer-orders .site-header,
  .public-customer-account .top-ribbon,
  .public-customer-orders .top-ribbon,
  .public-customer-account .site-footer,
  .public-customer-orders .site-footer,
  .public-customer-account .floating-whatsapp,
  .public-customer-orders .floating-whatsapp {
    display: none;
  }

  .public-customer-account main,
  .public-customer-orders main {
    padding-bottom: 92px;
  }

  .customer-app-shell {
    width: 100%;
    margin: 0;
    display: block;
  }

  .customer-app-sidebar { display: none; }

  .customer-app-main {
    gap: 14px;
    padding: 0 14px 20px;
  }

  .customer-mobile-titlebar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 -14px 12px;
    min-height: 74px;
    padding: calc(10px + env(safe-area-inset-top)) 18px 10px;
    background: #078282;
    color: #fff;
    box-shadow: 0 8px 20px rgba(5, 72, 72, .16);
  }

  .customer-mobile-titlebar a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
  }

  .customer-mobile-titlebar strong {
    font-size: 1.38rem;
  }

  .customer-app-hero {
    border-radius: 0 0 28px 28px;
    padding: 18px;
    margin: -12px -14px 0;
    border-left: 0;
    border-right: 0;
  }

  .customer-app-hero-left {
    align-items: flex-start;
  }

  .customer-avatar-large {
    width: 58px;
    height: 58px;
    font-size: 1.15rem;
  }

  .customer-app-hero h1 {
    font-size: 1.45rem;
  }

  .customer-app-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customer-app-hero-stats span,
  .customer-order-filter-strip span {
    padding: 10px;
    border-radius: 16px;
  }

  .customer-app-hero-stats strong,
  .customer-order-filter-strip strong {
    font-size: .96rem;
  }

  .customer-app-shortcuts {
    border-radius: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-app-shortcuts a {
    min-height: 90px;
  }

  .customer-panel-card,
  .customer-orders-app-head,
  .customer-order-filter-strip,
  .customer-order-card-app {
    border-radius: 24px;
  }

  .customer-address-list-app,
  .customer-auth-grid-2,
  .customer-order-metrics {
    grid-template-columns: 1fr;
  }

  .customer-orders-actions {
    display: none;
  }

  .customer-orders-app-head {
    padding: 18px;
  }

  .customer-orders-app-head h1 {
    font-size: 1.75rem;
  }

  .customer-order-filter-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customer-order-card-app {
    padding: 16px;
  }

  .customer-order-top {
    flex-direction: row;
    align-items: flex-start;
  }

  .customer-order-status {
    white-space: normal;
    text-align: center;
  }

  .customer-bottom-nav {
    display: grid;
  }
}

@media (max-width: 420px) {
  .customer-app-main {
    padding-left: 10px;
    padding-right: 10px;
  }
  .customer-mobile-titlebar,
  .customer-app-hero {
    margin-left: -10px;
    margin-right: -10px;
  }
  .customer-app-shortcuts {
    gap: 8px;
  }
  .customer-bottom-nav {
    left: 8px;
    right: 8px;
    border-radius: 21px;
  }
  .customer-bottom-nav a {
    min-height: 50px;
  }
}

/* Meus pedidos: itens do pedido em estilo e-commerce/app */
.customer-order-items-premium {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(7, 130, 130, .18);
}

.customer-order-product {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(7, 130, 130, .10);
  color: #063d3d;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.customer-order-product:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 130, 130, .24);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 30px rgba(5, 72, 72, .08);
}

.customer-order-product-thumb {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(7, 130, 130, .11);
  box-shadow: 0 8px 20px rgba(5, 72, 72, .06);
}

.customer-order-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.customer-order-product-body {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.customer-order-product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #173d3f;
  font-size: .98rem;
  font-weight: 950;
  line-height: 1.23;
}

.customer-order-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.customer-order-product-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(7, 130, 130, .08);
  color: #587272;
  font-size: .72rem;
  font-weight: 900;
}

.customer-order-product-total {
  color: #063d3d;
  font-size: .98rem;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .customer-order-items-premium {
    gap: 9px;
    padding-top: 12px;
  }

  .customer-order-product {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 11px;
    padding: 10px;
    border-radius: 18px;
  }

  .customer-order-product-thumb {
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }

  .customer-order-product-name {
    font-size: .91rem;
    line-height: 1.24;
  }

  .customer-order-product-meta small {
    min-height: 22px;
    padding: 3px 8px;
    font-size: .68rem;
  }

  .customer-order-product-total {
    grid-column: 2;
    justify-self: start;
    font-size: .92rem;
  }
}

/* Ajuste compacto: Meus pedidos - economiza espaço no miolo do produto */
.customer-orders-list-app {
  gap: 10px;
}

.customer-order-card-app {
  padding: 14px 16px;
  border-radius: 22px;
}

.customer-order-card-app .customer-order-top {
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(7, 130, 130, .10);
}

.customer-order-card-app .customer-order-top strong {
  font-size: .98rem;
  line-height: 1.15;
}

.customer-order-card-app .customer-order-top span:not(.customer-order-status) {
  font-size: .8rem;
}

.customer-order-card-app .customer-order-status {
  min-height: 26px;
  padding: 0 10px;
  font-size: .72rem;
}

.customer-order-card-app .customer-order-metrics {
  gap: 8px;
  margin: 10px 0 8px;
}

.customer-order-card-app .customer-order-metrics span {
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 14px;
}

.customer-order-card-app .customer-order-metrics small {
  font-size: .68rem;
  line-height: 1.1;
}

.customer-order-card-app .customer-order-metrics strong {
  font-size: .9rem;
  line-height: 1.1;
}

.customer-order-items-premium {
  gap: 0;
  padding-top: 8px;
  border-top: 0;
}

.customer-order-product {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .52);
  box-shadow: none;
}

.customer-order-product + .customer-order-product {
  margin-top: 6px;
}

.customer-order-product-thumb {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  box-shadow: none;
}

.customer-order-product-thumb img {
  padding: 3px;
}

.customer-order-product-body {
  gap: 4px;
}

.customer-order-product-name {
  font-size: .9rem;
  line-height: 1.16;
  -webkit-line-clamp: 2;
}

.customer-order-product-meta {
  gap: 4px;
}

.customer-order-product-meta small {
  min-height: 18px;
  padding: 2px 7px;
  font-size: .64rem;
  line-height: 1;
}

.customer-order-product-total {
  font-size: .9rem;
}

@media (max-width: 820px) {
  .customer-order-card-app {
    padding: 12px;
    border-radius: 18px;
  }

  .customer-order-card-app .customer-order-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 8px 0 6px;
  }

  .customer-order-card-app .customer-order-metrics span {
    min-height: 40px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  .customer-order-product {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 14px;
  }

  .customer-order-product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .customer-order-product-name {
    font-size: .84rem;
    line-height: 1.16;
  }

  .customer-order-product-meta small {
    min-height: 17px;
    padding: 2px 6px;
    font-size: .6rem;
  }

  .customer-order-product-total {
    grid-column: auto;
    justify-self: end;
    align-self: center;
    font-size: .82rem;
  }
}

@media (max-width: 520px) {
  .customer-order-product {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .customer-order-product-thumb {
    width: 46px;
    height: 46px;
  }

  .customer-order-product-total {
    grid-column: 2;
    justify-self: start;
    margin-top: -2px;
  }
}

.customer-cep-status {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(4, 54, 54, 0.68);
}
.customer-cep-status.is-ok { color: #078282; }
.customer-cep-status.is-error { color: #9f1d1d; }
.customer-cep-status.is-loading { color: #836013; }

.customer-address-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.customer-address-title-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(7, 130, 130, .13);
  color: #066262;
  font-weight: 900;
  font-size: .72rem;
  white-space: nowrap;
}

.customer-address-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 130, 130, .12);
}

.customer-address-actions form {
  margin: 0;
}

.customer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #078282;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  padding: 3px 0;
  cursor: pointer;
  text-decoration: none;
}

.customer-link-button:hover {
  color: #044f4f;
  text-decoration: underline;
}

.customer-link-danger {
  color: #9b2d2d;
}

.customer-address-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 12px;
}

.customer-address-form-head strong {
  color: #063d3d;
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .customer-address-actions {
    justify-content: flex-start;
    gap: 14px;
  }
}

/* Área da cliente - endereços refinados */
.customer-address-list-app {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 14px 0 18px;
}

.customer-address-list-app .customer-address-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 16px 16px 12px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(7,130,130,.055));
  border: 1px solid rgba(7, 130, 130, .17);
  box-shadow: 0 12px 30px rgba(4, 54, 54, .045);
}

.customer-address-title-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.customer-address-title-main strong {
  display: block;
  color: #063d3d;
  font-size: 1.02rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-address-title-main .customer-address-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(7, 130, 130, .12);
  color: #066262;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-address-text {
  margin: 9px 0 0 !important;
  color: rgba(4, 54, 54, .76);
  font-size: .92rem;
  line-height: 1.42;
}

.customer-address-list-app .customer-address-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(7, 130, 130, .10);
}

.customer-address-list-app .customer-address-actions form {
  margin: 0;
}

.customer-address-action {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid rgba(7, 130, 130, .18);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255,255,255,.92);
  color: #066262;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
}

.customer-address-action:hover {
  background: rgba(7, 130, 130, .09);
  color: #044f4f;
  text-decoration: none;
}

.customer-address-action.is-main {
  background: rgba(7, 130, 130, .10);
}

.customer-address-action.is-danger {
  border-color: rgba(155, 45, 45, .18);
  color: #9b2d2d;
  background: rgba(155, 45, 45, .055);
}

.customer-address-action.is-danger:hover {
  background: rgba(155, 45, 45, .10);
}

@media (max-width: 760px) {
  .customer-address-list-app {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .customer-address-list-app .customer-address-item {
    min-height: auto;
    padding: 14px;
    border-radius: 19px;
  }

  .customer-address-list-app .customer-address-actions {
    justify-content: flex-start;
    gap: 7px;
  }

  .customer-address-action {
    min-height: 30px;
    padding: 0 11px;
    font-size: .74rem;
  }
}

/* Lupa real na página individual do produto - desktop */
.product-detail-zoom {
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}

.product-detail-zoom img,
.product-detail-zoom:hover img {
  transform: none !important;
}

.product-zoom-lens {
  position: absolute;
  z-index: 5;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.94);
  background-color: #fff;
  background-repeat: no-repeat;
  border: 2px solid rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(7,31,33,.20), 0 0 0 1px rgba(7,130,130,.18);
  transition: opacity .12s ease, transform .12s ease;
}

.product-detail-zoom.is-lens-active .product-zoom-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .product-detail-zoom {
    cursor: default;
  }

  .product-zoom-lens {
    display: none !important;
  }
}

.cart-total-line-muted strong {
  font-size: .86rem;
  color: rgba(20, 31, 35, .58);
  font-weight: 700;
  text-align: right;
}
.payment-result-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 18px 72px;
}
.payment-result-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 167, 157, .14);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(21, 53, 58, .12);
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
}
.payment-result-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}
.payment-result-card p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: rgba(20, 31, 35, .68);
  font-size: 1.02rem;
}
.payment-result-order {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(7, 167, 157, .08);
  border: 1px solid rgba(7, 167, 157, .16);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 24px;
}
.payment-result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .payment-result-actions .btn-public { width: 100%; }
}


/* Área da cliente: pagamento pendente em Meus pedidos */
.customer-order-pay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 8px;
    padding: 10px 12px;
    border: 1px solid rgba(9, 83, 87, .12);
    border-radius: 16px;
    background: rgba(228, 245, 243, .55);
}
.customer-order-pay-row form {
    margin: 0;
}
.customer-order-pay-row small {
    color: rgba(8, 50, 54, .72);
    font-weight: 700;
}
.customer-order-pay-btn {
    min-height: 38px;
    padding: 0 18px;
    white-space: nowrap;
}
@media (max-width: 720px) {
    .customer-order-pay-row {
        align-items: stretch;
        flex-direction: column;
    }
    .customer-order-pay-btn {
        width: 100%;
    }
}

/* Área da cliente: ações de pagamento/cancelamento do pedido */
.customer-order-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.customer-order-action-row form {
  margin: 0;
}
.customer-order-cancel-btn {
  min-height: 42px;
}
@media (max-width: 720px) {
  .customer-order-action-row {
    align-items: stretch;
  }
  .customer-order-action-row form,
  .customer-order-action-row button {
    width: 100%;
  }
}

.cart-customer-login-required {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  background: rgba(212, 171, 76, .14);
  border: 1px solid rgba(212, 171, 76, .25);
}

.cart-customer-login-required strong {
  color: #063d3d;
}

.cart-customer-login-required span {
  color: #526b6b;
  font-size: .9rem;
}

/* Checkout frete Correios + status do pedido */
.cart-total-final {
  margin-top: .35rem;
  border-top: 1px solid rgba(0, 121, 118, .14);
  padding-top: .65rem;
}
.cart-total-final strong {
  font-size: 1.18rem;
}
.cart-saved-address-box {
  display: grid;
  gap: .55rem;
  padding: .85rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 137, 133, .10), rgba(255,255,255,.92));
  border: 1px solid rgba(0, 137, 133, .18);
  margin-bottom: .85rem;
}
.cart-saved-address-box strong {
  color: #063f42;
  font-size: .9rem;
}
.cart-saved-address-box select {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 104, 102, .18);
  background: #fff;
  color: #073b3e;
  font-weight: 700;
  padding: .65rem .75rem;
}
.cart-freight-quote {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: .25rem;
  padding: .75rem;
  border-radius: 18px;
  background: rgba(240, 251, 250, .9);
  border: 1px dashed rgba(0, 137, 133, .28);
}
.cart-freight-calc-btn {
  min-height: 40px;
  padding-inline: 1rem;
}
.cart-freight-result {
  flex: 1 1 220px;
  font-size: .86rem;
  font-weight: 800;
  color: #4f6668;
}
.cart-freight-result.is-loading { color: #9a6a00; }
.cart-freight-result.is-ok { color: #05756f; }
.cart-freight-result.is-error { color: #9a1515; }
.order-status-thermometer {
  --order-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .35rem;
  margin: .9rem 0 .75rem;
  padding: .85rem .55rem .55rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(239, 252, 251, .96), rgba(255, 255, 255, .92));
  border: 1px solid rgba(0, 121, 118, .14);
  overflow: hidden;
}
.order-status-thermometer::before,
.order-status-thermometer::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 29px;
  height: 5px;
  border-radius: 999px;
  background: rgba(6, 63, 66, .10);
}
.order-status-thermometer::after {
  right: auto;
  width: calc(var(--order-progress) * .82);
  background: linear-gradient(90deg, #098a84, #d7b56d);
  box-shadow: 0 0 18px rgba(9, 138, 132, .35);
}
.order-status-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: .4rem;
  text-align: center;
  color: #6b7f82;
  font-weight: 800;
}
.order-status-step i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #eef7f7;
  border: 2px solid #d7eceb;
  color: #527174;
  font-style: normal;
  font-size: .75rem;
}
.order-status-step small {
  max-width: 96px;
  font-size: .67rem;
  line-height: 1.12;
}
.order-status-step.is-done i {
  background: #098a84;
  border-color: #098a84;
  color: #fff;
}
.order-status-step.is-current i {
  background: #fff;
  border-color: #d7b56d;
  color: #063f42;
  animation: divasPulseStatus 1.35s ease-in-out infinite;
  box-shadow: 0 0 0 8px rgba(215,181,109,.16);
}
.order-status-step.is-current small {
  color: #063f42;
}
.order-tracking-code {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  background: rgba(215,181,109,.16);
  color: #063f42;
  padding: .45rem .75rem;
  font-size: .78rem;
  font-weight: 800;
}
@keyframes divasPulseStatus {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(215,181,109,.14); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(215,181,109,.06); }
}
@media (max-width: 720px) {
  .cart-freight-quote { display: grid; }
  .cart-freight-calc-btn { width: 100%; }
  .order-status-thermometer { grid-template-columns: 1fr; padding: .8rem; }
  .order-status-thermometer::before,
  .order-status-thermometer::after { display: none; }
  .order-status-step { grid-template-columns: 30px 1fr; justify-items: start; text-align: left; }
  .order-status-step small { max-width: none; font-size: .78rem; }
}


.freight-options-title {
  display: block;
  margin-bottom: .55rem;
  color: #07383a;
  font-size: .88rem;
}
.freight-option-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .65rem;
  align-items: center;
  width: 100%;
  padding: .72rem .78rem;
  margin-top: .45rem;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0, 137, 133, .18);
  box-shadow: 0 10px 24px rgba(4, 44, 47, .06);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.freight-option-card:hover,
.freight-option-card.is-selected {
  transform: translateY(-1px);
  border-color: rgba(0, 137, 133, .48);
  box-shadow: 0 14px 30px rgba(0, 137, 133, .12);
}
.freight-option-card input { accent-color: #008985; }
.freight-option-body { display: grid; gap: .15rem; min-width: 0; }
.freight-option-body b { color: #07383a; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.freight-option-body small { color: #647b7e; font-size: .76rem; font-weight: 800; }
.freight-option-price { color: #07383a; font-size: .96rem; }

/* Checkout público V8 - fluxo único, sem sidebar pesada */
.checkout-page-v8 {
  width: min(100% - 28px, 1180px);
}
.checkout-hero-v8 h1 {
  max-width: 760px;
}
.checkout-countdown-v8 {
  margin-top: 14px;
}
.checkout-unified-form-v8 {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.checkout-value-strip-v8 {
  position: sticky;
  top: 82px;
  z-index: 15;
  display: grid;
  grid-template-columns: .55fr 1fr 1fr 1.15fr;
  gap: 10px;
  align-items: stretch;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(7, 130, 130, .16);
  box-shadow: 0 18px 38px rgba(4, 44, 47, .10);
  backdrop-filter: blur(14px) saturate(135%);
}
.checkout-value-strip-v8 > div {
  min-width: 0;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 10px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(241, 253, 252, .88), rgba(255,255,255,.82));
  border: 1px solid rgba(7, 130, 130, .08);
}
.checkout-value-strip-v8 small,
.checkout-final-values-v8 span {
  color: #668083;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-value-strip-v8 strong {
  color: #07383a;
  font-size: clamp(15px, 1.2vw, 21px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-value-total-v8 {
  background: linear-gradient(135deg, rgba(0, 137, 133, .15), rgba(215, 181, 109, .14)) !important;
}
.checkout-value-total-v8 strong {
  font-size: clamp(18px, 1.55vw, 26px);
}
.checkout-flow-v8 {
  display: grid;
  gap: 14px;
}
.checkout-panel-v8 {
  padding: clamp(16px, 2.1vw, 24px);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7, 130, 130, .13);
  box-shadow: 0 14px 34px rgba(4, 44, 47, .075);
}
.checkout-section-title-v8 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.checkout-section-title-v8 > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #008985, #0aa6a0);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(0,137,133,.20);
}
.checkout-section-title-v8 h2 {
  margin: 0;
  color: #07383a;
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: -.035em;
}
.checkout-section-title-v8 p {
  margin: 2px 0 0;
  color: #6a7f82;
  line-height: 1.35;
  font-size: 13px;
}
.checkout-items-compact-v8 {
  gap: 10px;
}
.checkout-item-row-v8 {
  grid-template-columns: 76px minmax(0, 1fr) auto;
  padding: 10px 12px;
  border-radius: 20px;
  box-shadow: none;
}
.checkout-item-row-v8 .cart-item-image {
  width: 76px;
  height: 76px;
  border-radius: 16px;
}
.checkout-item-row-v8 .cart-item-info strong {
  font-size: 15px;
}
.checkout-item-row-v8 .cart-item-info small {
  margin-top: 3px;
  font-size: 12px;
}
.checkout-grid-v8 {
  display: grid;
  gap: 10px;
}
.checkout-grid-3-v8 {
  grid-template-columns: 1.1fr .75fr 1fr;
}
.checkout-grid-address-v8 {
  grid-template-columns: 150px minmax(170px, .65fr) minmax(0, 1.35fr) 115px minmax(170px, .8fr);
  align-items: end;
}
.checkout-street-field-v8 {
  grid-column: span 2;
}
.checkout-cep-status-v8 {
  min-height: 48px;
}
.checkout-saved-address-v8 {
  margin: 0 0 12px;
}
.checkout-login-state-v8 {
  margin-bottom: 12px;
}
.checkout-freight-v8 {
  margin-top: 12px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(240,251,250,.95), rgba(255,255,255,.88));
}
.checkout-freight-v8 .cart-freight-result {
  flex-basis: 380px;
}
.checkout-final-box-v8 {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(320px, 1.1fr);
  gap: 14px;
  align-items: stretch;
}
.checkout-final-values-v8 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.checkout-final-values-v8 > div {
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(240,251,250,.86);
  border: 1px solid rgba(7,130,130,.11);
}
.checkout-final-values-v8 strong {
  color: #07383a;
  font-size: 18px;
}
.checkout-final-total-v8 {
  background: linear-gradient(135deg, rgba(0,137,133,.15), rgba(215,181,109,.18)) !important;
}
.checkout-final-total-v8 strong {
  font-size: 23px;
}
.checkout-note-v8 textarea {
  min-height: 82px;
  resize: vertical;
}
.checkout-actions-v8 {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(220px, .72fr);
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.checkout-actions-v8 .btn-public {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}
.checkout-pay-button-v8 {
  font-size: 16px;
}
.checkout-whatsapp-button-v8 {
  background: rgba(255,255,255,.82);
}
.checkout-page-v8 .cart-checkout-form label {
  min-width: 0;
}
.checkout-page-v8 .cart-checkout-form input,
.checkout-page-v8 .cart-checkout-form textarea,
.checkout-page-v8 .cart-checkout-form select {
  min-height: 44px;
}
.checkout-page-v8 .freight-option-card {
  max-width: 100%;
}

@media (max-width: 960px) {
  .checkout-value-strip-v8 {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .checkout-grid-3-v8,
  .checkout-grid-address-v8,
  .checkout-final-box-v8,
  .checkout-final-values-v8,
  .checkout-actions-v8 {
    grid-template-columns: 1fr;
  }
  .checkout-street-field-v8 {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .checkout-page-v8 {
    width: min(100% - 18px, 1180px);
  }
  .checkout-hero-v8 p {
    display: none;
  }
  .checkout-value-strip-v8 {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 8px;
    border-radius: 20px;
  }
  .checkout-value-strip-v8 > div {
    padding: 9px 10px;
    border-radius: 15px;
  }
  .checkout-value-strip-v8 small {
    font-size: 9.5px;
  }
  .checkout-value-strip-v8 strong {
    font-size: 14px;
  }
  .checkout-value-total-v8 strong {
    font-size: 18px;
  }
  .checkout-panel-v8 {
    padding: 14px;
    border-radius: 22px;
  }
  .checkout-section-title-v8 {
    gap: 10px;
    margin-bottom: 11px;
  }
  .checkout-section-title-v8 > span {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .checkout-section-title-v8 h2 {
    font-size: 20px;
  }
  .checkout-section-title-v8 p {
    font-size: 12px;
  }
  .checkout-item-row-v8 {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }
  .checkout-item-row-v8 .cart-item-image {
    width: 64px;
    height: 64px;
  }
  .checkout-item-row-v8 .cart-item-price {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .checkout-final-values-v8 > div {
    padding: 12px;
  }
}


/* Checkout V9 - resumo superior removido do fluxo; proteção contra cache antigo */
.checkout-value-strip-v8 {
  position: static;
  top: auto;
}

.order-tracking-code a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(7,130,130,.10);
  color: #056f6f;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.order-tracking-code a:hover {
  background: rgba(7,130,130,.18);
}
@media (max-width: 560px) {
  .order-tracking-code a {
    margin: 7px 0 0;
    width: 100%;
  }
}

/* Checkout - cupom de desconto V15 */
.checkout-advantage-box-v15{border:1px solid rgba(129,216,208,.35);background:linear-gradient(135deg,rgba(129,216,208,.12),rgba(255,255,255,.92));border-radius:18px;padding:14px;margin-bottom:14px}
.checkout-advantage-box-v15 label{display:block;margin:0}
.checkout-advantage-box-v15 label>span{display:block;font-weight:800;color:#233;margin-bottom:8px;font-size:.92rem}
.checkout-advantage-row-v15{display:grid;grid-template-columns:1fr auto;gap:8px;align-items:center}
.checkout-advantage-row-v15 input{text-transform:uppercase;font-weight:800;letter-spacing:.06em}
.checkout-advantage-status-v15{font-size:.84rem;color:#60706f;margin-top:8px}
.checkout-advantage-status-v15.is-ok{color:#0f766e;font-weight:800}
.checkout-advantage-status-v15.is-error{color:#b42318;font-weight:800}
.checkout-advantage-status-v15.is-loading{color:#8a6d1d;font-weight:800}
.checkout-final-values-v8 [data-discount-row] strong{color:#0f766e}
@media(max-width:640px){.checkout-advantage-row-v15{grid-template-columns:1fr}.checkout-advantage-row-v15 .btn-public{width:100%}}

/* Public V18 - responsividade para desktop compacto/notebook baixo
   Alvo: 1300x760 / 1366x768 sem afetar desktop grande 1920x1080. */
@media (min-width: 981px) and (max-width: 1450px), (min-width: 981px) and (max-height: 820px) {
  :root {
    --container: min(1240px, calc(100% - 32px));
    --radius-xl: 30px;
    --radius-lg: 24px;
  }

  .top-ribbon {
    min-height: 24px !important;
    padding: 5px 14px !important;
    gap: clamp(20px, 4vw, 52px) !important;
    font-size: 9px !important;
    letter-spacing: .11em !important;
  }

  .site-header {
    top: 7px !important;
    min-height: 56px !important;
    margin-top: 8px !important;
    padding: 7px 9px 7px 15px !important;
    gap: 7px !important;
    box-shadow: 0 8px 22px rgba(7,31,33,.075) !important;
  }

  .site-brand {
    width: 126px !important;
    gap: 8px !important;
  }

  .site-brand img {
    width: 116px !important;
    max-height: 46px !important;
  }

  .site-brand-with-customer {
    width: clamp(178px, 16vw, 230px) !important;
  }

  .site-customer-welcome {
    padding-left: 8px !important;
  }

  .site-customer-welcome small {
    font-size: 7.5px !important;
  }

  .site-customer-welcome strong {
    max-width: 86px !important;
    font-size: 11px !important;
  }

  .site-nav {
    gap: 1px !important;
  }

  .site-nav a {
    padding: 8px 9px !important;
    font-size: 10.5px !important;
  }

  .site-nav .site-nav-whatsapp {
    padding-inline: 13px !important;
  }

  .site-header-actions {
    gap: 5px !important;
  }

  .site-account-button,
  .site-register-button,
  .site-cart-button {
    min-height: 38px !important;
    height: 38px !important;
    padding-inline: 10px !important;
    font-size: 11px !important;
  }

  .site-account-button svg,
  .site-cart-button svg {
    width: 19px !important;
    height: 19px !important;
  }

  main {
    padding-top: 0 !important;
  }

  .home-hero {
    min-height: 352px !important;
    margin-top: 14px !important;
    padding: 24px 30px 22px !important;
    grid-template-columns: minmax(0, .92fr) minmax(340px, .88fr) !important;
    gap: 24px !important;
    border-radius: 30px !important;
  }

  .home-hero::before,
  .home-hero::after {
    transform: scale(.72) !important;
    opacity: .65 !important;
  }

  .eyebrow {
    font-size: 8.8px !important;
    gap: 8px !important;
  }

  .hero-copy h1,
  .catalog-hero h1,
  .story-hero h1,
  .not-found-public h1 {
    margin: 11px 0 !important;
    font-size: clamp(36px, 3.6vw, 50px) !important;
    line-height: .98 !important;
  }

  .hero-copy p,
  .catalog-hero p,
  .story-hero p,
  .not-found-public p,
  .product-lead {
    font-size: 13px !important;
    line-height: 1.48 !important;
  }

  .brand-slogan-text {
    margin-top: 10px !important;
    padding: 7px 11px !important;
    font-size: 15px !important;
  }

  .hero-actions {
    margin-top: 14px !important;
    gap: 9px !important;
  }

  .btn-public {
    min-height: 38px !important;
    padding: 9px 15px !important;
    font-size: 11.5px !important;
  }

  .hero-gallery {
    min-height: 330px !important;
  }

  .hero-tile {
    border-radius: 24px !important;
    box-shadow: 0 14px 34px rgba(7,130,130,.12) !important;
  }

  .hero-tile span {
    padding: 7px 10px !important;
    font-size: 10px !important;
  }

  .hero-tile-1 { width: 40% !important; left: 4% !important; top: 6% !important; }
  .hero-tile-2 { width: 32% !important; right: 8% !important; top: 12% !important; }
  .hero-tile-3 { width: 31% !important; left: 20% !important; bottom: 5% !important; }
  .hero-tile-4 { width: 24% !important; right: 18% !important; bottom: 6% !important; }

  .brand-benefits {
    margin: 14px 0 !important;
    gap: 10px !important;
  }

  .brand-benefits div {
    padding: 14px 18px !important;
    border-radius: 20px !important;
  }

  .brand-benefits strong {
    font-size: 13px !important;
  }

  .brand-benefits span {
    margin-top: 3px !important;
    font-size: 11.5px !important;
  }

  .customer-access-strip,
  .section-block,
  .catalog-page,
  .product-description-section,
  .story-preview,
  .values-section,
  .story-cta,
  .not-found-public,
  .catalog-hero,
  .story-hero,
  .story-layout {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
    padding: 18px 22px !important;
    border-radius: 26px !important;
  }

  .section-head {
    margin-bottom: 12px !important;
  }

  .section-head h2,
  .promo-copy h2,
  .story-preview h2,
  .customer-panel-card h2 {
    font-size: clamp(24px, 2vw, 32px) !important;
    line-height: 1.05 !important;
  }

  .category-flow {
    gap: 8px !important;
  }

  .category-chip {
    min-height: 40px !important;
    padding: 9px 12px !important;
    border-radius: 16px !important;
  }

  .category-chip span {
    font-size: 12px !important;
  }

  .category-chip small {
    font-size: 10px !important;
  }

  .showcase-block {
    padding: 20px 24px 22px !important;
  }

  .product-grid.product-grid-home.home-products-carousel {
    padding-bottom: 8px !important;
  }

  .product-grid.product-grid-home.home-products-carousel {
    grid-auto-columns: calc((100% - 48px) / 5) !important;
  }

  .product-grid.product-grid-home .product-card-image img {
    aspect-ratio: 1 / 1.02 !important;
  }

  .product-grid.product-grid-home .product-title,
  .catalog-product-grid .product-title {
    min-height: 30px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .product-grid.product-grid-home .product-card-bottom,
  .catalog-product-grid .product-card-bottom {
    margin-top: 6px !important;
    gap: 7px !important;
  }

  .product-grid.product-grid-home .product-card-bottom strong,
  .catalog-product-grid .product-card-bottom strong {
    font-size: 14px !important;
  }

  .product-grid.product-grid-home .product-card-bottom a,
  .product-grid.product-grid-home button,
  .catalog-product-grid .product-card-bottom a,
  .catalog-product-grid button {
    min-height: 32px !important;
    padding: 7px 11px !important;
    font-size: 10.8px !important;
  }

  .promo-runway,
  .slogan-strip {
    margin: 18px 0 !important;
    padding: 22px 24px !important;
    border-radius: 28px !important;
    gap: 20px !important;
  }

  .promo-stack img {
    aspect-ratio: 1 / 1 !important;
  }

  .story-preview {
    grid-template-columns: .62fr 1fr auto !important;
    gap: 16px !important;
  }

  .catalog-hero {
    padding: 18px 24px !important;
  }

  .catalog-hero h1 {
    margin: 8px 0 !important;
  }

  .catalog-page-v6 {
    padding: 18px !important;
  }

  .catalog-layout-v6 {
    grid-template-columns: minmax(168px, 198px) minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .catalog-sidebar-card-v6 {
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .catalog-sidebar-kicker-v6 {
    margin-bottom: 5px !important;
    font-size: 8px !important;
  }

  .catalog-sidebar-card-v6 h2 {
    margin-bottom: 10px !important;
    font-size: 18px !important;
  }

  .catalog-sidebar-list-v6 {
    gap: 5px !important;
  }

  .catalog-sidebar-link-v6 {
    min-height: 34px !important;
    padding: 7px 9px !important;
    border-radius: 13px !important;
  }

  .catalog-sidebar-link-v6 span {
    font-size: 11px !important;
  }

  .catalog-sidebar-link-v6 small {
    padding: 3px 6px !important;
    font-size: 8.5px !important;
  }

  .catalog-toolbar-v6 {
    margin-bottom: 10px !important;
    gap: 8px !important;
    grid-template-columns: minmax(180px, 1fr) minmax(130px, 160px) auto auto !important;
  }

  .catalog-toolbar-v6 input,
  .catalog-toolbar-v6 select,
  .catalog-toolbar-v6 button,
  .catalog-toolbar-v6 > a {
    min-height: 36px !important;
    font-size: 11px !important;
  }

  .catalog-result-head-v6 {
    margin: 8px 0 12px !important;
    padding-bottom: 7px !important;
    font-size: 11px !important;
  }

  .catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px 16px !important;
  }

  .catalog-product-grid .product-card-image {
    border-radius: 20px !important;
  }

  .catalog-product-grid .product-card-image img {
    aspect-ratio: 1 / 1.02 !important;
  }

  .catalog-product-grid .product-card-info {
    padding-top: 8px !important;
  }

  .catalog-product-grid .product-category {
    margin-bottom: 3px !important;
    font-size: 8.8px !important;
  }

  .catalog-product-grid .quick-view-label {
    bottom: 9px !important;
    left: 9px !important;
    right: 9px !important;
    padding: 8px !important;
    font-size: 10px !important;
  }

  .pagination-public {
    margin-top: 18px !important;
    gap: 6px !important;
  }

  .pagination-public a {
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: 11px !important;
  }

  .product-detail-desktop-grid {
    width: min(1180px, 100%) !important;
    margin: 16px auto 14px !important;
    grid-template-columns: minmax(0, 2.05fr) minmax(260px, .95fr) !important;
    gap: 10px !important;
  }

  .product-detail-desktop-grid .product-detail-shell {
    padding: 14px 18px !important;
    grid-template-columns: minmax(230px, 290px) minmax(0, 1fr) !important;
    gap: 18px !important;
    border-radius: 24px 0 0 24px !important;
  }

  .product-detail-desktop-grid .product-detail-image img {
    max-height: 315px !important;
  }

  .product-detail-desktop-grid .product-detail-info h1 {
    margin: 8px 0 !important;
    font-size: clamp(23px, 1.65vw, 30px) !important;
  }

  .product-detail-desktop-grid .product-lead {
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  .product-detail-desktop-grid .product-price-line {
    margin: 9px 0 !important;
    padding: 9px 0 !important;
  }

  .product-detail-desktop-grid .product-price-line strong {
    font-size: 24px !important;
  }

  .product-description-aside {
    padding: 18px 20px !important;
    border-radius: 0 24px 24px 0 !important;
    gap: 10px !important;
  }

  .product-description-aside h2 {
    margin-top: 4px !important;
    font-size: 24px !important;
  }

  .product-description-aside .product-description-text {
    max-height: 300px !important;
    font-size: 12.5px !important;
    line-height: 1.55 !important;
  }

  .product-detail-meta {
    margin-top: 10px !important;
  }

  .product-detail-meta div {
    padding: 8px 9px !important;
  }

  .product-slogan-note {
    display: none !important;
  }

  .cart-page-shell {
    width: min(1120px, calc(100% - 28px)) !important;
    margin: 18px auto 34px !important;
  }

  .cart-page-head {
    padding: 20px 24px !important;
    border-radius: 28px !important;
  }

  .cart-page-head h1 {
    margin-top: 6px !important;
    font-size: clamp(32px, 3.4vw, 48px) !important;
  }

  .cart-layout,
  .checkout-flow-v8 {
    margin-top: 14px !important;
    gap: 14px !important;
  }

  .cart-item-card,
  .checkout-panel-v8 {
    padding: 12px !important;
    border-radius: 22px !important;
  }

  .cart-item-image,
  .checkout-item-row-v8 .cart-item-image {
    width: 72px !important;
    height: 72px !important;
    border-radius: 16px !important;
  }

  .checkout-section-title-v8 {
    margin-bottom: 10px !important;
  }

  .checkout-section-title-v8 h2 {
    font-size: 20px !important;
  }

  .checkout-grid-v8,
  .checkout-form-grid-v8 {
    gap: 10px !important;
  }

  .checkout-field-v8 input,
  .checkout-field-v8 select,
  .checkout-field-v8 textarea,
  .cart-checkout-form input,
  .cart-checkout-form textarea {
    min-height: 40px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }

  .checkout-final-values-v8 > div {
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }

  .customer-app-shell {
    width: var(--container) !important;
    margin: 18px auto 36px !important;
    grid-template-columns: 220px minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  .customer-app-sidebar {
    top: 78px !important;
    padding: 12px !important;
    border-radius: 24px !important;
  }

  .customer-sidebar-profile {
    padding: 6px 6px 12px !important;
    margin-bottom: 8px !important;
  }

  .customer-avatar {
    width: 38px !important;
    height: 38px !important;
  }

  .customer-side-nav {
    gap: 4px !important;
  }

  .customer-side-nav a {
    min-height: 36px !important;
    padding: 0 10px !important;
    border-radius: 13px !important;
    font-size: 12px !important;
  }

  .customer-app-main {
    gap: 12px !important;
  }

  .customer-app-hero,
  .customer-app-shortcuts,
  .customer-panel-card,
  .customer-orders-app-head,
  .customer-order-filter-strip,
  .customer-order-card-app,
  .customer-order-card {
    border-radius: 22px !important;
  }

  .customer-app-hero {
    padding: 16px 18px !important;
    gap: 14px !important;
  }

  .customer-avatar-large {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.1rem !important;
  }

  .customer-app-hero h1 {
    margin: 2px 0 4px !important;
    font-size: clamp(1.45rem, 2.2vw, 2rem) !important;
  }

  .customer-app-hero p {
    font-size: 12px !important;
  }

  .customer-app-hero-stats {
    min-width: min(330px, 46%) !important;
    gap: 7px !important;
  }

  .customer-app-hero-stats span,
  .customer-order-filter-strip span {
    padding: 9px 10px !important;
    border-radius: 15px !important;
  }

  .customer-app-shortcuts {
    padding: 9px !important;
    gap: 8px !important;
  }

  .customer-app-shortcuts a {
    min-height: 68px !important;
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .customer-app-shortcuts span {
    font-size: 1.05rem !important;
  }

  .customer-app-shortcuts strong {
    font-size: 12px !important;
  }

  .customer-app-shortcuts small {
    font-size: 10.5px !important;
  }

  .customer-panel-card,
  .customer-account-card,
  .customer-orders-app-head,
  .customer-order-card {
    padding: 14px 16px !important;
  }

  .customer-app-layout-grid {
    gap: 12px !important;
  }

  .customer-mini-order,
  .customer-address-featured,
  .customer-empty-mini,
  .customer-address-item {
    padding: 11px 12px !important;
    border-radius: 16px !important;
  }

  .customer-auth-form {
    gap: 10px !important;
    margin-top: 12px !important;
  }

  .customer-auth-form input:not([type="checkbox"]),
  .customer-auth-form select,
  .customer-auth-form textarea {
    min-height: 40px !important;
    border-radius: 14px !important;
    padding: 0 12px !important;
  }

  .site-footer {
    margin-top: 20px !important;
  }

  .floating-whatsapp {
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 11.5px !important;
  }
}

/* Public v23 - carrossel: setas laterais visíveis sem barra inferior */
@media (min-width: 981px) {
  .home-carousel-wrap {
    overflow: visible !important;
    padding-inline: 36px !important;
    margin-inline: -36px !important;
  }

  .product-grid.product-grid-home.home-products-carousel {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .product-grid.product-grid-home.home-products-carousel::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }

  .home-carousel-nav {
    z-index: 12 !important;
    top: 43% !important;
    transform: translateY(-50%) !important;
  }

  .home-carousel-nav:hover {
    transform: translateY(-50%) scale(1.04) !important;
  }

  .home-carousel-prev {
    left: 10px !important;
  }

  .home-carousel-next {
    right: 10px !important;
  }
}

@media (min-width: 981px) and (max-width: 1450px), (max-height: 820px) {
  .home-carousel-wrap {
    padding-inline: 30px !important;
    margin-inline: -30px !important;
  }

  .home-carousel-nav {
    width: 34px !important;
    height: 34px !important;
    font-size: 26px !important;
  }

  .home-carousel-prev {
    left: 8px !important;
  }

  .home-carousel-next {
    right: 8px !important;
  }
}
