:root {
  --bg: #05030a;
  --bg2: #0d0715;
  --panel: #13091f;
  --panel2: #180d29;
  --purple: #6422e8;
  --purple2: #9b5cff;
  --purple3: #c6a2ff;
  --white: #fff;
  --muted: #bbb4cc;
  --muted2: #827895;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 28px;
  --green: #21d365;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 18% 12%, rgba(116, 52, 255, .34), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(147, 77, 255, .28), transparent 28%),
    linear-gradient(135deg, #030207 0%, #0d0614 46%, #05030a 100%);
}

.bg-grid:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18));
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -3;
  opacity: .52;
  pointer-events: none;
}

.bg-glow.one {
  width: 430px;
  height: 430px;
  background: #6a2cff;
  top: 5%;
  left: -150px;
}

.bg-glow.two {
  width: 480px;
  height: 480px;
  background: #42119b;
  right: -190px;
  top: 32%;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1220px, calc(100% - 24px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 5, 14, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(105, 45, 245, .5));
}

.brand strong {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 14px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: #dfd8ed;
  font-size: 13px;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.cart-chip {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  padding: 11px 15px;
  font-weight: 900;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(100, 34, 232, .34);
}

.cart-chip b,
.floating-cart span {
  background: #fff;
  color: #270e4f;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 54px;
  align-items: center;
  padding: 80px 0 52px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--purple3);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.kicker:before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple2), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Montserrat, sans-serif;
  letter-spacing: -.055em;
  line-height: .95;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  margin-bottom: 16px;
}

.lead {
  font-size: 20px;
  line-height: 1.65;
  color: #d4cde1;
  max-width: 660px;
}

.hero-actions,
.store-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: .2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  box-shadow: 0 18px 48px rgba(100, 34, 232, .35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(100, 34, 232, .45);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, .1);
}

.btn.full {
  width: 100%;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.metrics div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .055);
  border-radius: 22px;
  padding: 18px;
}

.metrics strong {
  font-family: Montserrat, sans-serif;
  font-size: 32px;
}

.metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-stage:before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, #7d3cff 0%, rgba(70, 20, 140, .55) 45%, transparent 72%);
  filter: blur(18px);
  opacity: .8;
}

.logo-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: translateX(-100%);
  animation: shine 5.8s infinite;
}

.ring {
  position: absolute;
  inset: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .025), 0 0 120px rgba(122, 71, 255, .42);
}

.hero-logo {
  position: relative;
  width: 72%;
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, .48));
}

.mini-card {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(7, 4, 12, .78);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.mini-card b {
  font-size: 14px;
}

.c1 {
  left: 20px;
  top: 90px;
}

.c2 {
  right: 20px;
  bottom: 100px;
}

.c3 {
  left: 72px;
  bottom: 42px;
}

@keyframes shine {
  60%,
  100% {
    transform: translateX(100%);
  }
}

.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
}

.marquee div {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: move 24s linear infinite;
  padding: 16px 0;
}

.marquee span {
  font-weight: 900;
  text-transform: uppercase;
  color: #eae5f7;
  font-size: 13px;
  letter-spacing: .08em;
}

.marquee span:before {
  content: "•";
  color: var(--purple2);
  margin-right: 36px;
}

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

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.promo-band,
.catalog,
.proof,
.store,
.split-promo {
  padding: 86px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0;
  justify-content: flex-start;
  align-items: start;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 149, 255, .24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  padding: 18px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
}

.promo-card:before {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 170px;
  background: radial-gradient(circle, rgba(119, 68, 255, .42), transparent 68%);
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #240a4e;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 950;
  z-index: 2;
}

.media {
  height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  margin: 18px 0 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbf9ff, #efe7ff);
  border: 1px solid rgba(255, 255, 255, .22);
  overflow: hidden;
}

.media:before {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 42%;
  background: radial-gradient(circle, rgba(100, 34, 232, .22), transparent 68%);
  filter: blur(16px);
}

.media img {
  position: relative;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(32, 14, 54, .26));
}

.promo-card h3 {
  font-size: 17px;
  line-height: 1.28;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 8px 0 14px;
}

.old {
  text-decoration: line-through;
  color: #837895;
}

.price {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.category-pill {
  display: inline-flex;
  width: max-content;
  background: rgba(155, 92, 255, .13);
  border: 1px solid rgba(198, 162, 255, .24);
  color: #d7c3ff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.card-actions select {
  min-width: 0;
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  padding: 12px;
}

.card-actions select option {
  color: #111;
}

.add {
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #1c0b36;
  font-weight: 950;
  padding: 12px 14px;
  cursor: pointer;
}

.add:hover {
  transform: translateY(-1px);
}

.split-promo {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.delivery-card,
.deal-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
  padding: 34px;
}

.delivery-card p,
.deal-card p {
  color: var(--muted);
  line-height: 1.65;
}

.deal-card {
  background: linear-gradient(135deg, rgba(100, 34, 232, .34), rgba(255, 255, 255, .05));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deal-card span {
  width: max-content;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.deal-card h3 {
  font-family: Montserrat, sans-serif;
  font-size: 42px;
  line-height: .98;
  margin-bottom: 18px;
}

.catalog {
  width: 100%;
  overflow: hidden;
}

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

.tools {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.tools label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tools input,
.tools select {
  width: 240px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  padding: 15px 16px;
  outline: none;
}

.tools input:focus,
.tools select:focus {
  border-color: rgba(198, 162, 255, .7);
  box-shadow: 0 0 0 4px rgba(155, 92, 255, .12);
}

.tools select option {
  color: #111;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 24px 0;
}

.filter {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: #e8e2f4;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.filter.active,
.filter:hover {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0;
  justify-content: flex-start;
  align-items: start;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .032));
  box-shadow: 0 18px 52px rgba(0, 0, 0, .22);
  padding: 16px;
  min-height: 382px;
  display: flex;
  flex-direction: column;
  transition: .2s ease;
  width: 100%;
  max-width: none;
  margin: 0;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 162, 255, .42);
}

.product-card .media {
  height: 168px;
  margin: 18px 0 8px;
}

.product-card .media img {
  max-height: 168px;
}

.product-card h3 {
  font-size: 16px;
  line-height: 1.34;
  min-height: 64px;
  margin-bottom: 4px;
}

.chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.chips span {
  font-size: 11px;
  color: #e8ddff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
}

.catalog-note {
  color: var(--muted2);
  font-size: 13px;
  margin-top: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .055);
  padding: 26px;
}

.quote p {
  font-size: 18px;
  line-height: 1.62;
  color: #ece8f5;
}

.quote strong {
  color: var(--purple3);
}

.store-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  padding: 26px;
  box-shadow: var(--shadow);
}

.store-card p {
  color: var(--muted);
  line-height: 1.6;
}

.map-box {
  min-height: 360px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.85) invert(.92) contrast(1.05);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 20px;
  text-align: center;
  color: var(--muted);
}

.footer img {
  width: 80px;
  margin: 0 auto 10px;
}

.floating-cart {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 48;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(13, 7, 21, .84);
  backdrop-filter: blur(14px);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  display: none;
  gap: 10px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}

.social-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .45);
}

.instagram-float {
  color: #ffffff;
  background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #f77737);
}

.whatsapp-float {
  color: #080016;
  background: #ffffff;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

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

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: #0b0712;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 80px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: .24s ease;
}

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

.cart-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-panel header small {
  color: var(--purple3);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
}

.cart-panel h3 {
  font-size: 28px;
  margin: 0;
}

.cart-panel header button {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 30px;
  cursor: pointer;
}

.cart-items {
  padding: 16px;
  overflow: auto;
  flex: 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 10px;
}

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
}

.cart-item h4 {
  font-size: 13px;
  line-height: 1.25;
  margin: 0 0 4px;
}

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

.qty {
  display: flex;
  align-items: center;
  gap: 7px;
}

.qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.cart-panel footer {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

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

.total strong {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
}

.cart-panel footer small {
  display: block;
  color: var(--muted2);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

.empty {
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

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

  .hero {
    padding-top: 58px;
    gap: 30px;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .catalog-head {
    display: block;
  }

  .tools {
    margin-top: 18px;
  }

  .store-card {
    padding: 18px;
  }

  .map-box {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header {
    border-radius: 26px;
    align-items: center;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 5, 14, .96);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
  }

  .cart-chip span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 36px;
  }

  .lead {
    font-size: 17px;
  }

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

  .hero-visual {
    min-height: 340px;
  }

  .logo-stage {
    border-radius: 30px;
  }

  .mini-card {
    display: none;
  }

  .promo-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100%;
  }

  .promo-card,
  .product-card {
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }

  .media,
  .product-card .media {
    height: 118px !important;
    margin: 12px 0 8px;
    border-radius: 16px;
  }

  .media img,
  .product-card .media img {
    max-height: 112px !important;
  }

  .tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .tools label {
    font-size: 12px;
  }

  .tools input,
  .tools select {
    width: 100%;
    min-height: 58px;
    font-size: 16px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .catalog {
    padding: 48px 0 56px;
    overflow: visible;
  }

  .catalog-head {
    display: block;
    margin-bottom: 18px;
  }

  .catalog-head h2 {
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
  }

  .catalog-head p:not(.kicker) {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding: 4px 0 12px;
    margin: 0 0 18px 0;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    padding: 12px 18px;
    font-size: 14px;
  }

  .product-card {
    padding: 10px !important;
    border-radius: 20px;
  }

  .product-card .badge {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .product-card .category-pill {
    font-size: 10px;
    padding: 5px 7px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card h3 {
    font-size: 12px;
    line-height: 1.25;
    min-height: 46px;
    margin: 7px 0 4px;
  }

  .chips {
    display: none;
  }

  .price-row {
    margin: 5px 0 9px;
    gap: 5px;
  }

  .old {
    font-size: 11px;
  }

  .price {
    font-size: 17px;
  }

  .card-actions {
    display: grid;
    gap: 7px;
  }

  .card-actions select {
    width: 100%;
    padding: 9px 10px;
    font-size: 12px;
    border-radius: 12px;
  }

  .add {
    width: 100%;
    padding: 10px 8px;
    font-size: 12px;
    border-radius: 12px;
  }

  .floating-cart {
    display: flex;
    left: 12px;
    bottom: 12px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .floating-socials {
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .social-float {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .deal-card h3 {
    font-size: 34px;
  }

  .cart-item {
    grid-template-columns: 64px 1fr;
  }

  .cart-item .qty {
    grid-column: 2 / 3;
  }

  .map-box {
    min-height: 300px;
  }
}

@media (max-width: 390px) {
  .product-grid {
    gap: 10px !important;
  }

  .product-card {
    padding: 9px !important;
  }

  .product-card .media {
    height: 108px !important;
  }

  .product-card .media img {
    max-height: 102px !important;
  }

  .product-card h3 {
    font-size: 11.5px;
  }

  .price {
    font-size: 16px;
  }
}

/* AJUSTES FINAIS - MOBILE FIRST / DETALHES DO PRODUTO */
body.modal-open {
  overflow: hidden;
}

.details-btn {
  border: 1px solid rgba(198, 162, 255, .32);
  border-radius: 14px;
  background: rgba(155, 92, 255, .16);
  color: #fff;
  font-weight: 950;
  padding: 12px 14px;
  cursor: pointer;
}

.details-btn:hover {
  background: rgba(155, 92, 255, .26);
  transform: translateY(-1px);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(20, 10, 34, .98), rgba(8, 4, 16, .98));
  box-shadow: 0 28px 90px rgba(0,0,0,.58);
  padding: 24px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.product-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.product-modal-media {
  min-height: 360px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fbf9ff, #efe7ff);
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 32px rgba(32, 14, 54, .26));
}

.product-modal-info h3 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 14px 0 12px;
}

.detail-block {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}

.detail-block h4 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--purple3);
}

.detail-block p,
.detail-block li {
  color: #d8d1e6;
  line-height: 1.55;
  font-size: 15px;
}

.detail-block ul {
  margin: 0;
  padding-left: 18px;
}

.detail-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-flavors span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: #eee8fa;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 24px);
  }

  .header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 26px;
  }

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

  .hero {
    min-height: auto;
    padding: 42px 0 30px;
    gap: 26px;
  }

  h1 {
    font-size: 40px;
    line-height: .98;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .metrics div {
    padding: 14px;
    border-radius: 18px;
  }

  .metrics strong {
    font-size: 25px;
  }

  .metrics span {
    font-size: 11px;
  }

  .promo-band,
  .catalog,
  .proof,
  .store,
  .split-promo {
    padding: 46px 0;
  }

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

  .section-head p:not(.kicker) {
    display: none;
  }

  .catalog-head h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .catalog-head p:not(.kicker) {
    display: none;
  }

  .tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .tools input,
  .tools select {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 9px;
    padding: 4px 0 12px;
    margin: 0 0 16px 0;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    padding: 11px 16px;
    font-size: 13px;
    border-radius: 999px;
  }

  .promo-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .promo-card,
  .product-card {
    min-height: auto;
    padding: 9px !important;
    border-radius: 18px;
  }

  .promo-card .badge,
  .product-card .badge {
    top: 8px;
    left: 8px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .media,
  .product-card .media,
  .promo-card .media {
    height: 128px !important;
    margin: 10px 0 8px !important;
    border-radius: 15px !important;
    padding: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .media img,
  .product-card .media img,
  .promo-card .media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 112px !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .category-pill {
    font-size: 9.5px;
    padding: 5px 7px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .product-card h3,
  .promo-card h3 {
    font-size: 12px;
    line-height: 1.22;
    min-height: 45px;
    max-height: 45px;
    overflow: hidden;
    margin: 7px 0 5px;
  }

  .chips {
    display: none;
  }

  .price-row {
    margin: 4px 0 8px;
    gap: 5px;
  }

  .old {
    font-size: 10px;
  }

  .price {
    font-size: 16px;
    line-height: 1;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .card-actions select,
  .details-btn,
  .add {
    width: 100%;
    min-height: 38px;
    padding: 8px 9px;
    font-size: 12px;
    border-radius: 12px;
  }

  .split-promo {
    gap: 16px;
  }

  .delivery-card,
  .deal-card {
    padding: 24px;
    border-radius: 26px;
  }

  .delivery-card p,
  .deal-card p {
    display: none;
  }

  .deal-card h3 {
    font-size: 34px;
  }

  .floating-cart {
    display: flex;
    left: 10px;
    bottom: 10px;
    padding: 9px 12px;
    font-size: 13px;
    z-index: 9998;
  }

  .floating-socials {
    right: 10px;
    bottom: 10px;
    gap: 6px;
    z-index: 9999;
  }

  .social-float {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .cart-panel {
    width: 100%;
  }

  .product-modal {
    padding: 0;
    align-items: end;
  }

  .product-modal-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 28px 28px 0 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .product-modal-media {
    min-height: 230px;
    padding: 18px;
    border-radius: 22px;
  }

  .product-modal-media img {
    max-height: 260px;
  }

  .product-modal-info h3 {
    font-size: 27px;
    line-height: 1.06;
  }

  .detail-block p,
  .detail-block li {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .product-grid,
  .promo-grid {
    gap: 8px !important;
  }

  .product-card,
  .promo-card {
    padding: 8px !important;
  }

  .media,
  .product-card .media,
  .promo-card .media {
    height: 118px !important;
  }

  .media img,
  .product-card .media img,
  .promo-card .media img {
    max-height: 104px !important;
  }

  .product-card h3,
  .promo-card h3 {
    font-size: 11.5px;
    min-height: 42px;
    max-height: 42px;
  }

  .price {
    font-size: 15px;
  }

  .social-float {
    padding: 0 10px;
    font-size: 11px;
  }
}

/* =========================================================
   CORREÇÃO FINAL - ALINHAMENTO / CARDS / MOBILE / DESKTOP
   ========================================================= */
.product-grid,
.promo-grid {
  align-items: stretch !important;
}

.product-card,
.promo-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden !important;
}

.product-card .media,
.promo-card .media,
.media {
  background: linear-gradient(180deg, #fbf9ff 0%, #f1eaff 100%) !important;
  border-radius: 22px !important;
  padding: 16px !important;
  overflow: hidden !important;
}

.product-card .media img,
.promo-card .media img,
.media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: drop-shadow(0 14px 16px rgba(32, 14, 54, .20)) !important;
}

.product-card h3,
.promo-card h3 {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

.product-card .price-row,
.promo-card .price-row {
  margin-top: auto !important;
}

.card-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 10px !important;
}

.card-actions select {
  grid-column: 1 / -1 !important;
  order: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.details-btn {
  order: 2 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.add {
  order: 3 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.product-card .chips,
.promo-card .chips {
  min-height: 30px !important;
}

@media (min-width: 1041px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .promo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .product-card {
    min-height: 440px !important;
    padding: 14px !important;
  }

  .promo-card {
    min-height: 420px !important;
    padding: 16px !important;
  }

  .product-card .media {
    height: 170px !important;
    margin: 12px 0 10px !important;
  }

  .promo-card .media {
    height: 180px !important;
    margin: 12px 0 10px !important;
  }

  .product-card h3 {
    min-height: 63px !important;
    max-height: 63px !important;
    font-size: 15px !important;
    line-height: 1.28 !important;
  }

  .promo-card h3 {
    min-height: 60px !important;
    max-height: 60px !important;
    font-size: 16px !important;
    line-height: 1.28 !important;
  }

  .price {
    font-size: 22px !important;
  }

  .details-btn,
  .add,
  .card-actions select {
    min-height: 42px !important;
    padding: 10px 12px !important;
    border-radius: 13px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 1040px) and (min-width: 761px) {
  .product-grid,
  .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .product-card,
  .promo-card {
    min-height: 430px !important;
  }
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 22px) !important;
  }

  .catalog,
  .promo-band,
  .split-promo,
  .proof,
  .store {
    padding: 42px 0 !important;
  }

  .catalog-head h2,
  .section-head h2 {
    font-size: 34px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
  }

  .section-head p:not(.kicker) {
    display: none !important;
  }

  .tools input,
  .tools select {
    min-height: 52px !important;
    font-size: 15px !important;
  }

  .filters {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 9px !important;
    padding: 4px 0 12px !important;
    scrollbar-width: none !important;
  }

  .filters::-webkit-scrollbar {
    display: none !important;
  }

  .filter {
    flex: 0 0 auto !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
  }

  .product-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .product-card,
  .promo-card {
    min-height: 372px !important;
    padding: 9px !important;
    border-radius: 18px !important;
  }

  .product-card .media,
  .promo-card .media {
    height: 124px !important;
    margin: 10px 0 8px !important;
    padding: 10px !important;
    border-radius: 15px !important;
  }

  .badge {
    top: 8px !important;
    left: 8px !important;
    padding: 5px 8px !important;
    font-size: 10px !important;
  }

  .category-pill {
    max-width: 100% !important;
    font-size: 9.5px !important;
    padding: 5px 7px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .product-card h3,
  .promo-card h3 {
    font-size: 11.5px !important;
    line-height: 1.22 !important;
    min-height: 43px !important;
    max-height: 43px !important;
    -webkit-line-clamp: 3 !important;
    margin: 7px 0 5px !important;
  }

  .chips {
    display: none !important;
  }

  .price-row {
    gap: 4px !important;
    margin: 5px 0 8px !important;
  }

  .old {
    font-size: 10px !important;
  }

  .price {
    font-size: 15.5px !important;
    line-height: 1 !important;
  }

  .card-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 7px !important;
    margin-top: 8px !important;
  }

  .card-actions select {
    grid-column: 1 / -1 !important;
    order: 1 !important;
    min-height: 36px !important;
    padding: 7px 9px !important;
    font-size: 11px !important;
    border-radius: 11px !important;
  }

  .details-btn,
  .add {
    min-height: 38px !important;
    padding: 8px 6px !important;
    font-size: 11px !important;
    border-radius: 11px !important;
  }

  .floating-cart {
    left: 10px !important;
    bottom: 10px !important;
    padding: 9px 11px !important;
    font-size: 12px !important;
    z-index: 9998 !important;
  }

  .floating-socials {
    right: 10px !important;
    bottom: 10px !important;
    gap: 6px !important;
    z-index: 9999 !important;
  }

  .social-float {
    min-height: 38px !important;
    padding: 0 11px !important;
    font-size: 11px !important;
  }

  .delivery-card p,
  .deal-card p {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .product-grid,
  .promo-grid {
    gap: 8px !important;
  }

  .product-card,
  .promo-card {
    min-height: 358px !important;
    padding: 8px !important;
  }

  .product-card .media,
  .promo-card .media {
    height: 116px !important;
    padding: 8px !important;
  }

  .product-card h3,
  .promo-card h3 {
    font-size: 11px !important;
    min-height: 41px !important;
    max-height: 41px !important;
  }

  .price {
    font-size: 15px !important;
  }
}

/* CORRECAO FINAL - RESTAURA IMAGENS E MODAL LIMPO */
.product-card,
.promo-card {
  cursor: pointer;
}

.card-actions,
.card-actions button,
.card-actions select {
  position: relative;
  z-index: 3;
}

.product-card .media,
.promo-card .media {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #fbf9ff 0%, #f1eaff 100%) !important;
}

.product-card .media img,
.promo-card .media img {
  width: auto !important;
  height: auto !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
}

.product-modal {
  padding: 18px !important;
}

.product-modal-panel {
  display: block !important;
  width: min(980px, calc(100vw - 36px)) !important;
  max-height: min(88vh, 820px) !important;
  overflow: auto !important;
  padding: 20px !important;
  border-radius: 28px !important;
}

.product-modal-panel > [data-product-modal-content] {
  width: 100% !important;
}

.product-modal-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
  gap: 22px !important;
  align-items: start !important;
}

.product-modal-info {
  order: 1 !important;
  min-width: 0 !important;
  padding: 4px 0 0 !important;
}

.product-modal-media {
  order: 2 !important;
  min-height: 330px !important;
  height: 100% !important;
  max-height: 430px !important;
  padding: 22px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #fbf9ff 0%, #f1eaff 100%) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.product-modal-media img {
  width: auto !important;
  height: auto !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
}

.product-modal-info h3 {
  font-size: clamp(28px, 3.4vw, 44px) !important;
  line-height: 1.04 !important;
  margin: 12px 0 10px !important;
}

.product-modal-info .price-row {
  margin: 8px 0 12px !important;
}

.detail-block {
  margin-top: 12px !important;
  padding-top: 12px !important;
}

.detail-block h4 {
  font-size: 12px !important;
  margin-bottom: 7px !important;
}

.detail-block p,
.detail-block li {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.detail-flavors span {
  font-size: 12px !important;
  padding: 7px 9px !important;
}

.product-modal-info .btn.full {
  margin-top: 14px !important;
  min-height: 48px !important;
}

.product-modal-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  margin: 0 !important;
  width: 40px !important;
  height: 40px !important;
}

@media (min-width: 1041px) {
  .product-grid,
  .promo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  .product-card .media {
    height: 190px !important;
  }

  .promo-card .media {
    height: 198px !important;
  }
}

@media (max-width: 1040px) and (min-width: 761px) {
  .product-modal-layout {
    grid-template-columns: 1fr !important;
  }

  .product-modal-media {
    order: 1 !important;
    min-height: 320px !important;
  }

  .product-modal-info {
    order: 2 !important;
  }
}

@media (max-width: 760px) {
  .product-card .media img,
  .promo-card .media img {
    max-width: 90% !important;
    max-height: 90% !important;
  }

  .product-modal {
    align-items: end !important;
    padding: 10px !important;
  }

  .product-modal-panel {
    width: 100% !important;
    max-height: 90vh !important;
    border-radius: 24px 24px 0 0 !important;
    padding: 16px !important;
  }

  .product-modal-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .product-modal-media {
    order: 1 !important;
    min-height: 220px !important;
    max-height: 260px !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .product-modal-media img {
    max-width: 90% !important;
    max-height: 90% !important;
  }

  .product-modal-info {
    order: 2 !important;
  }

  .product-modal-info h3 {
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .detail-block p,
  .detail-block li {
    font-size: 13px !important;
  }
}

/* CORREÇÃO MOBILE - TEXTO ENTREGA FULL */
@media (max-width: 760px) {
  .delivery-card p {
    display: block !important;
    color: #d8d1e6;
    font-size: 15px;
    line-height: 1.45;
    margin: 12px 0 20px;
  }

  .delivery-card {
    padding: 24px 20px;
  }

  .delivery-card h3,
  .delivery-card h2 {
    margin-bottom: 12px;
  }

  .delivery-card .btn,
  .delivery-card a.btn {
    margin-top: 6px;
  }
}

/* MODAL DE DESCRIÇÃO - PRODUTO À ESQUERDA / DESCRIÇÃO À DIREITA */
.product-modal-panel {
  width: min(1180px, 100%) !important;
  max-height: min(90vh, 900px) !important;
  overflow: auto !important;
}

.product-modal-panel > [data-product-modal-content] {
  width: 100% !important;
}

.product-modal-layout-desc {
  display: grid !important;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

.product-modal-layout-desc .product-modal-media {
  order: 1 !important;
  position: sticky !important;
  top: 12px !important;
  min-height: 420px !important;
  max-height: 520px !important;
  padding: 26px !important;
  border-radius: 28px !important;
}

.product-modal-layout-desc .product-modal-media img {
  width: auto !important;
  height: auto !important;
  max-width: 94% !important;
  max-height: 94% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.product-modal-layout-desc .product-modal-info {
  order: 2 !important;
  min-width: 0 !important;
  padding: 2px 0 0 !important;
}

.product-modal-layout-desc .product-modal-info h3 {
  font-size: clamp(28px, 3.8vw, 52px) !important;
  line-height: 1.02 !important;
  margin: 12px 0 10px !important;
}

.detail-overview {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.detail-overview li {
  padding: 7px 9px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.045) !important;
}

.detail-overview strong {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .product-modal-layout-desc {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .product-modal-layout-desc .product-modal-media {
    position: relative !important;
    top: auto !important;
    min-height: 260px !important;
    max-height: 300px !important;
    order: 1 !important;
  }

  .product-modal-layout-desc .product-modal-info {
    order: 2 !important;
  }
}

@media (max-width: 760px) {
  .product-modal-panel {
    padding: 14px !important;
    max-height: 92vh !important;
  }

  .product-modal-layout-desc .product-modal-media {
    min-height: 220px !important;
    max-height: 250px !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .product-modal-layout-desc .product-modal-info h3 {
    font-size: 23px !important;
    line-height: 1.08 !important;
  }

  .detail-block {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }

  .detail-block h4 {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }

  .detail-block p,
  .detail-block li {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }

  .detail-overview li {
    padding: 6px 8px !important;
  }
}

/* AJUSTE FINAL - DESCRIÇÕES INDIVIDUAIS DOS PRODUTOS */
.product-modal-layout-desc {
  display: grid !important;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

.product-modal-layout-desc .product-modal-media {
  order: 1 !important;
  position: sticky !important;
  top: 14px !important;
  min-height: 420px !important;
  max-height: 520px !important;
}

.product-modal-layout-desc .product-modal-info {
  order: 2 !important;
}

.detail-overview {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 7px !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.detail-overview li {
  padding: 8px 10px !important;
  border-radius: 13px !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  background: rgba(255,255,255,.045) !important;
}

.detail-overview strong {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .product-modal-layout-desc {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .product-modal-layout-desc .product-modal-media {
    position: relative !important;
    top: auto !important;
    min-height: 260px !important;
    max-height: 300px !important;
  }
}

@media (max-width: 760px) {
  .product-modal-layout-desc .product-modal-media {
    min-height: 220px !important;
    max-height: 250px !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .product-modal-layout-desc .product-modal-info h3 {
    font-size: 23px !important;
    line-height: 1.08 !important;
  }

  .detail-block p,
  .detail-block li {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
  }
}

/* FIX FINAL MOBILE - TEXTO ENTREGA FULL VISÍVEL */
.delivery-card .delivery-mobile-text,
.delivery-card p.delivery-mobile-text {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  color: #d8d1e6 !important;
  font-size: clamp(15px, 3.8vw, 18px) !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
  margin: 14px 0 22px !important;
  max-width: 760px !important;
}

.delivery-card {
  display: flex !important;
  flex-direction: column !important;
}

@media (max-width: 760px) {
  .delivery-card,
  .split-promo .delivery-card {
    min-height: auto !important;
    padding: 26px 20px !important;
    gap: 0 !important;
  }

  .delivery-card .delivery-mobile-text,
  .delivery-card p.delivery-mobile-text,
  .split-promo .delivery-card .delivery-mobile-text,
  .split-promo .delivery-card p.delivery-mobile-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #d8d1e6 !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    margin: 12px 0 20px !important;
    max-width: 100% !important;
  }

  .delivery-card h2,
  .delivery-card h3 {
    margin-bottom: 10px !important;
  }

  .delivery-card .btn,
  .delivery-card a.btn {
    margin-top: 0 !important;
    align-self: flex-start !important;
  }
}
