* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #fffafc;
  color: #2a2430;
}
a { text-decoration: none; color: inherit; }
button, input, select { font: inherit; }

.top-location-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 5vw;
  text-align: center;
  background: #2a2430;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.top-location-bar a {
  color: #ffd5e8;
  white-space: nowrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  border-bottom: 1px solid rgba(42, 36, 48, 0.08);
  background: rgba(255, 250, 252, 0.92);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; }
.brand img { display: block; width: 118px; height: auto; }
.footer-logo { display: block; width: 108px; height: auto; }
nav { display: flex; gap: 28px; font-size: 14px; font-weight: 700; color: #5d5261; }
.cart {
  border: 0;
  background: #2a2430;
  color: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}
.cart b {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: #ef4f99;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
  padding: 70px 6vw;
  background: linear-gradient(135deg, #fff9fb, #f8eff4);
  overflow: hidden;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ef4f99;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.06em;
}
.hero h1 em {
  display: block;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: 500;
  color: #ef4f99;
}
.hero p {
  max-width: 650px;
  margin: 26px 0;
  color: #665b69;
  font-size: 20px;
  line-height: 1.65;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 850;
  cursor: pointer;
}
.primary { background: #ef4f99; color: #fff; }
.ghost { border: 1px solid #d8ccd2; background: rgba(255, 255, 255, .55); }
.trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #7b6f7f;
  font-size: 12px;
  font-weight: 700;
}

.hero-carousel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.carousel-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 34px;
  border: 6px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow: 0 24px 70px rgba(76, 43, 61, .18);
}
.carousel-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}
.carousel-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(36, 26, 39, 0.58);
  backdrop-filter: blur(8px);
  color: white;
}
.carousel-overlay span {
  display: block;
  font-size: 22px;
  font-weight: 900;
}
.carousel-overlay p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.carousel-controls button {
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 20px rgba(76, 43, 61, .08);
  cursor: pointer;
  font-size: 22px;
  color: #4d4150;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #dcccd8;
  box-shadow: none;
}
.carousel-dots button.active { background: #ef4f99; }
.carousel-note {
  color: #7e7180;
  line-height: 1.6;
  text-align: center;
}

.section { padding: 90px 6vw; }
.head { max-width: 860px; margin-bottom: 38px; }
.head h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.head p { color: #756977; line-height: 1.7; }

.products {
  display: grid;
  gap: 18px;
}
.products-four { grid-template-columns: repeat(4, 1fr); }
.product-card,
.products article {
  padding: 22px;
  border: 1px solid #eadfe5;
  border-radius: 28px;
  background: white;
}
.tag {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffe1ee;
  color: #c92f73;
  font-size: 11px;
  font-weight: 900;
}
.tag.soft { background: #f1edf0; color: #756b78; }
.visual {
  display: grid;
  place-items: center;
  height: 260px;
  margin: 18px 0;
  border-radius: 22px;
  background: #f2eef8;
  font-size: 64px;
}
.emoji-visual { font-size: 72px; }
.products h3 { margin: 8px 0 4px; font-size: 24px; }
.products p { margin: 0 0 14px; color: #766b79; }
.products article > b,
.product-card > b { display: block; }
.products article > a,
.product-card > a {
  display: inline-block;
  margin-top: 16px;
  color: #ef4f99;
  font-weight: 850;
}
.real-product-visual {
  overflow: hidden;
  padding: 18px;
  background: #f8f3f6;
}
.real-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.bubble-card img {
  transform: scale(0.82);
}

.custom { background: #f6f0f4; }
.customgrid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.preview,
.controls {
  border: 1px solid #e6dce2;
  border-radius: 28px;
  background: white;
}
.preview {
  position: sticky;
  top: 95px;
  padding: 18px;
  text-align: center;
}
.preview > span {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f8e6ee;
  color: #bd3a75;
  font-size: 11px;
  font-weight: 900;
}
.preview svg { width: min(100%, 520px); }
.preview small { display: block; color: #887c8b; line-height: 1.5; }
.controls { padding: 26px; }
.block { margin-bottom: 24px; }
.block > label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 850; }
.seg, .swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button {
  padding: 10px 13px;
  border: 1px solid #ded3d9;
  border-radius: 999px;
  background: white;
  color: #5c515f;
  cursor: pointer;
  text-transform: capitalize;
}
.seg button.active {
  border-color: #ef4f99;
  background: #ffe6f0;
  color: #c72d71;
}
.swatch {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d9ced4;
  cursor: pointer;
}
.swatch.selected { box-shadow: 0 0 0 3px #ef4f99; }
.controls input,
.controls select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd2d8;
  border-radius: 14px;
  background: #fff;
}
.extras { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid #e4d9df;
  border-radius: 14px;
  text-align: left;
}
.check input { width: 16px; height: 16px; margin: 0; }
.check span { text-align: left; line-height: 1.2; }
.check b { margin-left: 8px; font-size: 12px; color: #856d79; white-space: nowrap; }
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid #eadfe5;
}
.summary small,
.summary strong { display: block; }
.summary strong { font-size: 30px; }
.summary .btn { min-width: 220px; }
.upload-block input[type="file"] { padding: 10px; background: #fbf8fb; }
.upload-block small,
.font-note {
  display: block;
  margin-top: 8px;
  color: #8a7d8c;
  line-height: 1.5;
}
.font-note { font-size: 12px; }

.decors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.real-decors a {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: #eee;
  box-shadow: 0 12px 36px rgba(64, 45, 57, .08);
}
.real-decors a img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.real-decors a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 24, 33, .72), rgba(31, 24, 33, 0) 62%);
}
.real-decors a span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 2;
  color: #fff;
  font-size: 19px;
  font-weight: 850;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.real-decors a:hover img { transform: scale(1.035); }

footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 34px 6vw;
  background: #2a2430;
  color: #dcd3df;
}
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(37, 29, 40, .35);
  display: flex;
  justify-content: flex-end;
}
.backdrop aside {
  width: min(460px, 100%);
  height: 100%;
  padding: 24px;
  background: #fff;
  overflow: auto;
}
.drawerhead { display: flex; align-items: center; justify-content: space-between; }
.drawerhead h3 { margin: 2px 0; font-size: 30px; }
.drawerhead button {
  border: 0;
  background: #f2edf0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
}
.empty { text-align: center; padding: 80px 20px; font-size: 52px; }
.empty p { font-size: 14px; color: #7c707f; }
.items { display: grid; gap: 12px; margin: 25px 0; }
.cartitem {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e8dde3;
  border-radius: 16px;
}
.cartpalette { display: flex; gap: 4px; align-items: center; }
.cartpalette span {
  display: block;
  width: 18px;
  height: 34px;
  border-radius: 999px;
}
.cartitem small { display: block; margin-top: 3px; color: #847786; }
.cartitem > div:last-child { text-align: right; }
.cartitem button {
  display: block;
  margin-top: 6px;
  margin-left: auto;
  border: 0;
  background: none;
  color: #d23e7c;
  font-size: 11px;
  cursor: pointer;
}
.total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid #e7dce2;
}
.checkout { width: 100%; }
.checkout:disabled { opacity: .45; }
.note { text-align: center; color: #8d818f; font-size: 11px; }

@media (max-width: 1180px) {
  .products-four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .carousel-card,
  .carousel-card img { min-height: 420px; }
  .customgrid { grid-template-columns: 1fr; }
  .preview { position: relative; top: auto; }
  .decors { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .top-location-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }
  header nav { display: none; }
  .brand img { width: 96px; }
  .footer-logo { width: 92px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 52px; }
  .hero p { font-size: 17px; }
  .carousel-card,
  .carousel-card img { min-height: 320px; }
  .section { padding: 68px 5vw; }
  .products-four,
  .extras,
  .twocol,
  .decors { grid-template-columns: 1fr; }
  .summary {
    align-items: flex-end;
    flex-direction: column;
  }
  .summary > div,
  .summary .btn { width: 100%; }
  .cartitem { grid-template-columns: 1fr; }
  .cartitem > div:last-child { text-align: left; }
}

/* ===== Party Shop V2 polish / motion ===== */
.top-location-bar {
  position: relative;
  justify-content: center;
  text-align: center;
  letter-spacing: .02em;
}
.top-location-bar span { width: 100%; text-align: center; }

.promo-carousel {
  position: relative;
  padding: 18px 0 6px;
  background: #fff;
}
.promo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2.44 / 1;
  min-height: 260px;
  max-height: 600px;
  overflow: hidden;
  background: #f8f3f6;
  box-shadow: 0 14px 45px rgba(61, 44, 55, .08);
}
.promo-frame > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: bannerFade .55s ease both;
}
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  color: #9c3f73;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(61,44,55,.14);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.promo-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.promo-prev { left: 22px; }
.promo-next { right: 22px; }
.promo-dots {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
}
.promo-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccb8c5;
  cursor: pointer;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}
.promo-dots button.active { width: 26px; border-radius: 999px; background: #ef4f99; }
.promo-manager {
  width: min(980px, 92vw);
  margin: 12px auto 0;
  text-align: right;
}
.promo-manager summary {
  display: inline-flex;
  cursor: pointer;
  color: #8e7483;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}
.promo-manager summary::-webkit-details-marker { display: none; }
.promo-manager-body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #eadfe5;
  border-radius: 16px;
  background: #fffafc;
}
.promo-manager-body small { color: #8a7d8c; text-align: left; }
.promo-upload {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #2a2430;
  color: white;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.promo-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .6;
}
.hero::before {
  width: 260px;
  height: 260px;
  left: -100px;
  top: 8%;
  background: radial-gradient(circle, rgba(239,79,153,.18), rgba(239,79,153,0));
  animation: drift 8s ease-in-out infinite alternate;
}
.hero::after {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(188,167,234,.22), rgba(188,167,234,0));
  animation: drift 10s ease-in-out infinite alternate-reverse;
}
.hero-copy { animation: heroIn .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-showcase {
  position: relative;
  min-height: 500px;
}
.showcase-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.92);
  border-radius: 30px;
  background: white;
  box-shadow: 0 24px 65px rgba(76,43,61,.17);
  transition: transform .35s ease, box-shadow .35s ease;
}
.showcase-card:hover { box-shadow: 0 30px 80px rgba(76,43,61,.24); }
.showcase-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.showcase-main {
  width: 67%;
  height: 82%;
  right: 2%;
  top: 2%;
  transform: rotate(2deg);
  animation: floatCard 6s ease-in-out infinite;
}
.showcase-main img { object-fit: contain; background: #fbf8fa; }
.showcase-decoration {
  width: 38%;
  height: 48%;
  left: 0;
  bottom: 3%;
  transform: rotate(-4deg);
  animation: floatCardAlt 7s ease-in-out infinite;
}
.showcase-label {
  position: absolute;
  right: 0;
  bottom: 4%;
  z-index: 5;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(42,36,48,.88);
  color: white;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 35px rgba(42,36,48,.2);
}

.btn, .product-card, .real-decors a, .cart, .brand img {
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(239,79,153,.2); }
.cart:hover { transform: translateY(-1px); }
.brand:hover img { transform: rotate(-1.5deg) scale(1.03); }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(67,46,59,.10); }
.real-decors a:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(64,45,57,.14); }

/* More space around the real bubble-balloon product photo. */
.real-product-visual.bubble-card { padding: 28px; }
.bubble-card img { transform: scale(.68); }

footer#ubicacion {
  display: block;
  padding: 58px 6vw 24px;
  background: #251f29;
  color: #e9e0eb;
}
.footer-content {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: stretch;
}
.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0;
}
.footer-info h3 { margin: 20px 0 10px; color: white; font-size: 30px; letter-spacing: -.035em; }
.footer-info p { margin: 6px 0; max-width: 420px; color: #cfc4d1; line-height: 1.7; }
.footer-info a { color: #ffd0e5; }
.map-card {
  overflow: hidden;
  min-height: 330px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}
.map-card iframe { width: 100%; height: 100%; min-height: 330px; border: 0; display: block; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #9f929f;
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.product-card { animation-delay: var(--delay, 0ms); }
.real-decors a { animation-delay: var(--delay, 0ms); }

@keyframes bannerFade { from { opacity: .4; transform: scale(1.01); } to { opacity: 1; transform: scale(1); } }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift { from { transform: translate3d(0,0,0); } to { transform: translate3d(28px,-20px,0); } }
@keyframes floatCard { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-9px); } }
@keyframes floatCardAlt { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(8px); } }

@media (max-width: 980px) {
  .promo-frame { min-height: 240px; }
  .promo-manager-body { flex-direction: column; align-items: flex-end; }
  .hero-showcase { min-height: 430px; }
  .footer-content { grid-template-columns: 1fr; }
  .map-card { min-height: 300px; }
}

@media (max-width: 700px) {
  .top-location-bar { align-items: center; justify-content: center; text-align: center; }
  .promo-carousel { padding-top: 8px; }
  .promo-frame { aspect-ratio: 1.85 / 1; min-height: 210px; }
  .promo-arrow { width: 38px; height: 38px; font-size: 25px; }
  .promo-prev { left: 10px; }
  .promo-next { right: 10px; }
  .promo-manager { text-align: center; }
  .promo-manager-body { align-items: center; text-align: center; }
  .hero-showcase { min-height: 370px; }
  .showcase-main { width: 73%; height: 75%; }
  .showcase-decoration { width: 42%; height: 43%; }
  footer#ubicacion { padding: 46px 5vw 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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

/* Configuración específica de extras del globo */
.extra-option { display: grid; gap: 8px; }
.extra-config {
  margin: -2px 0 4px;
  padding: 12px;
  border: 1px solid #eadfe5;
  border-radius: 14px;
  background: #fffafc;
}
.extra-config label {
  display: block;
  margin-bottom: 7px;
  color: #665a68;
  font-size: 11px;
  font-weight: 850;
}
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 700px) {
  .extra-grid { grid-template-columns: 1fr; }
}

/* Navegación conservando la estructura original de Party Shop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 650;
  color: #242027;
}
.nav-link,
.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 0 3px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-link::after,
.nav-dropdown > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: #2a2430;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link:hover::after,
.nav-dropdown:hover > summary::after,
.nav-dropdown[open] > summary::after { transform: scaleX(1); }
.nav-arrow {
  display: inline-block;
  font-size: 12px;
  transition: transform .2s ease;
}
.nav-dropdown[open] .nav-arrow { transform: rotate(180deg); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  left: -18px;
  width: 172px;
  padding: 10px 0;
  border: 1px solid rgba(42,36,48,.06);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(52,38,50,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.dropdown-panel-wide { width: 200px; }
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown[open] .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 9px 18px;
  color: #2a2430;
  font-weight: 500;
  line-height: 1.25;
  transition: background .16s ease, color .16s ease, padding-left .16s ease;
}
.dropdown-panel a:hover {
  padding-left: 22px;
  background: #fff4f9;
  color: #e83e8c;
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav {
    order: 3;
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .dropdown-panel {
    position: fixed;
    top: auto;
    left: 5vw;
    right: 5vw;
    width: auto;
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 16px;
  }
  .dropdown-panel-wide { width: auto; }
}

@media (max-width: 700px) {
  header nav.main-nav { display: flex; }
  .main-nav { font-size: 13px; }
}

/* Páginas internas Party Shop V2 */
.internal-main { background: #fffafc; }
.internal-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
  min-height: 610px;
  padding: 72px 6vw;
  background:
    radial-gradient(circle at 90% 10%, rgba(239,79,153,.16), transparent 32%),
    linear-gradient(135deg, #fffafd, #f7eef5);
}
.internal-hero-copy { max-width: 760px; }
.internal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.055em;
}
.internal-hero-copy > p {
  margin: 24px 0 30px;
  max-width: 690px;
  color: #6c606f;
  font-size: 18px;
  line-height: 1.75;
}
.internal-hero-media {
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid #eadfe5;
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 70px rgba(76,43,61,.12);
  overflow: hidden;
}
.internal-hero-media img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  border-radius: 24px;
  transition: transform .45s ease;
}
.internal-hero-media:hover img { transform: scale(1.025) rotate(.4deg); }
.internal-content-section { background: white; }
.internal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.internal-info-grid article {
  padding: 28px;
  border: 1px solid #eadfe5;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fffafd);
  box-shadow: 0 14px 40px rgba(76,43,61,.06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.internal-info-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(76,43,61,.11);
}
.internal-card-media {
  height: 180px;
  margin: -28px -28px 24px;
  overflow: hidden;
  border-radius: 26px 26px 18px 18px;
  background: #f7f0f5;
}
.internal-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}
.internal-info-grid article:hover .internal-card-media img {
  transform: scale(1.045);
}
.internal-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #ffe4f0;
  color: #d43d80;
  font-size: 12px;
  font-weight: 900;
}
.internal-info-grid h3 { margin: 0 0 10px; font-size: 22px; }
.internal-info-grid p { margin: 0; color: #756977; line-height: 1.7; }
.internal-gallery-section { background: #f7f0f5; }
.internal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.internal-gallery figure {
  margin: 0;
  min-height: 430px;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: 0 14px 45px rgba(76,43,61,.08);
}
.internal-gallery img { width: 100%; height: 390px; object-fit: contain; }
.internal-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 62px 6vw;
  background: #2a2430;
  color: white;
}
.internal-cta-band > div { max-width: 780px; }
.internal-cta-band span {
  color: #f8b2d1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.internal-cta-band h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.internal-footer { margin-top: 0; }

@media (max-width: 980px) {
  .internal-hero { grid-template-columns: 1fr; min-height: auto; }
  .internal-hero-media { min-height: 380px; }
  .internal-hero-media img { height: 340px; }
  .internal-info-grid { grid-template-columns: 1fr; }
  .internal-cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .internal-hero { padding: 52px 5vw; }
  .internal-hero h1 { font-size: 48px; }
  .internal-hero-media { min-height: 300px; padding: 18px; }
  .internal-hero-media img { height: 270px; }
  .internal-gallery { grid-template-columns: 1fr; }
  .internal-gallery figure { min-height: 320px; }
  .internal-gallery img { height: 280px; }
}


/* Contenido enriquecido de páginas internas */
.internal-quote {
  margin: 22px 0 0;
  padding: 16px 20px;
  border-left: 4px solid #ef4f99;
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.72);
  color: #4f4050;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}
.internal-sections {
  background: #fffafc;
}
.internal-section-list {
  display: grid;
  gap: 14px;
}
.internal-section-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #eadfe5;
}
.internal-section-list article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffe6f1;
  color: #d13d7f;
  font-size: 12px;
  font-weight: 900;
}
.internal-section-list h3 {
  margin: 0 0 6px;
  font-size: 23px;
}
.internal-section-list p {
  margin: 0;
  color: #756977;
  line-height: 1.75;
}

.designer-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 6vw 70px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(239,79,153,.22), transparent 34%),
    linear-gradient(135deg, #2a2430, #443446);
  color: #fff;
  box-shadow: 0 20px 60px rgba(49,37,49,.18);
}
.designer-inline-cta > div { max-width: 780px; }
.designer-inline-cta span {
  color: #ffc5df;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.designer-inline-cta h2 {
  margin: 8px 0 8px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.designer-inline-cta p {
  margin: 0;
  color: #d8ceda;
  line-height: 1.65;
}

.designer-bridge-section {
  background: linear-gradient(180deg, #f7f0f5, #fffafc);
}
.designer-bridge-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}
.designer-bridge-preview,
.designer-brief-form {
  padding: 24px;
  border: 1px solid #eadfe5;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(76,43,61,.08);
}
.designer-window {
  overflow: hidden;
  border: 1px solid #e1d5dd;
  border-radius: 22px;
  background: #f7f2f6;
}
.designer-window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: #2a2430;
  color: #fff;
}
.designer-window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f075a9;
}
.designer-window-top span:nth-child(2) { background: #f4c562; }
.designer-window-top span:nth-child(3) { background: #72c8bc; }
.designer-window-top b {
  margin-left: 8px;
  font-size: 12px;
  letter-spacing: .03em;
}
.designer-canvas-mock {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    linear-gradient(#ffffffcc, #ffffffcc),
    repeating-linear-gradient(0deg, transparent, transparent 29px, #efe8ed 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, #efe8ed 30px);
}
.designer-canvas-mock strong {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  color: #7c6b7e;
}
.designer-arch {
  position: absolute;
  left: 12%;
  bottom: 50px;
  width: 42%;
  height: 210px;
  border: 32px solid #ef8fba;
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
  opacity: .9;
}
.designer-panel {
  position: absolute;
  bottom: 50px;
  width: 25%;
  height: 205px;
  border-radius: 100px 100px 14px 14px;
}
.designer-panel.one {
  left: 50%;
  background: #d8c7ec;
}
.designer-panel.two {
  left: 70%;
  height: 165px;
  background: #f3dfb2;
}
.designer-floor {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 34px;
  height: 16px;
  border-radius: 50%;
  background: rgba(42,36,48,.14);
  filter: blur(4px);
}
.designer-flow {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #6f6271;
  font-size: 13px;
  font-weight: 800;
}
.designer-brief-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.designer-brief-form label {
  display: grid;
  gap: 7px;
  color: #504551;
  font-size: 13px;
  font-weight: 850;
}
.designer-brief-form input,
.designer-brief-form select,
.designer-brief-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd2d8;
  border-radius: 14px;
  background: #fff;
  color: #2a2430;
}
.designer-brief-form textarea {
  min-height: 120px;
  resize: vertical;
}
.designer-brief-form .designer-notes,
.designer-brief-form .btn,
.designer-brief-form > small {
  grid-column: 1 / -1;
}
.designer-brief-form > small {
  color: #8a7c8d;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .designer-inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .designer-bridge-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .internal-section-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .designer-inline-cta {
    margin: 0 5vw 50px;
    padding: 26px;
  }
  .designer-brief-form {
    grid-template-columns: 1fr;
  }
}

/* Catálogo administrable y bloques de productos incrustables */
.product-placement-section{background:#fffafc}.catalog-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.catalog-product-card{overflow:hidden;border:1px solid #eadfe5;border-radius:26px;background:#fff;box-shadow:0 14px 38px rgba(72,48,62,.06);transition:transform .25s ease,box-shadow .25s ease}.catalog-product-card:hover{transform:translateY(-5px);box-shadow:0 22px 48px rgba(72,48,62,.12)}.catalog-product-image{position:relative;display:grid;place-items:center;height:260px;padding:18px;background:linear-gradient(145deg,#faf5f8,#f3edf7)}.catalog-product-image img{width:100%;height:100%;object-fit:contain}.catalog-product-image span{position:absolute;left:14px;top:14px;padding:7px 10px;border-radius:999px;background:#ffe2ef;color:#c62f72;font-size:10px;font-weight:900}.catalog-product-body{padding:19px}.catalog-product-body>small{color:#9a8e9c;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.catalog-product-body h3{margin:6px 0 8px;font-size:21px}.catalog-product-body p{min-height:46px;margin:0 0 15px;color:#756977;font-size:13px;line-height:1.55}.catalog-product-meta{display:flex;align-items:center;justify-content:space-between;gap:10px}.catalog-product-meta strong{font-size:20px}.catalog-product-meta span{color:#8a7d8b;font-size:11px}.catalog-product-actions{display:flex;gap:8px;margin-top:16px}.catalog-product-actions .btn{flex:1;padding:10px 12px;font-size:12px}.product-detail-main{padding:70px 6vw 90px}.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:54px;max-width:1180px;margin:0 auto}.product-detail-gallery{min-width:0}.product-detail-main-image{display:grid;place-items:center;min-height:520px;padding:34px;border:1px solid #eadfe5;border-radius:30px;background:#fff}.product-detail-main-image img{width:100%;height:480px;object-fit:contain}.product-detail-thumbs{display:flex;gap:10px;margin-top:12px;overflow:auto}.product-detail-thumbs button{flex:0 0 86px;height:86px;padding:6px;border:2px solid transparent;border-radius:14px;background:#fff;cursor:pointer}.product-detail-thumbs button.active{border-color:#ef4f99}.product-detail-thumbs img{width:100%;height:100%;object-fit:contain}.product-detail-copy{align-self:center}.product-detail-copy h1{margin:0;font-size:clamp(40px,4.5vw,68px);line-height:.98;letter-spacing:-.05em}.product-detail-copy>p{color:#706473;font-size:17px;line-height:1.7}.product-detail-price{margin:25px 0 7px;font-size:34px;font-weight:900}.product-detail-stock{color:#5b8a6d;font-size:13px;font-weight:800}.product-detail-option{display:grid;grid-template-columns:110px 1fr;gap:12px;padding:14px 0;border-bottom:1px solid #eadfe5;color:#6d616f}.product-detail-option strong{color:#2a2430}.product-custom-note{margin:20px 0;padding:15px 17px;border-radius:16px;background:#fff1f7;color:#7a4660;line-height:1.55}.cart-product-thumb{width:48px;height:48px;object-fit:contain;border-radius:10px;background:#f6f0f4}.generic-cart-dot{width:34px!important;height:34px!important;border-radius:50%;background:#ef4f99!important}@media(max-width:1050px){.catalog-product-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:820px){.product-detail{grid-template-columns:1fr}.product-detail-main-image{min-height:380px}.product-detail-main-image img{height:340px}}@media(max-width:620px){.catalog-product-grid{grid-template-columns:1fr}.catalog-product-image{height:230px}.product-detail-main{padding:45px 5vw 70px}}


/* Constructor de bloques por página */
.page-builder-block{position:relative}
.page-builder-text-inner{max-width:900px;margin:0 auto;text-align:center}
.page-builder-text-inner h2,.page-builder-copy h2{margin:0;font-size:clamp(34px,4vw,58px);letter-spacing:-.045em;line-height:1.05}
.page-builder-text-inner p,.page-builder-copy p{color:#756977;font-size:17px;line-height:1.8}
.image-text-block{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:center}
.image-text-block.image-right .page-builder-image{order:2}
.page-builder-image{overflow:hidden;min-height:420px;border-radius:30px;background:#f6eff3;box-shadow:0 18px 50px rgba(70,48,62,.08)}
.page-builder-image img{width:100%;height:100%;min-height:420px;max-height:620px;display:block;object-fit:cover}
.page-builder-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.page-builder-gallery figure{margin:0;overflow:hidden;min-height:260px;border-radius:24px;background:#f5eff3}
.page-builder-gallery img{width:100%;height:100%;min-height:260px;display:block;object-fit:cover;transition:transform .35s ease}
.page-builder-gallery figure:hover img{transform:scale(1.03)}
.page-builder-cta{display:flex;align-items:center;justify-content:space-between;gap:30px;margin:40px 6vw 80px;padding:42px;border-radius:32px;background:linear-gradient(135deg,#2a2430,#4a3442);color:#fff}
.page-builder-cta>div{max-width:760px}.page-builder-cta span{color:#ffaad0;font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.page-builder-cta h2{margin:7px 0 8px;font-size:clamp(34px,4vw,56px);line-height:1.02}.page-builder-cta p{margin:0;color:#e5dce2;line-height:1.7}
@media(max-width:850px){.image-text-block{grid-template-columns:1fr}.image-text-block.image-right .page-builder-image{order:0}.page-builder-gallery{grid-template-columns:1fr 1fr}.page-builder-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:600px){.page-builder-gallery{grid-template-columns:1fr}.page-builder-image,.page-builder-image img{min-height:300px}.page-builder-cta{margin-left:5vw;margin-right:5vw;padding:28px}}

.payment-notice,
.checkout-error {
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.35;
}
.payment-notice { background: #f7f1f5; border: 1px solid #e9dbe4; color: #5f4c58; }
.checkout-error { background: #fff1f2; border: 1px solid #f4c7cd; color: #8a3342; }


/* ===== Party Shop UI hotfix 2026-08-14 ===== */

/* Barra superior: redes + ubicación */
.top-location-bar {
  min-height: 42px;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 5vw;
  background: linear-gradient(90deg, #fff4f9 0%, #fdebf4 50%, #fff4f9 100%);
  color: #2a2430;
  font-size: 12px;
}
.top-address {
  text-align: right;
  font-weight: 800;
  letter-spacing: .015em;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}
.social-links.compact { margin-top: 0; }
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(239,79,153,.22);
  border-radius: 50%;
  color: #2a2430;
  background: rgba(255,255,255,.78);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  border-color: #ef4f99;
  color: #ef4f99;
  background: #fff;
}
.social-links svg {
  width: 17px;
  height: 17px;
  display: block;
}
.social-handle {
  margin-left: 3px;
  font-size: 12px;
  font-weight: 850;
  color: #5e5262;
}

/* Header más limpio + carrito sólo con icono */
header {
  min-height: 76px;
  padding: 13px 5vw;
}
.brand img {
  width: 148px;
  max-height: 54px;
  object-fit: contain;
}
.cart-icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: #2a2430;
  border: 1px solid rgba(42,36,48,.13);
  box-shadow: 0 8px 22px rgba(65,44,57,.06);
}
.cart-icon-button svg {
  width: 25px;
  height: 25px;
}
.cart-icon-button:hover {
  color: #ef4f99;
  border-color: rgba(239,79,153,.4);
  background: #fff;
}
.cart-icon-button .cart-count,
.cart-icon-button b {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin: 0;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ef4f99;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

/* Hero: más aire y collage de tres imágenes visible */
.hero {
  min-height: 690px;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  gap: clamp(48px, 6vw, 96px);
  padding: 86px 6vw 98px;
  align-items: center;
}
.hero-copy {
  max-width: 680px;
  padding-right: 8px;
}
.hero h1 {
  font-size: clamp(50px, 5.45vw, 80px);
  line-height: .95;
}
.hero p {
  max-width: 590px;
  margin: 28px 0 24px;
  font-size: 18px;
  line-height: 1.65;
}
.hero-showcase {
  min-height: 570px;
  isolation: isolate;
}
.showcase-card { background: #fff; }
.showcase-main {
  z-index: 3;
  width: 70%;
  height: 74%;
  right: 1%;
  top: 4%;
  transform: rotate(1.2deg);
}
.showcase-main img {
  object-fit: cover;
  background: #fff;
}
.showcase-decoration {
  z-index: 1;
  width: 45%;
  height: 43%;
  left: 0;
  bottom: 5%;
  transform: rotate(-4deg);
}
.showcase-small {
  z-index: 4;
  width: 34%;
  height: 35%;
  right: 2%;
  bottom: 0;
  transform: rotate(3.2deg);
  animation: floatCard 7.5s ease-in-out infinite reverse;
}
.showcase-small img { object-fit: cover; }
.showcase-sticker {
  position: absolute;
  z-index: 6;
  left: 31%;
  bottom: 7%;
  display: grid;
  gap: 1px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(42,36,48,.9);
  color: #fff;
  box-shadow: 0 14px 35px rgba(42,36,48,.2);
}
.showcase-sticker strong {
  font-size: 13px;
  font-weight: 900;
}
.showcase-sticker span {
  color: #f8c9df;
  font-size: 10px;
  font-weight: 750;
}
.sparkle {
  position: absolute;
  z-index: 7;
  color: #ef4f99;
  font-size: 24px;
  filter: drop-shadow(0 5px 10px rgba(239,79,153,.2));
}
.sparkle-one { left: 10%; top: 9%; }
.sparkle-two { right: 4%; bottom: 31%; font-size: 18px; }

/* Las categorías ya no muestran la foto miniatura perdida dentro de un recuadro enorme */
.products-four {
  align-items: stretch;
}
.products-four .product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
}
.products-four .visual,
.products-four .real-product-visual.bubble-card {
  height: 255px;
  margin: 15px 0 18px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f3f6;
}
.products-four .visual img,
.products-four .real-product-visual.bubble-card img,
.products-four .bubble-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  padding: 8px;
  object-fit: contain;
  transform: none;
}
.products-four .product-card:nth-child(1) .visual img,
.products-four .product-card:nth-child(4) .visual img {
  padding: 0;
  object-fit: cover;
}
.products-four .product-card h3 {
  margin-top: 0;
}
.products-four .product-card > a {
  margin-top: auto;
  padding-top: 14px;
}

/* Footer completo: logo limpio, redes, legales y crédito */
footer#ubicacion {
  padding-top: 62px;
}
.footer-logo {
  width: 170px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.footer-info h3 {
  margin-top: 24px;
}
.footer-info .social-links {
  margin-top: 18px;
}
.footer-info .social-links a {
  color: #fff;
  border-color: rgba(255,255,255,.17);
  background: rgba(255,255,255,.05);
}
.footer-info .social-links a:hover {
  color: #ff8fc3;
  border-color: #ff8fc3;
  background: rgba(255,255,255,.09);
}
.footer-info .social-handle {
  color: #d7cbd9;
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #c9bdcc;
  font-size: 12px;
}
.footer-legal a {
  color: #e7dce9;
  transition: color .2s ease;
}
.footer-legal a:hover { color: #ff8fc3; }
.footer-bottom {
  margin-top: 16px;
}
.powered-by a {
  color: #ff6eae;
  font-weight: 850;
}
.powered-by a:hover { color: #ffaad0; }

/* Página de términos */
.internal-main .text-block + .text-block {
  padding-top: 20px;
}
.internal-main .text-block .page-builder-text-inner {
  text-align: left;
  max-width: 920px;
  padding: 28px 32px;
  border: 1px solid #eadfe5;
  border-radius: 24px;
  background: #fff;
}
.internal-main .text-block .page-builder-text-inner h2 {
  font-size: clamp(28px, 3vw, 42px);
}
.internal-main .text-block .page-builder-text-inner p {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
  .hero-showcase { min-height: 500px; }
  .showcase-main { width: 73%; }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 6vw 78px;
  }
  .hero-copy { max-width: 760px; }
  .hero-showcase {
    width: min(760px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .top-location-bar {
    flex-direction: column;
    gap: 6px;
    padding: 8px 4vw 10px;
  }
  .top-address {
    text-align: center;
    font-size: 10px;
    line-height: 1.35;
  }
  .social-links.compact .social-handle { display: inline; }
  .social-links.compact a {
    width: 30px;
    height: 30px;
  }
  header {
    min-height: 66px;
    padding: 10px 4vw;
  }
  .brand img { width: 122px; }
  .cart-icon-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .cart-icon-button svg { width: 23px; height: 23px; }

  .hero {
    padding: 48px 5vw 64px;
  }
  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }
  .hero-showcase {
    min-height: 410px;
  }
  .showcase-main {
    width: 76%;
    height: 69%;
    right: 0;
  }
  .showcase-decoration {
    width: 45%;
    height: 39%;
    bottom: 4%;
  }
  .showcase-small {
    width: 37%;
    height: 31%;
    right: 0;
  }
  .showcase-sticker {
    left: 26%;
    bottom: 5%;
    padding: 9px 12px;
  }

  .products-four .visual,
  .products-four .real-product-visual.bubble-card {
    height: 280px;
  }
  .footer-logo { width: 155px; }
  .footer-legal {
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: flex-start;
  }
  .footer-bottom {
    gap: 8px;
  }
}

/* HOTFIX 2026-08-14 — centrar imágenes de las 4 categorías */
.products-four .visual,
.products-four .real-product-visual.bubble-card {
  display: grid;
  place-items: center;
  margin-top: 24px;
  margin-bottom: 16px;
}

.products-four .visual img,
.products-four .real-product-visual.bubble-card img,
.products-four .bubble-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: 50% 50% !important;
  transform: none !important;
}

/* Globo: que se vea completo y centrado */
.products-four .product-card:nth-child(1) .visual img {
  object-fit: contain !important;
  object-position: 50% 52% !important;
  padding: 10px 12px 6px !important;
}

/* Productos y personalización: centrados dentro del recuadro */
.products-four .product-card:nth-child(2) .visual img,
.products-four .product-card:nth-child(3) .visual img {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 14px !important;
}

/* Decoración: llena el recuadro pero toma el centro de la foto */
.products-four .product-card:nth-child(4) .visual img {
  object-fit: cover !important;
  object-position: 50% 55% !important;
  padding: 0 !important;
}

@media (max-width: 700px) {
  .products-four .visual,
  .products-four .real-product-visual.bubble-card {
    margin-top: 20px;
    margin-bottom: 14px;
  }
}

/* HOTFIX 2026-08-14 ui4 — categorías: imagen realmente centrada dentro del área visual */
.products-four .product-card .tag {
  align-self: flex-start;
}

.products-four .visual,
.products-four .real-product-visual.bubble-card {
  height: 245px !important;
  margin-top: 30px !important;
  margin-bottom: 22px !important;
  padding: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Ya no obligamos la imagen a ocupar todo el alto/ancho del recuadro.
   Esto deja aire arriba y abajo y la centra visualmente. */
.products-four .product-card:nth-child(1) .visual img,
.products-four .product-card:nth-child(2) .visual img,
.products-four .product-card:nth-child(3) .visual img,
.products-four .product-card:nth-child(1) .real-product-visual img,
.products-four .product-card:nth-child(2) .real-product-visual img,
.products-four .product-card:nth-child(3) .real-product-visual img {
  width: auto !important;
  height: auto !important;
  max-width: 92% !important;
  max-height: 82% !important;
  margin: auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

/* La bolsa es más horizontal: un poco más ancha, pero siempre centrada. */
.products-four .product-card:nth-child(2) .visual img,
.products-four .product-card:nth-child(2) .real-product-visual img {
  max-width: 96% !important;
  max-height: 72% !important;
}

/* La taza necesita un poco más de aire para que no se sienta pegada abajo. */
.products-four .product-card:nth-child(3) .visual img,
.products-four .product-card:nth-child(3) .real-product-visual img {
  max-width: 86% !important;
  max-height: 78% !important;
}

/* Decoración sí llena el recuadro, pero con el punto de interés al centro. */
.products-four .product-card:nth-child(4) .visual,
.products-four .product-card:nth-child(4) .real-product-visual.bubble-card {
  padding: 0 !important;
}
.products-four .product-card:nth-child(4) .visual img,
.products-four .product-card:nth-child(4) .real-product-visual img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  transform: none !important;
}

@media (max-width: 700px) {
  .products-four .visual,
  .products-four .real-product-visual.bubble-card {
    height: 230px !important;
    margin-top: 24px !important;
    margin-bottom: 18px !important;
    padding: 14px !important;
  }
}


/* ===== Tienda + WhatsApp + redes 2026-08-14 ===== */
/* Evita que los iconos sociales se deformen a óvalos en cualquier contenedor. */
.social-links a,
.footer-info .social-links a,
.social-links.compact a {
  flex: 0 0 34px !important;
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  aspect-ratio: 1 / 1;
  padding: 0 !important;
  border-radius: 999px !important;
  line-height: 1;
  overflow: hidden;
}
.social-links.compact a { flex-basis: 30px !important; width: 30px !important; min-width: 30px !important; max-width: 30px !important; height: 30px !important; min-height: 30px !important; max-height: 30px !important; }

.store-page { background: #fffafd; min-height: 70vh; }
.store-hero {
  padding: 78px 6vw 54px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(239,79,153,.12), transparent 30%),
    radial-gradient(circle at 88% 5%, rgba(188,167,234,.18), transparent 28%),
    #fffafd;
  border-bottom: 1px solid #f1e4eb;
}
.store-hero h1 { max-width: 920px; margin: 10px auto 16px; font-size: clamp(42px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; }
.store-hero p { max-width: 720px; margin: 0 auto; color: #746777; font-size: 17px; line-height: 1.65; }
.store-catalog { padding-top: 52px; }
.store-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.store-search {
  display: flex; align-items: center; gap: 10px; width: min(620px, 100%); min-height: 52px;
  padding: 0 17px; border: 1px solid #eadde5; border-radius: 18px; background: #fff;
  box-shadow: 0 10px 30px rgba(72,48,62,.05);
}
.store-search svg { flex: 0 0 21px; width: 21px; height: 21px; color: #ef4f99; }
.store-search input { width: 100%; border: 0; outline: 0; background: transparent; color: #2a2430; font: inherit; font-size: 15px; }
.store-search input::placeholder { color: #a296a5; }
.store-result-count { white-space: nowrap; color: #8b7d8d; font-size: 13px; font-weight: 800; }
.store-category-filters { display: flex; gap: 9px; margin: 0 0 30px; padding: 2px 0 8px; overflow-x: auto; scrollbar-width: thin; }
.store-category-filters button {
  flex: 0 0 auto; padding: 10px 15px; border: 1px solid #eadde5; border-radius: 999px;
  background: #fff; color: #5f5361; font: inherit; font-size: 12px; font-weight: 850; cursor: pointer;
  transition: .2s ease;
}
.store-category-filters button:hover { border-color: #ef4f99; color: #d93683; transform: translateY(-1px); }
.store-category-filters button.active { border-color: #ef4f99; background: #ef4f99; color: #fff; box-shadow: 0 8px 20px rgba(239,79,153,.2); }
.store-product-grid { align-items: stretch; }
.store-product-grid .catalog-product-card { display: flex; flex-direction: column; }
.store-product-grid .catalog-product-body { display: flex; flex-direction: column; flex: 1; }
.store-product-grid .catalog-product-actions { margin-top: auto; }
.store-empty { padding: 55px 24px; border: 1px dashed #e5d4de; border-radius: 26px; text-align: center; background: #fff; color: #766979; }
.store-empty strong { display: block; margin-bottom: 8px; color: #2a2430; font-size: 21px; }
.store-empty .btn { margin-top: 15px; }
.store-help { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 60px 6vw 80px; padding: 34px 38px; border-radius: 28px; background: #2a2430; color: #fff; }
.store-help span { color: #ff9bc9; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.store-help h2 { margin: 8px 0 0; font-size: clamp(26px, 3vw, 42px); }
.store-help .btn { flex: 0 0 auto; }

@media (max-width: 780px) {
  .store-hero { padding: 54px 5vw 38px; text-align: left; }
  .store-hero h1 { margin-left: 0; }
  .store-toolbar { align-items: stretch; flex-direction: column; }
  .store-result-count { padding-left: 3px; }
  .store-help { align-items: flex-start; flex-direction: column; margin: 42px 5vw 60px; padding: 28px 24px; }
}

/* Personalización automática por categoría: Globos burbuja y Decoraciones */
.product-customizer-panel {
  margin: 22px 0 8px;
  padding: 20px;
  border: 1px solid #eadde5;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fff7fb);
  box-shadow: 0 14px 34px rgba(57, 39, 54, .07);
}
.product-customizer-kicker {
  display: block;
  margin-bottom: 5px;
  color: #e73e8d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.product-customizer-panel h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.08;
}
.product-customizer-intro,
.product-customizer-help {
  color: #6e626b;
}
.product-customizer-intro { margin: 0 0 16px; }
.product-customizer-help { display: block; margin-top: 8px; }
.product-customizer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.product-customizer-grid.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-customizer-field {
  display: grid;
  gap: 7px;
  color: #30262f;
  font-size: 13px;
  font-weight: 800;
}
.product-customizer-field input,
.product-customizer-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #ded3da;
  border-radius: 13px;
  outline: none;
  background: #fff;
  color: #2d2530;
  font: inherit;
  font-weight: 600;
}
.product-customizer-field input:focus,
.product-customizer-field select:focus {
  border-color: #ed4b98;
  box-shadow: 0 0 0 3px rgba(237, 75, 152, .11);
}
@media (max-width: 760px) {
  .product-customizer-panel { padding: 16px; border-radius: 18px; }
  .product-customizer-grid,
  .product-customizer-grid.three-columns { grid-template-columns: 1fr; }
}


/* === Party Shop: datos de entrega configurables para globos === */
.delivery-order-panel{
  margin-top:22px;padding:22px;border:1px solid #efd8e4;border-radius:24px;
  background:linear-gradient(145deg,#fff 0%,#fff8fb 58%,#fff3f8 100%);
  box-shadow:0 14px 36px rgba(77,41,60,.08)
}
.delivery-order-heading{display:flex;gap:14px;align-items:flex-start;margin-bottom:18px}
.delivery-order-heading h3{margin:3px 0 4px;font-size:22px}.delivery-order-heading p{margin:0;color:#6f6068;line-height:1.45}
.delivery-order-icon{width:46px;height:46px;flex:0 0 46px;display:grid;place-items:center;border-radius:50%;background:#ffe5f1;font-size:22px;box-shadow:inset 0 0 0 1px #f8c8de}
.delivery-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:14px}
.delivery-full{grid-column:1/-1}.delivery-form-grid textarea{resize:vertical;min-height:78px}
.delivery-schedule-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:16px}
.delivery-picker-card{position:relative;display:block;padding:16px;border:1px solid #ead7e1;border-radius:20px;background:#fff;overflow:hidden;cursor:pointer}
.delivery-picker-label{display:block;font-size:12px;font-weight:900;letter-spacing:.04em;color:#4b3943;margin-bottom:10px}
.delivery-picker-ui{display:flex;align-items:center;gap:10px;min-height:42px}.delivery-picker-emoji{font-size:24px}.delivery-picker-value{font-weight:850;font-size:15px;color:#29212b;text-transform:capitalize}
.delivery-date-input{width:100%;margin-top:10px!important;background:#fff7fb!important;border-color:#eccfdd!important}
.delivery-picker-card small{display:block;margin-top:8px;color:#807078;line-height:1.35}
.delivery-digital-clock{display:flex;align-items:center;justify-content:center;min-height:62px;border-radius:16px;background:linear-gradient(145deg,#271f2a,#161218);color:#ff82b8;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:32px;font-weight:900;letter-spacing:.1em;font-variant-numeric:tabular-nums;box-shadow:inset 0 0 0 1px rgba(255,255,255,.07),0 8px 20px rgba(30,20,27,.16);text-shadow:0 0 14px rgba(255,83,159,.35)}
.delivery-time-input{width:100%;margin-top:10px!important;background:#fff7fb!important;border-color:#eccfdd!important;font-weight:800;font-variant-numeric:tabular-nums}
.delivery-area-notice{display:flex;gap:12px;align-items:flex-start;margin-top:16px;padding:14px 16px;border-radius:18px;background:#f8efff;border:1px solid #ead8f5;color:#493f50}.delivery-area-notice>span{font-size:20px}.delivery-area-notice strong{display:block;margin-bottom:3px}.delivery-area-notice p{margin:0;line-height:1.4;font-size:13px}
.delivery-form-error{margin-top:14px;padding:12px 14px;border-radius:14px;background:#fff0f2;border:1px solid #ffc8d0;color:#9a2639;font-weight:800;font-size:13px}
.product-delivery-admin-note{margin-top:12px;padding:12px 14px;border-radius:14px;background:#fff6fa;border:1px solid #f0d6e2;display:flex;flex-direction:column;gap:4px;font-size:13px;color:#6c5661}.product-delivery-admin-note b{color:#3a2932}
.bubble-delivery-panel{margin-bottom:6px}
@media(max-width:720px){.delivery-form-grid,.delivery-schedule-grid{grid-template-columns:1fr}.delivery-full{grid-column:auto}.delivery-order-panel{padding:17px;border-radius:20px}.delivery-digital-clock{font-size:28px}}


/* Modo vacaciones y disponibilidad */
.vacation-inline-note{display:block;margin-top:8px;color:#b12d6e;font-weight:700;line-height:1.4}
.delivery-picker-card input:disabled{opacity:.55;cursor:not-allowed;background:#f4f1f4}

/* Paletas configurables por producto */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.product-color-palettes{margin:20px 0;padding:20px;border:1px solid #efdce6;border-radius:22px;background:linear-gradient(145deg,#fff,#fff8fb);box-shadow:0 12px 32px rgba(69,39,55,.05)}
.product-color-palettes-head h3{margin:5px 0 5px;font-size:21px;letter-spacing:-.02em}.product-color-palettes-head p{margin:0 0 16px;color:#70636e;line-height:1.5;font-size:13px}
.product-color-palette-slot{padding:14px 0;border-top:1px solid #f0e4ea}.product-color-palette-slot:first-of-type{border-top:0}.product-color-palette-label{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:10px}.product-color-palette-label strong{font-size:13px}.product-color-palette-label span{color:#9b607c;font-size:12px;font-weight:800}
.product-color-swatch-grid{display:flex;flex-wrap:wrap;gap:9px}.product-color-swatch{position:relative;width:38px;height:38px;border:3px solid #fff;border-radius:50%;box-shadow:0 0 0 1px #d9cbd2;cursor:pointer;transition:transform .16s ease,box-shadow .16s ease}.product-color-swatch:hover{transform:translateY(-2px)}.product-color-swatch.selected{box-shadow:0 0 0 3px #ef4f99,0 6px 15px rgba(239,79,153,.18);transform:scale(1.06)}.product-color-swatch.selected::after{content:'✓';position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-weight:1000;text-shadow:0 1px 3px rgba(0,0,0,.65);font-size:15px}.product-palette-error{margin-top:10px}
@media(max-width:620px){.product-color-palettes{padding:16px}.product-color-swatch{width:36px;height:36px}.product-color-palette-label{align-items:flex-start;flex-direction:column;gap:3px}}


/* HOTFIX 2026-08-14: acceso visible al administrador */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.admin-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(239, 79, 153, .34);
  border-radius: 999px;
  background: #fff;
  color: #2a2430;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(65, 44, 57, .05);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.admin-login-button:hover {
  transform: translateY(-1px);
  background: #ef4f99;
  border-color: #ef4f99;
  color: #fff;
}
@media (max-width: 760px) {
  .header-actions { gap: 7px; }
  .admin-login-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }
}
@media (max-width: 420px) {
  .admin-login-button {
    max-width: 102px;
    padding: 0 10px;
    font-size: 10px;
  }
}


/* CTA En Punto Web al final del sitio */
.enpunto-web-cta {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,111,174,.16), transparent 34%),
    rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.enpunto-web-cta-copy {
  min-width: 0;
}
.enpunto-web-cta-kicker {
  display: block;
  margin-bottom: 5px;
  color: #ff8fc3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}
.enpunto-web-cta strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.enpunto-web-cta p {
  margin: 7px 0 0;
  color: #cfc4d1;
  font-size: 13px;
  line-height: 1.45;
}
.enpunto-web-whatsapp {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: #1d9f62;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  transition: transform .18s ease, filter .18s ease;
}
.enpunto-web-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.07);
}
.enpunto-web-whatsapp-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-size: 14px;
}
@media (max-width: 680px) {
  .enpunto-web-cta {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .enpunto-web-whatsapp {
    width: 100%;
  }
}

/* HOTFIX 2026-08-14 — categorías expandidas y centradas */
.products-four .visual,
.products-four .real-product-visual.bubble-card {
  height: 255px !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f8f3f6 !important;
}

/* Todas las imágenes llenan el recuadro, conservando el centro como foco. */
.products-four .product-card .visual img,
.products-four .product-card .real-product-visual img,
.products-four .product-card .bubble-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  transform: none !important;
}

/* Ajustes mínimos de foco por fotografía, sin perder el centrado. */
.products-four .product-card:nth-child(1) .visual img { object-position: 50% 50% !important; }
.products-four .product-card:nth-child(2) .visual img { object-position: 50% 50% !important; }
.products-four .product-card:nth-child(3) .visual img { object-position: 50% 50% !important; }
.products-four .product-card:nth-child(4) .visual img { object-position: 50% 50% !important; }

@media (max-width: 700px) {
  .products-four .visual,
  .products-four .real-product-visual.bubble-card {
    height: 230px !important;
    padding: 0 !important;
  }
}


/* HOTFIX — las imágenes de categorías se ven expandidas de verdad.
   Algunas fotos ya traen mucho margen blanco dentro del propio archivo,
   así que además de cover hacemos un zoom centrado. */
.products-four .visual,
.products-four .real-product-visual.bubble-card {
  position: relative !important;
  overflow: hidden !important;
}
.products-four .product-card .visual img,
.products-four .product-card .real-product-visual img {
  transform-origin: 50% 50% !important;
  will-change: transform;
}
.products-four .product-card:nth-child(1) .visual img,
.products-four .product-card:nth-child(1) .real-product-visual img {
  transform: scale(1.42) !important;
  object-position: 50% 50% !important;
}
.products-four .product-card:nth-child(2) .visual img,
.products-four .product-card:nth-child(2) .real-product-visual img {
  transform: scale(1.38) !important;
  object-position: 50% 50% !important;
}
.products-four .product-card:nth-child(3) .visual img,
.products-four .product-card:nth-child(3) .real-product-visual img {
  transform: scale(1.35) !important;
  object-position: 50% 50% !important;
}
.products-four .product-card:nth-child(4) .visual img,
.products-four .product-card:nth-child(4) .real-product-visual img {
  transform: scale(1.06) !important;
  object-position: 50% 50% !important;
}
@media (max-width: 700px) {
  .products-four .product-card:nth-child(1) .visual img,
  .products-four .product-card:nth-child(1) .real-product-visual img { transform: scale(1.34) !important; }
  .products-four .product-card:nth-child(2) .visual img,
  .products-four .product-card:nth-child(2) .real-product-visual img { transform: scale(1.30) !important; }
  .products-four .product-card:nth-child(3) .visual img,
  .products-four .product-card:nth-child(3) .real-product-visual img { transform: scale(1.28) !important; }
  .products-four .product-card:nth-child(4) .visual img,
  .products-four .product-card:nth-child(4) .real-product-visual img { transform: scale(1.03) !important; }
}


/* HOTFIX 2026-08-14 — Tienda limpia + jerarquía de detalle */
.store-product-card .catalog-product-image {
  height: 300px;
  padding: 16px;
}
.store-product-card .catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-product-body {
  align-items: center;
  padding: 20px 18px 22px;
  text-align: center;
}
.store-product-body h3 {
  width: 100%;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.28;
}
.store-product-body h3 a {
  color: #2a2430;
  text-decoration: none;
}
.store-product-price {
  width: 100%;
  justify-content: center;
  margin: 0 0 16px;
}
.store-product-price strong {
  font-size: 24px;
}
.store-product-actions {
  width: 100%;
  justify-content: center;
  margin-top: 0 !important;
}
.store-product-actions .btn {
  flex: 0 1 190px;
  min-width: 160px;
  justify-content: center;
  text-align: center;
}

.product-detail-copy {
  align-self: start;
  padding-top: 18px;
}
.product-detail-copy h1 {
  margin: 0 0 14px;
  max-width: 620px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.product-detail-description-block {
  margin: 0;
  max-width: 620px;
}
.product-detail-description-label {
  margin: 0 0 7px;
  color: #ef4f99;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-detail-description {
  margin: 0;
  max-width: 620px;
  color: #706473;
  font-size: 17px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.product-detail-price {
  margin: 24px 0 18px;
}

@media (max-width: 620px) {
  .store-product-card .catalog-product-image {
    height: 260px;
  }
  .store-product-body h3 {
    font-size: 17px;
  }
  .product-detail-copy {
    padding-top: 4px;
  }
  .product-detail-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
}

/* =========================================================
   RESPONSIVE 2026-08-14 — Tienda + detalle de producto
   Móvil / tablet / laptop / desktop / pantallas grandes
   ========================================================= */
html, body { max-width: 100%; }
img, svg { max-width: 100%; }

/* El header conserva acceso a todas las secciones sin desbordarse. */
header { gap: 18px; }
header nav { min-width: 0; }

/* Tienda: tarjetas proporcionales y consistentes en cualquier ancho. */
.store-catalog { width: 100%; }
.store-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.store-product-card { min-width: 0; }
.store-product-card .catalog-product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: clamp(12px, 1.3vw, 18px);
}
.store-product-card .catalog-product-image img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: contain;
}
.store-product-body {
  min-width: 0;
  padding: clamp(16px, 1.5vw, 22px);
}
.store-product-body h3 {
  min-height: 2.55em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-wrap: anywhere;
}
.store-product-price strong { font-size: clamp(20px, 1.7vw, 25px); }
.store-product-actions .btn {
  width: min(190px, 100%);
  min-width: 0;
  min-height: 44px;
}

/* Detalle: imagen flexible y columna de información sin cortes. */
.product-detail-main {
  width: 100%;
  padding: clamp(34px, 5vw, 70px) clamp(18px, 6vw, 86px) clamp(58px, 7vw, 96px);
}
.product-detail {
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4.2vw, 58px);
}
.product-detail-gallery,
.product-detail-copy { min-width: 0; }
.product-detail-main-image {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: clamp(18px, 2.7vw, 34px);
}
.product-detail-main-image img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}
.product-detail-thumbs {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 3px;
}
.product-detail-copy h1,
.product-detail-description,
.product-detail-option span { overflow-wrap: anywhere; }
.product-detail-copy .actions { width: 100%; }

/* Pantallas muy grandes */
@media (min-width: 1500px) {
  .store-catalog { max-width: 1460px; margin-inline: auto; }
  .store-help { max-width: 1320px; margin-left: auto; margin-right: auto; }
  .store-product-grid { gap: 26px; }
  .store-product-card .catalog-product-image { max-height: 340px; }
}

/* Laptop pequeña / tablet horizontal */
@media (max-width: 1180px) {
  header { padding-left: 4vw; padding-right: 4vw; }
  header nav { gap: 18px; font-size: 13px; }
  .store-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-detail { grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); }
}

/* Tablet vertical: header en dos renglones y producto en una columna. */
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  header .brand { order: 1; }
  header .header-actions,
  header > .cart { order: 2; margin-left: auto; }
  header nav {
    order: 3;
    display: flex !important;
    width: 100%;
    gap: 22px;
    padding: 8px 0 2px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  header nav::-webkit-scrollbar { display: none; }

  .store-hero { padding: 54px 5vw 40px; }
  .store-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
  }
  .product-detail-main-image {
    max-width: 680px;
    margin-inline: auto;
  }
  .product-detail-copy { padding-top: 0; }
  .product-detail-copy h1 { max-width: none; font-size: clamp(34px, 7vw, 54px); }
  .product-detail-description { max-width: none; }
}

/* Móvil grande / phablet */
@media (max-width: 620px) {
  .top-location-bar { padding: 8px 4vw; gap: 5px; font-size: 11px; line-height: 1.35; }
  header { padding-left: 16px; padding-right: 16px; }
  header .brand img { width: 96px; }
  header nav { gap: 18px; font-size: 12px; }
  .header-actions { gap: 6px; }
  .admin-login-button { min-height: 38px; padding: 0 11px; }
  .cart { min-height: 38px; padding: 9px 12px; }

  .store-hero { padding: 40px 18px 30px; text-align: center; }
  .store-hero h1 {
    margin: 7px auto 12px;
    font-size: clamp(36px, 11vw, 50px);
    line-height: .98;
  }
  .store-hero p { font-size: 15px; line-height: 1.55; }
  .store-catalog.section { padding: 36px 16px 50px; }
  .store-toolbar { gap: 10px; margin-bottom: 14px; }
  .store-search { min-height: 48px; border-radius: 15px; }
  .store-category-filters {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 22px;
  }
  .store-product-grid { grid-template-columns: 1fr; gap: 18px; }
  .store-product-card {
    width: min(100%, 460px);
    margin-inline: auto;
    border-radius: 22px;
  }
  .store-product-card .catalog-product-image {
    height: auto;
    max-height: none;
    aspect-ratio: 1 / 1;
  }
  .store-product-body h3 { min-height: 0; font-size: 18px; }
  .store-product-actions .btn { width: min(230px, 100%); flex-basis: auto; }
  .store-help { margin: 34px 16px 52px; padding: 24px 20px; border-radius: 22px; }
  .store-help .btn { width: 100%; }

  .product-detail-main { padding: 28px 16px 56px; }
  .product-detail { gap: 22px; }
  .product-detail-main-image {
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    padding: 16px;
  }
  .product-detail-main-image img { max-height: none; }
  .product-detail-thumbs button { flex-basis: 68px; width: 68px; height: 68px; }
  .product-detail-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(31px, 10vw, 44px);
    line-height: 1.02;
  }
  .product-detail-description { font-size: 15px; line-height: 1.58; }
  .product-detail-price { margin: 18px 0 14px; font-size: 30px; }
  .product-detail-option {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }
  .product-customizer-panel,
  .product-color-palettes,
  .delivery-order-panel { width: 100%; margin-left: 0; margin-right: 0; }
  .product-detail-copy .actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .product-detail-copy .actions .btn { width: 100%; min-height: 48px; }
}

/* Móviles compactos */
@media (max-width: 390px) {
  header { padding-left: 12px; padding-right: 12px; }
  header .brand img { width: 88px; }
  .admin-login-button { max-width: 92px; padding: 0 8px; font-size: 9px; }
  .cart { padding-left: 10px; padding-right: 10px; }
  .store-catalog.section,
  .product-detail-main { padding-left: 12px; padding-right: 12px; }
  .store-category-filters { margin-left: -12px; margin-right: -12px; padding-left: 12px; padding-right: 12px; }
  .store-product-body { padding: 16px 14px 18px; }
  .product-detail-main-image { padding: 12px; border-radius: 18px; }
  .product-detail-thumbs button { flex-basis: 60px; width: 60px; height: 60px; }
  .product-detail-copy h1 { font-size: clamp(29px, 10.5vw, 38px); }
  .delivery-order-panel,
  .product-customizer-panel,
  .product-color-palettes { padding: 14px; border-radius: 18px; }
}


/* HOTFIX: fuentes de globo y color de texto */
@font-face{font-family:'Brittany Signature';src:url('/assets/fonts/brittany-signature.ttf') format('truetype'),url('/assets/fonts/BrittanySignature(2).ttf') format('truetype');font-display:swap;font-weight:400;font-style:normal}
@font-face{font-family:'Coolvetica';src:url('/assets/fonts/coolvetica.otf') format('opentype'),url('/assets/fonts/Coolvetica%20Rg(2).otf') format('opentype');font-display:swap;font-weight:400;font-style:normal}
@font-face{font-family:'Strawberry Tofu';src:url('/assets/fonts/strawberry-tofu.ttf') format('truetype'),url('/assets/fonts/StrawberryTofu(2).ttf') format('truetype');font-display:swap;font-weight:400;font-style:normal}
@font-face{font-family:'Simple Mandala';src:url('/assets/fonts/simple-mandala.otf') format('opentype'),url('/assets/fonts/Simple%20Mandala(2).otf') format('opentype');font-display:swap;font-weight:400;font-style:normal}
@font-face{font-family:'Hello Valentina';src:url('/assets/fonts/hello-valentina.ttf') format('truetype'),url('/assets/fonts/Hello%20Valentina.ttf') format('truetype');font-display:swap;font-weight:400;font-style:normal}
.balloon-typography-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:14px;align-items:start}.balloon-type-field{display:grid;gap:8px;min-width:0}.balloon-type-field>span{font-size:12px;font-weight:850;color:#5b4b56}.text-color-options{display:flex;flex-wrap:wrap;gap:8px}.text-color-option{appearance:none;border:1px solid #e1d2da;border-radius:999px;background:#fff;padding:7px 10px;display:inline-flex;align-items:center;gap:7px;cursor:pointer;font:inherit;color:#332b34}.text-color-option i{width:20px;height:20px;border-radius:50%;display:block;border:1px solid rgba(0,0,0,.18)}.text-color-option b{font-size:12px}.text-color-option.selected{border-color:#ef4f99;box-shadow:0 0 0 2px rgba(239,79,153,.12)}.text-word-helper{display:block;margin-top:7px;color:#8b7280;font-size:11px;line-height:1.35}@media(max-width:620px){.balloon-typography-grid{grid-template-columns:1fr}.text-color-option{flex:1 1 auto;justify-content:center}}

/* HOTFIX 2026-08-14: mezcla de tipografías por palabra */
.word-font-mixer{
  grid-column:1/-1;
  margin-top:12px;
  padding:14px;
  border:1px solid #ead8e2;
  border-radius:16px;
  background:#fffafc;
}
.word-font-mixer-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:11px}
.word-font-mixer-head strong{display:block;color:#2e2730;font-size:13px}
.word-font-mixer-head span{display:block;margin-top:3px;color:#8a7581;font-size:11px;line-height:1.35}
.word-font-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.word-font-row{display:grid;grid-template-columns:minmax(90px,.8fr) minmax(0,1.2fr);gap:10px;align-items:center;padding:10px;border:1px solid #eee0e7;border-radius:13px;background:#fff}
.word-font-preview{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#2b2330;font-size:24px;line-height:1.08}
.word-font-row select{width:100%;min-width:0;min-height:40px;padding:0 10px;border:1px solid #ded3da;border-radius:10px;background:#fff;color:#302830;font:inherit;font-size:12px}
.product-detail-main-image{position:relative;overflow:hidden}
.product-text-live-preview{position:absolute;left:50%;top:44%;z-index:4;transform:translate(-50%,-50%);width:min(72%,420px);pointer-events:auto;text-align:center;line-height:.98;cursor:grab;touch-action:none;user-select:none;-webkit-user-select:none;will-change:left,top}
.product-text-live-preview>small{display:inline-block;margin-bottom:8px;padding:4px 8px;border-radius:999px;background:rgba(255,255,255,.82);color:#5f5360;font-family:Arial,sans-serif!important;font-size:9px;font-weight:900;letter-spacing:.08em;text-shadow:none;text-transform:uppercase;backdrop-filter:blur(4px)}
.product-text-live-preview-words{display:flex;flex-wrap:wrap;justify-content:center;gap:.08em .28em;font-size:clamp(24px,3.4vw,46px);font-weight:600}
.product-text-live-preview-words span{display:inline-block;white-space:nowrap}
.product-text-live-preview.dragging{cursor:grabbing}
.product-text-live-preview.dragging>small{background:#2f2634;color:#fff}
.product-preview-move-tools{position:absolute;right:14px;bottom:14px;z-index:5;display:flex;align-items:center;gap:8px;padding:7px 8px 7px 11px;border:1px solid rgba(69,45,60,.12);border-radius:999px;background:rgba(255,255,255,.9);box-shadow:0 8px 22px rgba(61,38,51,.1);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);color:#6a5964;font-size:10px;font-weight:800}
.product-preview-move-tools button{min-height:30px;padding:0 11px;border:0;border-radius:999px;background:#2d2630;color:#fff;font:900 10px/1 inherit;cursor:pointer}
.product-preview-move-tools button:hover{background:#ef4f99}

@media(max-width:620px){
  .word-font-grid{grid-template-columns:1fr}
  .word-font-row{grid-template-columns:minmax(82px,.8fr) minmax(0,1.2fr)}
  .word-font-preview{font-size:21px}
  .product-text-live-preview{top:43%;width:78%}
  .product-text-live-preview-words{font-size:clamp(22px,8vw,34px)}
}


/* HOTFIX 2026-08-14 v2: mezcla simple y controlada de dos fuentes */
.balloon-font-panel{display:grid;gap:12px;margin:12px 0}.balloon-font-selectors{display:grid;grid-template-columns:1fr;gap:10px}.balloon-font-panel.mixed .balloon-font-selectors{grid-template-columns:repeat(2,minmax(0,1fr))}.balloon-font-select-wrap{display:grid;grid-template-columns:minmax(90px,.7fr) minmax(0,1.3fr);gap:9px;align-items:center;padding:8px;border:1px solid #eadde4;border-radius:13px;background:#fff}.balloon-font-select-wrap strong{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:22px;line-height:1}.balloon-font-select-wrap select{width:100%;min-width:0;min-height:40px;padding:0 9px;border:1px solid #ded3da;border-radius:9px;background:#fff;color:#302830;font:inherit;font-size:12px}.two-font-word-assigner{padding:13px;border:1px solid #eadde4;border-radius:15px;background:linear-gradient(180deg,#fff,#fff9fc)}.two-font-word-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:11px}.two-font-word-head strong{display:block;color:#2e2730;font-size:13px}.two-font-word-head span{display:block;margin-top:3px;color:#8a7581;font-size:11px;line-height:1.35}.two-font-reset{flex:0 0 auto;border:0;border-radius:999px;padding:7px 10px;background:#f7edf2;color:#7b5267;font-size:10px;font-weight:900;cursor:pointer}.two-font-word-chips{display:flex;flex-wrap:wrap;gap:9px}.two-font-word-chip{position:relative;min-height:48px;padding:9px 32px 9px 13px;border:1px solid #eadde4;border-radius:13px;background:#fff;color:#2c2630;font-size:22px;line-height:1;cursor:pointer;box-shadow:0 4px 12px rgba(70,42,58,.04);transition:transform .15s ease,border-color .15s ease,box-shadow .15s ease}.two-font-word-chip:hover{transform:translateY(-1px)}.two-font-word-chip.secondary{border-color:#ef4f99;box-shadow:0 0 0 2px rgba(239,79,153,.09),0 5px 14px rgba(239,79,153,.09)}.two-font-word-chip small{position:absolute;right:9px;top:50%;transform:translateY(-50%);display:grid;place-items:center;width:18px;height:18px;border-radius:50%;background:#f3edf1;color:#76566a;font-family:Arial,sans-serif;font-size:9px;font-weight:900}.two-font-word-chip.secondary small{background:#ef4f99;color:#fff}.balloon-text-color-field{margin-top:10px}@media(max-width:620px){.balloon-font-panel.mixed .balloon-font-selectors{grid-template-columns:1fr}.balloon-font-select-wrap{grid-template-columns:minmax(78px,.65fr) minmax(0,1.35fr)}.balloon-font-select-wrap strong{font-size:20px}.two-font-word-head{flex-direction:column}.two-font-word-chip{font-size:20px}}
\n\n/* =========================================================\n   TIPOGRAFÍAS + NÚMEROS METÁLICOS V8\n   ========================================================= */\n.balloon-font-select-wrap strong,.two-font-word-chip span,.product-text-live-preview-words span{font-synthesis:none}\n.metallic-number-selector{margin-top:18px;padding:18px;border:1px solid #eed9e3;border-radius:20px;background:linear-gradient(145deg,#fff9fc,#fff);box-shadow:0 10px 26px rgba(85,43,64,.045)}\n.metallic-number-heading{margin-bottom:15px}.metallic-number-heading h3{margin:3px 0 5px;color:#2d2630;font-size:20px}.metallic-number-heading p{margin:0;color:#83727d;font-size:13px;line-height:1.45}.metallic-number-group+ .metallic-number-group{margin-top:15px}.metallic-number-group>strong{display:block;margin-bottom:9px;color:#4c3e47;font-size:12px}\n.metallic-number-digits{display:grid;grid-template-columns:repeat(10,minmax(40px,1fr));gap:7px}.metallic-number-digit{min-width:0;height:44px;border:1px solid #e3d4dc;border-radius:12px;background:#fff;color:#352b33;font:900 17px/1 inherit;cursor:pointer;transition:.15s ease}.metallic-number-digit:hover{transform:translateY(-1px);border-color:#ef9fc4}.metallic-number-digit.selected{border-color:#ef4f99;background:#ef4f99;color:#fff;box-shadow:0 7px 16px rgba(239,79,153,.2)}\n.metallic-number-colors{display:flex;flex-wrap:wrap;gap:9px}.metallic-number-color{display:inline-flex;align-items:center;gap:8px;min-height:42px;padding:7px 11px;border:1px solid #e5d7df;border-radius:999px;background:#fff;color:#5b4a55;font:800 11px/1 inherit;cursor:pointer}.metallic-number-color i{display:block;width:25px;height:25px;border-radius:50%;border:1px solid rgba(0,0,0,.13);box-shadow:inset 0 1px 2px rgba(255,255,255,.8)}.metallic-number-color.selected{border-color:#ef4f99;box-shadow:0 0 0 3px rgba(239,79,153,.09);color:#c83377}.metallic-number-error{margin-top:12px}\n@media(max-width:760px){.metallic-number-digits{grid-template-columns:repeat(5,1fr)}}\n@media(max-width:390px){.metallic-number-color{padding:6px 9px}.metallic-number-color i{width:22px;height:22px}}\n.balloon-font-load-status{display:block;margin-top:5px;font-size:10px;font-weight:800;line-height:1.35}.balloon-font-load-status.loading{color:#8d7a85}.balloon-font-load-status.ready{color:#2f8a5e}.balloon-font-load-status.missing{color:#bf3b55}


/* =========================================================
   HOME V15 — CTA de globos + destacados sociales
   ========================================================= */
.home-bubble-promo{padding-top:clamp(34px,5vw,72px);padding-bottom:clamp(34px,5vw,72px)}
.home-bubble-promo-card{position:relative;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:clamp(24px,5vw,72px);align-items:center;overflow:hidden;padding:clamp(26px,5vw,64px);border:1px solid #efdbe5;border-radius:34px;background:radial-gradient(circle at 86% 18%,rgba(244,184,209,.38),transparent 29%),radial-gradient(circle at 72% 82%,rgba(188,167,234,.24),transparent 30%),linear-gradient(135deg,#fff 0%,#fff7fb 55%,#faf6ff 100%);box-shadow:0 22px 70px rgba(84,48,67,.08)}
.home-bubble-promo-card:before,.home-bubble-promo-card:after{content:"";position:absolute;border-radius:50%;pointer-events:none}.home-bubble-promo-card:before{width:170px;height:170px;right:-65px;top:-70px;border:28px solid rgba(239,79,153,.08)}.home-bubble-promo-card:after{width:90px;height:90px;left:42%;bottom:-50px;background:rgba(188,167,234,.12)}
.home-bubble-promo-copy{position:relative;z-index:2}.home-bubble-promo-copy h2{margin:8px 0 14px;max-width:680px;font-size:clamp(36px,5vw,66px);line-height:.98;letter-spacing:-.055em;color:#2b2530}.home-bubble-promo-copy p{max-width:610px;margin:0;color:#756775;font-size:clamp(15px,1.35vw,18px);line-height:1.7}
.home-bubble-promo-features{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0}.home-bubble-promo-features span{padding:8px 12px;border:1px solid #efdbe5;border-radius:999px;background:rgba(255,255,255,.82);color:#685762;font-size:12px;font-weight:800}.home-bubble-promo-features span:before{content:"✓";margin-right:6px;color:#e5408b}
.home-bubble-promo-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap}.home-bubble-text-link{color:#6f5d68;font-size:13px;font-weight:850;text-decoration:none;border-bottom:1px solid #d8bdca}.home-bubble-text-link:hover{color:#d93b82;border-color:#d93b82}
.home-bubble-promo-visual{position:relative;z-index:2;display:block;min-height:430px;overflow:hidden;border:1px solid rgba(231,201,216,.92);border-radius:28px;background:#fff;text-decoration:none;box-shadow:0 20px 52px rgba(79,43,63,.12)}.home-bubble-promo-visual img{width:100%;height:100%;min-height:430px;max-height:540px;object-fit:contain;display:block;background:linear-gradient(180deg,#fff,#fcf8fa);transition:transform .35s ease}.home-bubble-promo-visual:hover img{transform:scale(1.025)}
.home-bubble-promo-badge{position:absolute;left:18px;top:18px;z-index:3;padding:8px 12px;border-radius:999px;background:#ef4f99;color:#fff;font-size:11px;font-weight:900;box-shadow:0 8px 22px rgba(239,79,153,.24)}.home-bubble-promo-float{position:absolute;left:50%;bottom:16px;z-index:3;transform:translateX(-50%);width:max-content;max-width:calc(100% - 32px);padding:10px 15px;border:1px solid rgba(255,255,255,.8);border-radius:999px;background:rgba(42,36,48,.78);backdrop-filter:blur(12px);color:#fff;font-size:11px;font-weight:850;box-shadow:0 10px 28px rgba(32,23,30,.16)}
.social-highlights{padding-top:clamp(42px,6vw,88px);padding-bottom:clamp(42px,6vw,88px)}.social-highlights-head{max-width:760px}.social-highlights-head p{margin-top:10px;color:#7d6e78;line-height:1.65}.social-highlight-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:28px}.social-highlight-card{overflow:hidden;border:1px solid #eadce4;border-radius:24px;background:#fff;box-shadow:0 14px 38px rgba(79,48,66,.06);transition:transform .2s ease,box-shadow .2s ease}.social-highlight-card:hover{transform:translateY(-4px);box-shadow:0 22px 50px rgba(79,48,66,.10)}.social-highlight-media{position:relative;display:block;aspect-ratio:1.2/1;overflow:hidden;background:#f6eff4}.social-highlight-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}.social-highlight-card:hover .social-highlight-media img{transform:scale(1.035)}.social-highlight-placeholder{display:grid;place-items:center;width:100%;height:100%;font-size:76px;font-weight:950;color:#fff;background:linear-gradient(135deg,#ef4f99,#8e65d6)}
.social-highlight-platform{position:absolute;left:14px;top:14px;display:inline-flex;align-items:center;gap:7px;padding:8px 11px;border-radius:999px;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);color:#332a32;font-size:11px;font-weight:900;box-shadow:0 8px 18px rgba(53,34,45,.08)}.social-highlight-platform b{display:grid;place-items:center;width:20px;height:20px;border-radius:50%;background:#2b2530;color:#fff;font-size:11px}.social-highlight-card.instagram .social-highlight-platform b{background:linear-gradient(135deg,#f8c14e,#e24491 55%,#7356d8)}.social-highlight-card.tiktok .social-highlight-platform b{background:#17151a}.social-highlight-card.facebook .social-highlight-platform b{background:#1877f2}
.social-highlight-body{padding:18px 18px 20px}.social-highlight-kicker{display:flex;align-items:center;justify-content:space-between;gap:10px;color:#9a8791;font-size:10px;font-weight:800}.social-highlight-kicker strong{color:#d63b80}.social-highlight-body h3{margin:10px 0 7px;color:#302932;font-size:20px;letter-spacing:-.025em}.social-highlight-body p{min-height:44px;margin:0 0 15px;color:#756874;font-size:13px;line-height:1.55}.social-highlight-link{display:inline-flex;color:#352e36;font-size:12px;font-weight:900;text-decoration:none}.social-highlight-link:hover{color:#d63b80}
@media(max-width:960px){.home-bubble-promo-card{grid-template-columns:1fr}.home-bubble-promo-visual{min-height:360px}.home-bubble-promo-visual img{min-height:360px;max-height:470px}.social-highlight-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.social-highlight-card:last-child{grid-column:1/-1;max-width:calc(50% - 9px)}}
@media(max-width:620px){.home-bubble-promo-card{padding:22px;border-radius:24px}.home-bubble-promo-copy h2{font-size:38px}.home-bubble-promo-actions{align-items:stretch;flex-direction:column}.home-bubble-promo-actions .btn{width:100%;text-align:center}.home-bubble-text-link{text-align:center;border:0}.home-bubble-promo-visual{min-height:310px;border-radius:20px}.home-bubble-promo-visual img{min-height:310px;max-height:390px}.home-bubble-promo-float{font-size:10px}.social-highlight-grid{grid-template-columns:1fr}.social-highlight-card:last-child{grid-column:auto;max-width:none}.social-highlight-media{aspect-ratio:1.32/1}.social-highlight-body p{min-height:0}}


/* =========================================================
   NÚMEROS METÁLICOS DOBLES V16
   ========================================================= */
.metallic-number-entry{
  padding:14px;
  border:1px solid #f0dce6;
  border-radius:16px;
  background:#fff;
}
.metallic-number-entry + .metallic-number-entry{margin-top:12px}
.metallic-number-entry-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.metallic-number-entry-head>strong{font-size:13px;color:#3b3038}
.metallic-number-entry .metallic-number-group>span{
  display:block;
  margin-bottom:8px;
  color:#5e4d57;
  font-size:11px;
  font-weight:850;
}
.metallic-number-remove{
  border:0;
  background:#fff0f6;
  color:#c73578;
  border-radius:999px;
  padding:7px 10px;
  font-size:10px;
  font-weight:900;
  cursor:pointer;
}
.metallic-number-add{
  width:100%;
  margin-top:12px;
  min-height:44px;
  border:1px dashed #ed8fba;
  border-radius:14px;
  background:#fff7fb;
  color:#c83478;
  font:900 12px/1 inherit;
  cursor:pointer;
  transition:.15s ease;
}
.metallic-number-add:hover{background:#ffeef6;border-color:#ef4f99;transform:translateY(-1px)}
.metallic-number-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  padding:11px 13px;
  border-radius:14px;
  background:#f9f5f7;
  color:#665660;
  font-size:12px;
}
.metallic-number-total strong{color:#2d2630;font-size:16px}
.metallic-number-price-note{display:block;margin:-8px 0 12px;color:#8b7782;font-size:11px;font-weight:700}
@media(max-width:620px){
  .metallic-number-entry{padding:12px}
  .metallic-number-entry .metallic-number-digits{grid-template-columns:repeat(5,1fr)}
  .metallic-number-total{align-items:flex-start;flex-direction:column;gap:4px}
}

/* V26 · texto movible en vista previa de producto */
@media(max-width:700px){
  .product-text-live-preview{width:82%;max-width:340px}
  .product-preview-move-tools{right:8px;bottom:8px;gap:5px;padding:5px 6px 5px 9px;font-size:9px}
  .product-preview-move-tools button{min-height:28px;padding:0 9px;font-size:9px}
}


/* V27 · tamaño editable del texto en la vista previa */
.product-text-live-preview-words{
  transform-origin:center center;
  transition:transform .14s ease;
}
.product-preview-move-tools{
  flex-wrap:wrap;
  max-width:calc(100% - 28px);
}
.product-preview-size-controls{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:3px;
  border:1px solid rgba(69,45,60,.12);
  border-radius:999px;
  background:rgba(255,255,255,.96);
}
.product-preview-move-tools .product-preview-size-controls button{
  min-width:30px;
  min-height:30px;
  padding:0 8px;
  border:0;
  border-radius:999px;
  background:#f6edf2;
  color:#3b3038;
  font:900 13px/1 Arial,sans-serif;
  cursor:pointer;
}
.product-preview-move-tools .product-preview-size-controls .size-step{
  font-size:18px;
}
.product-preview-move-tools .product-preview-size-controls .size-value{
  min-width:52px;
  background:#fff;
  color:#c83377;
  font-size:10px;
}
.product-preview-move-tools .product-preview-size-controls button:hover{
  background:#fce4ef;
  color:#c83377;
}
.product-preview-move-tools .product-preview-size-controls button:disabled{
  opacity:.35;
  cursor:not-allowed;
}
.product-preview-move-tools .center-text-button{
  white-space:nowrap;
}
@media(max-width:700px){
  .product-preview-move-tools{
    left:8px;
    right:8px;
    bottom:8px;
    justify-content:center;
    max-width:none;
    padding:5px 6px;
  }
  .product-preview-move-tools>span{display:none}
  .product-preview-move-tools .product-preview-size-controls button{min-width:32px;min-height:32px}
  .product-preview-move-tools .center-text-button{min-height:32px;padding:0 10px}
}

/* V28 · saltos de línea manuales en texto de globo */
.product-customizer-field textarea.balloon-textarea,
.block textarea.balloon-textarea {
  width:100%;
  min-height:76px;
  padding:11px 13px;
  border:1px solid #ded3da;
  border-radius:13px;
  outline:none;
  background:#fff;
  color:#2d2530;
  font:inherit;
  font-weight:600;
  line-height:1.35;
  resize:vertical;
  white-space:pre-wrap;
}
.product-customizer-field textarea.balloon-textarea:focus,
.block textarea.balloon-textarea:focus {
  border-color:#ed4b98;
  box-shadow:0 0 0 3px rgba(237,75,152,.11);
}
.product-text-live-preview-words {
  display:grid;
  justify-items:center;
  gap:.10em;
  line-height:1.02;
}
.product-text-live-preview-line {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:baseline;
  gap:.08em .28em;
  width:100%;
  min-height:1em;
}
.product-text-live-preview-line span {
  display:inline-block;
  white-space:nowrap;
}
.product-text-live-preview-line .preview-empty-line {
  min-width:1px;
}
@media(max-width:700px){
  .product-customizer-field textarea.balloon-textarea,
  .block textarea.balloon-textarea { min-height:72px; font-size:16px; }
}

/* =========================================================
   V38 — MISMO MODELO DE SCROLL QUE ADMIN
   html/body/#root/main quedan sin hacks de scroll.
   Sólo conservamos comportamiento móvil del menú.
   ========================================================= */
@media (max-width: 900px) {
  header {
    position: relative !important;
    top: auto !important;
  }

  header nav.main-nav {
    display: flex !important;
  }

  .main-nav.menu-open {
    overflow: visible !important;
  }

  .nav-dropdown {
    position: relative;
  }

  .dropdown-panel,
  .dropdown-panel-wide {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: auto !important;
    width: min(280px, 82vw) !important;
    max-height: 58vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    pointer-events: none !important;
  }

  .nav-dropdown[open] .dropdown-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .map-card iframe {
    pointer-events: none !important;
  }
}


/* V52 — tarjetas de producto uniformes */
.store-product-grid { align-items: stretch; }
.store-product-card { height: 100%; display: flex; flex-direction: column; }
.store-product-card .catalog-product-image { flex: 0 0 auto; aspect-ratio: 1 / 1; overflow: hidden; padding: 0 !important; background: #f8f3f6; }
.store-product-card .catalog-product-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; }
.store-product-body { flex: 1 1 auto; display: flex; flex-direction: column; width: 100%; }
.store-product-body h3 { min-height: 2.65em; }
.store-product-price { margin-top: auto !important; }
.store-product-actions { margin-top: 0 !important; }
@media (max-width: 620px) { .store-product-body h3 { min-height: 2.65em; } }


/* =========================================================
   PRODUCTO V54 — LUPA DE IMAGEN EN DETALLE
   ========================================================= */
.product-detail-main-image{position:relative;overflow:hidden}
@media (hover:hover) and (pointer:fine){
  .product-detail-main-image{cursor:zoom-in}
  .product-detail-main-image.zoom-active{cursor:none}
  .product-image-zoom-lens{
    position:absolute;
    z-index:50;
    width:228px;
    height:228px;
    transform:translate(-50%,-50%);
    border:3px solid rgba(239,79,153,.98);
    border-radius:50%;
    background-color:#fff;
    background-repeat:no-repeat;
    background-size:920% auto;
    box-shadow:0 20px 52px rgba(62,40,54,.34),0 0 0 5px rgba(255,255,255,.94);
    pointer-events:none;
    overflow:hidden;
  }
  .product-image-zoom-icon{
    position:absolute;
    right:13px;
    bottom:13px;
    display:grid;
    place-items:center;
    min-width:40px;
    height:40px;
    padding:0 8px;
    border-radius:999px;
    background:rgba(42,36,48,.90);
    color:#fff;
    font:900 13px/1 Arial,sans-serif;
    letter-spacing:.02em;
    box-shadow:0 6px 16px rgba(0,0,0,.20);
  }
}
@media (hover:none),(pointer:coarse){
  .product-image-zoom-lens{display:none!important}
}

/* V62 · ambientación especial Toluca · solo /decoracion-del-toluca-en-toluca-y-metepec */
.toluca-theme{
  --toluca-red:#d71920;
  --toluca-red-dark:#8e0c11;
  --toluca-black:#120608;
  --toluca-cream:#fff7f4;
  --toluca-gold:#f5c45c;
  background:linear-gradient(180deg,#120608 0,#1b080b 58%,#f8f2f3 58%,#fff 100%);
}
.toluca-theme .internal-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 12%,rgba(215,25,32,.34),transparent 32%),
    radial-gradient(circle at 8% 92%,rgba(215,25,32,.18),transparent 30%),
    linear-gradient(135deg,#160709,#25080d 58%,#100608);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.toluca-theme .internal-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.18;
  background:
    linear-gradient(90deg,transparent 49.7%,rgba(255,255,255,.35) 49.7%,rgba(255,255,255,.35) 50.3%,transparent 50.3%),
    radial-gradient(circle at 50% 50%,transparent 0 11%,rgba(255,255,255,.28) 11.2% 11.8%,transparent 12%);
  transform:scale(1.25);
}
.toluca-theme .internal-hero-copy,.toluca-theme .internal-hero-media{position:relative;z-index:1}
.toluca-theme .internal-hero-copy .eyebrow{color:#ff6b70}
.toluca-theme .internal-hero-copy h1{color:#fff;text-shadow:0 10px 35px rgba(0,0,0,.35)}
.toluca-theme .internal-hero-copy p{color:#eadde0}
.toluca-theme .internal-hero .btn.primary{background:var(--toluca-red);border-color:var(--toluca-red);box-shadow:0 10px 30px rgba(215,25,32,.24)}
.toluca-theme .internal-hero .btn.ghost{color:#fff;border-color:rgba(255,255,255,.34);background:rgba(255,255,255,.06)}
.toluca-theme .internal-hero-media{
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 30px 70px rgba(0,0,0,.42),0 0 0 8px rgba(215,25,32,.08);
  transform:rotate(1deg);
}
.toluca-theme .internal-hero-media::after{
  content:"EL INFIERNO";
  position:absolute;
  left:20px;
  bottom:20px;
  padding:10px 15px;
  border-radius:999px;
  background:rgba(14,5,7,.86);
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
}

.toluca-fan-zone{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:42px;
  align-items:stretch;
  margin:0 6vw;
  padding:68px 0 54px;
  color:#fff;
}
.toluca-fan-zone-copy{display:flex;flex-direction:column;justify-content:center}
.toluca-kicker,.toluca-player-label{
  display:inline-flex;
  width:max-content;
  color:#ff7378;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.toluca-fan-zone h2{margin:10px 0 14px;font-size:clamp(38px,5vw,70px);line-height:.98;letter-spacing:-.05em;max-width:820px}
.toluca-fan-zone-copy>p{max-width:760px;color:#ded0d3;font-size:17px;line-height:1.75}
.toluca-theme-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.toluca-theme-chips span{padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);font-size:13px;font-weight:800;color:#fff}

.toluca-scoreboard{
  overflow:hidden;
  border-radius:28px;
  background:linear-gradient(145deg,#f8f1f2,#fff);
  color:#1c1214;
  border:1px solid rgba(255,255,255,.32);
  box-shadow:0 25px 60px rgba(0,0,0,.28);
}
.toluca-scoreboard-top{display:flex;justify-content:space-between;gap:12px;padding:15px 18px;background:#151013;color:#fff;font-size:10px;font-weight:900;letter-spacing:.13em}
.toluca-player-card{display:grid;grid-template-columns:190px 1fr;gap:24px;align-items:center;padding:26px}
.toluca-jersey{
  position:relative;
  min-height:218px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(160deg,#ed242a,#b30d13 72%);
  clip-path:polygon(21% 8%,37% 0,43% 12%,57% 12%,63% 0,79% 8%,100% 26%,88% 44%,77% 37%,77% 100%,23% 100%,23% 37%,12% 44%,0 26%);
  filter:drop-shadow(0 15px 20px rgba(115,6,12,.25));
}
.toluca-jersey::after{content:"";position:absolute;inset:14px 28px;border:1px solid rgba(255,255,255,.24);clip-path:inherit;pointer-events:none}
.toluca-jersey-name{font-size:14px;font-weight:900;letter-spacing:.18em;position:relative;z-index:1}
.toluca-jersey strong{font-size:88px;line-height:.9;letter-spacing:-.08em;position:relative;z-index:1;text-shadow:0 5px 0 rgba(111,5,10,.25)}
.toluca-player-card h3{margin:5px 0 4px;font-size:34px;letter-spacing:-.045em}
.toluca-player-card p{margin:0;color:#62565a;font-weight:700}
.toluca-player-card small{display:block;margin-top:14px;color:#8b7c81;line-height:1.55}

.toluca-theme .toluca-ideas{background:#f7f1f2;margin-top:0;margin-bottom:0;padding-top:70px;padding-bottom:72px}
.toluca-theme .toluca-ideas .head .eyebrow,.toluca-theme .toluca-product-feature .head .eyebrow{color:var(--toluca-red)}
.toluca-theme .toluca-ideas .head h2,.toluca-theme .toluca-product-feature .head h2{color:#211619}
.toluca-ideas-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.toluca-ideas-grid article{position:relative;min-height:210px;padding:26px;border-radius:24px;background:#fff;border:1px solid #eadcdf;box-shadow:0 14px 36px rgba(67,26,35,.06);overflow:hidden}
.toluca-ideas-grid article::after{content:"";position:absolute;right:-28px;bottom:-35px;width:100px;height:100px;border-radius:50%;border:18px solid rgba(215,25,32,.05)}
.toluca-idea-icon{display:grid;place-items:center;width:48px;height:48px;border-radius:16px;background:#fce6e7;font-size:24px}
.toluca-ideas-grid h3{margin:20px 0 8px;font-size:20px;color:#25191c}
.toluca-ideas-grid p{margin:0;color:#74676b;line-height:1.65}

.toluca-pitch-strip{
  position:relative;
  overflow:hidden;
  margin:0;
  padding:36px 6vw 50px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px) 0 0/64px 100%,
    linear-gradient(180deg,#9f0d12,#d71920);
}
.toluca-pitch-strip::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,transparent 0 85px,rgba(255,255,255,.16) 86px 88px,transparent 89px);pointer-events:none}
.toluca-pitch-line{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;gap:18px;padding:13px 18px;border-top:1px solid rgba(255,255,255,.32);border-bottom:1px solid rgba(255,255,255,.32);font-size:13px;letter-spacing:.13em;text-align:center}
.toluca-pitch-copy{position:relative;z-index:1;max-width:980px;margin:36px auto 0;text-align:center}
.toluca-pitch-copy h2{margin:0;font-size:clamp(34px,4.4vw,62px);line-height:1;letter-spacing:-.045em}
.toluca-pitch-copy p{max-width:760px;margin:16px auto 0;color:#ffe7e8;font-size:16px;line-height:1.7}

.toluca-theme .toluca-product-feature{background:#fff;margin-top:0;margin-bottom:0;padding-top:68px;padding-bottom:72px}
.toluca-product-card-wrap{max-width:410px;margin:0 auto}
.toluca-product-feature .product-card,.toluca-product-feature .catalog-product-card{box-shadow:0 20px 55px rgba(69,22,31,.12)}

.toluca-final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  margin:0 6vw 72px;
  padding:38px 42px;
  border-radius:30px;
  color:#fff;
  background:linear-gradient(135deg,#151013,#2c090d 58%,#981017);
  box-shadow:0 24px 65px rgba(53,9,15,.24);
}
.toluca-final-cta>div{max-width:790px}
.toluca-final-cta span{font-size:11px;font-weight:900;letter-spacing:.15em;color:#ff8b8f}
.toluca-final-cta h2{margin:7px 0 8px;font-size:clamp(32px,4vw,54px);line-height:1}
.toluca-final-cta p{margin:0;color:#e6d9dc;line-height:1.65}
.toluca-final-cta .btn.primary{flex:0 0 auto;background:var(--toluca-red);border-color:var(--toluca-red);white-space:nowrap}

.toluca-theme .internal-content-section,.toluca-theme .internal-sections,.toluca-theme .internal-gallery-section{background:#fff}
.toluca-theme .internal-content-section .head h2,.toluca-theme .internal-sections .head h2,.toluca-theme .internal-gallery-section .head h2{color:#211619}
.toluca-theme .internal-content-section .eyebrow,.toluca-theme .internal-sections .eyebrow,.toluca-theme .internal-gallery-section .eyebrow{color:var(--toluca-red)}
.toluca-theme .internal-info-grid article{border-color:#eadcdf}
.toluca-theme .internal-number{color:var(--toluca-red)}
.toluca-theme .internal-cta-band{background:linear-gradient(135deg,#19080b,#3c0a10)}

@media(max-width:900px){
  .toluca-fan-zone{grid-template-columns:1fr;padding-top:48px}
  .toluca-ideas-grid{grid-template-columns:1fr 1fr}
  .toluca-final-cta{align-items:flex-start;flex-direction:column}
}
@media(max-width:620px){
  .toluca-theme .internal-hero-media{transform:none}
  .toluca-fan-zone{margin-left:5vw;margin-right:5vw;gap:28px}
  .toluca-player-card{grid-template-columns:125px 1fr;gap:16px;padding:18px}
  .toluca-jersey{min-height:165px}
  .toluca-jersey strong{font-size:62px}
  .toluca-player-card h3{font-size:28px}
  .toluca-ideas-grid{grid-template-columns:1fr}
  .toluca-pitch-line{font-size:10px;gap:8px;letter-spacing:.08em}
  .toluca-final-cta{margin-left:5vw;margin-right:5vw;padding:28px}
  .toluca-final-cta .btn.primary{white-space:normal;width:100%;text-align:center}
}

/* V63 · refuerzo visible ambientación Toluca */
.toluca-theme .internal-hero-copy .toluca-theme-chips-hero{margin:22px 0 0}
.toluca-theme .internal-hero-copy .toluca-theme-chips-hero span{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.18)}
.toluca-theme .internal-content-section:first-of-type{padding-top:34px}


/* V64 · fallback de ambientación Toluca activado también desde PHP */
body.toluca-page .internal-hero{
  background:
    radial-gradient(circle at 78% 24%,rgba(255,255,255,.12),transparent 20%),
    linear-gradient(120deg,#180609 0%,#5b0a10 46%,#d71920 100%) !important;
  border-bottom:1px solid rgba(255,255,255,.08);
}
body.toluca-page .internal-hero-copy .eyebrow{color:#ff9da1 !important}
body.toluca-page .internal-hero-copy h1{color:#fff !important;text-shadow:0 12px 36px rgba(0,0,0,.34)}
body.toluca-page .internal-hero-copy p{color:#f5dfe2 !important}
body.toluca-page .internal-hero .btn.primary{background:#e21b23 !important;border-color:#e21b23 !important;color:#fff !important}
body.toluca-page .internal-hero .btn.ghost{background:rgba(255,255,255,.08) !important;border-color:rgba(255,255,255,.28) !important;color:#fff !important}
body.toluca-page .internal-hero-media{
  min-height:480px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2) !important;
  background:
    linear-gradient(rgba(255,255,255,.07) 2px,transparent 2px),
    linear-gradient(90deg,rgba(255,255,255,.07) 2px,transparent 2px),
    radial-gradient(circle at 50% 50%,transparent 0 88px,rgba(255,255,255,.16) 89px 91px,transparent 92px),
    linear-gradient(145deg,#0e090a 0%,#4f090e 45%,#c9151c 100%) !important;
  background-size:100% 50%,50% 100%,100% 100%,100% 100% !important;
}
body.toluca-page .internal-hero-media img{display:none !important}
body.toluca-page .internal-hero-media::before{
  content:"⚽";
  position:absolute;
  left:50%;top:48%;
  transform:translate(-50%,-50%) rotate(-9deg);
  font-size:clamp(120px,15vw,210px);
  filter:drop-shadow(0 22px 30px rgba(0,0,0,.28));
  z-index:2;
}
body.toluca-page .internal-hero-media::after{
  content:"VEGA  9\A#SOMOSDIABLOS" !important;
  white-space:pre;
  position:absolute !important;
  left:28px !important;right:28px !important;bottom:28px !important;top:auto !important;
  width:auto !important;height:auto !important;
  padding:16px 18px !important;
  border:1px solid rgba(255,255,255,.22) !important;
  border-radius:18px !important;
  background:rgba(14,5,7,.48) !important;
  backdrop-filter:blur(9px);
  color:#fff !important;
  font-size:clamp(18px,2vw,30px) !important;
  font-weight:950 !important;
  letter-spacing:.08em !important;
  line-height:1.2 !important;
  text-align:left !important;
  z-index:3 !important;
}
body.toluca-page .toluca-fan-zone,
body.toluca-page .toluca-pitch-strip,
body.toluca-page .toluca-final-cta{display:grid}
@media (max-width:760px){
  body.toluca-page .internal-hero-media{min-height:330px}
  body.toluca-page .internal-hero-media::after{left:18px !important;right:18px !important;bottom:18px !important}
}

/* V66 · Toluca solo en su página + taza especial */
.toluca-theme .toluca-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;align-items:stretch}
.toluca-theme .toluca-product-grid .toluca-product-card-wrap{max-width:none;width:100%}
.toluca-theme .toluca-special-product{height:100%}
.toluca-theme .toluca-special-product-image{position:relative;overflow:hidden}
.toluca-theme .toluca-special-product-image img{object-fit:cover}
.toluca-theme .toluca-special-badge{position:absolute;top:14px;left:14px;display:inline-flex;align-items:center;justify-content:center;padding:8px 12px;border-radius:999px;background:linear-gradient(135deg,#b20f17,#e33d45);color:#fff;font-size:12px;font-weight:900;letter-spacing:.12em;box-shadow:0 10px 26px rgba(178,15,23,.25)}
.toluca-theme .toluca-special-copy{margin:10px 0 0;color:#6a5d62;line-height:1.65}
@media (max-width: 900px){
  .toluca-theme .toluca-product-grid{grid-template-columns:1fr}
}

/* Personalizador v72: texto movible y escalable para Círculos / Caritas */
.balloon-text.interactive{outline:none}
.balloon-preview-text-tools{
  margin:0 auto 12px;
  padding:12px 14px;
  border:1px solid #eadce4;
  border-radius:16px;
  background:#fff9fc;
  text-align:left;
}
.balloon-preview-text-tools>strong{
  display:block;
  color:#3f333d;
  font-size:12px;
}
.balloon-preview-text-tools>span{
  display:block;
  margin-top:2px;
  color:#81727c;
  font-size:11px;
}
.balloon-preview-text-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}
.balloon-preview-text-actions button{
  min-width:42px;
  min-height:38px;
  border:1px solid #dfd2da;
  border-radius:11px;
  background:#fff;
  color:#51444d;
  font:800 13px/1 Arial,sans-serif;
  cursor:pointer;
}
.balloon-preview-text-actions button:hover{border-color:#ef4f99;color:#c72d71}
.balloon-preview-text-actions button:disabled{opacity:.4;cursor:not-allowed}
.balloon-preview-text-actions .size-readout{min-width:64px;color:#c72d71}
.balloon-preview-text-actions .center-text{padding:0 13px;min-width:auto}

/* v73: control de posición del texto compatible con mouse y touch */
.balloon-preview-position-pad{
  width:128px;
  margin:10px auto 4px;
  display:grid;
  grid-template-columns:repeat(3,40px);
  grid-template-rows:repeat(3,40px);
  gap:4px;
  justify-content:center;
}
.balloon-preview-position-pad button{
  width:40px;
  height:40px;
  padding:0;
  border:1px solid #dfd2da;
  border-radius:11px;
  background:#fff;
  color:#51444d;
  font:900 18px/1 Arial,sans-serif;
  cursor:pointer;
  touch-action:manipulation;
}
.balloon-preview-position-pad button:hover{border-color:#ef4f99;color:#c72d71}
.balloon-preview-position-pad .move-up{grid-column:2;grid-row:1}
.balloon-preview-position-pad .move-left{grid-column:1;grid-row:2}
.balloon-preview-position-pad .move-center{grid-column:2;grid-row:2;color:#c72d71}
.balloon-preview-position-pad .move-right{grid-column:3;grid-row:2}
.balloon-preview-position-pad .move-down{grid-column:2;grid-row:3}

/* v76: etiqueta Empresarial visible dentro de cada tarjeta */
.internal-info-grid article.enterprise-card{
  position:relative;
}
.enterprise-card-label{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  width:max-content;
  margin:0 0 12px;
  padding:7px 12px;
  border-radius:999px;
  background:#9f3f70;
  color:#fff;
  box-shadow:0 7px 18px rgba(159,63,112,.20);
  font:900 10px/1 Arial,sans-serif;
  letter-spacing:.09em;
  text-transform:uppercase;
}

/* v77 — lupa de detalle con aumento real */
@media (hover:hover) and (pointer:fine) and (max-width:1100px){
  .product-image-zoom-lens{width:190px;height:190px}
}

/* v78 — formulario empresarial */
.enterprise-contact-section{
  margin-top:34px;
}
.enterprise-contact-heading{
  max-width:760px;
  margin:0 auto 24px;
  text-align:center;
}
.enterprise-contact-heading h2{
  margin:8px 0 10px;
}
.enterprise-contact-heading p{
  margin:0;
  color:#73636d;
  line-height:1.65;
}
.enterprise-contact-form{
  max-width:920px;
  margin:0 auto;
  padding:28px;
  border:1px solid #eadde5;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 48px rgba(70,42,59,.08);
}
.enterprise-contact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.enterprise-contact-form label{
  display:grid;
  gap:8px;
  min-width:0;
}
.enterprise-contact-form label>span{
  font-size:12px;
  font-weight:800;
  color:#4e4049;
}
.enterprise-contact-form input,
.enterprise-contact-form textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid #ddced7;
  border-radius:14px;
  background:#fff;
  padding:13px 14px;
  color:#332b31;
  font:inherit;
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease;
}
.enterprise-contact-form input:focus,
.enterprise-contact-form textarea:focus{
  border-color:#b94f82;
  box-shadow:0 0 0 3px rgba(185,79,130,.12);
}
.enterprise-contact-form textarea{
  resize:vertical;
  min-height:132px;
}
.enterprise-contact-message{
  grid-column:1/-1;
}
.enterprise-contact-honeypot{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}
.enterprise-contact-status{
  margin-top:16px;
  padding:12px 14px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
}
.enterprise-contact-status.success{
  background:#edf8f1;
  color:#21633a;
  border:1px solid #cce9d6;
}
.enterprise-contact-status.error{
  background:#fff1f4;
  color:#9a2f52;
  border:1px solid #f0cfda;
}
.enterprise-contact-submit{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:20px;
}
.enterprise-contact-submit small{
  color:#806f79;
}
.enterprise-contact-submit button:disabled{
  opacity:.6;
  cursor:wait;
}
@media(max-width:720px){
  .enterprise-contact-form{padding:20px;border-radius:22px}
  .enterprise-contact-grid{grid-template-columns:1fr}
  .enterprise-contact-message{grid-column:auto}
  .enterprise-contact-submit{align-items:stretch;flex-direction:column}
  .enterprise-contact-submit .btn{width:100%}
}

/* v79 — etiqueta empresarial en tarjetas de productos de la página empresarial */
.catalog-product-enterprise-badge{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:7px 12px;
  border-radius:999px;
  background:#9f3f70;
  color:#fff;
  font:900 10px/1 Arial,sans-serif;
  letter-spacing:.09em;
  text-transform:uppercase;
  box-shadow:0 8px 18px rgba(159,63,112,.24);
  pointer-events:none;
}
.enterprise-product-card .catalog-product-image{
  position:relative;
}

/* v80 — Helio / Renta en Inicio */
.home-helium-section{
  background:linear-gradient(180deg,#fff 0%,#fff8fb 100%);
}
.home-helium-heading{
  max-width:780px;
  margin:0 0 28px;
}
.home-helium-heading h2{
  margin:6px 0 10px;
  font-size:clamp(38px,4.5vw,62px);
  line-height:1;
  letter-spacing:-.045em;
}
.home-helium-heading p{
  max-width:700px;
  margin:0;
  color:#756977;
  font-size:16px;
  line-height:1.65;
}
.home-helium-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.home-helium-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:300px;
  padding:24px;
  border:1px solid #eadfe5;
  border-radius:28px;
  background:#fff;
  color:#2d2630;
  text-decoration:none;
  box-shadow:0 14px 38px rgba(72,48,62,.06);
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.home-helium-card:hover{
  transform:translateY(-6px);
  border-color:#e7bfd2;
  box-shadow:0 24px 52px rgba(72,48,62,.12);
}
.home-helium-icon{
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  margin-bottom:28px;
  border-radius:24px;
  background:linear-gradient(145deg,#ffe5f0,#f5edf7);
  color:#b73f77;
  box-shadow:inset 0 0 0 1px rgba(185,79,130,.08);
}
.home-helium-icon span{
  font:900 26px/1 Arial,sans-serif;
}
.home-helium-icon-1 span{
  font-size:38px;
}
.home-helium-card-copy{
  display:flex;
  flex:1;
  flex-direction:column;
}
.home-helium-card-copy small{
  color:#b94f82;
  font-size:10px;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.home-helium-card-copy h3{
  margin:8px 0 10px;
  font-size:23px;
  line-height:1.12;
}
.home-helium-card-copy p{
  margin:0 0 22px;
  color:#756977;
  font-size:13px;
  line-height:1.6;
}
.home-helium-card-copy strong{
  margin-top:auto;
  color:#c72d71;
  font-size:12px;
}
.home-helium-cta{
  display:flex;
  justify-content:flex-start;
  margin-top:22px;
}
@media(max-width:900px){
  .home-helium-grid{grid-template-columns:1fr}
  .home-helium-card{min-height:0}
}

/* v86 — imágenes editables en la sección Helio del inicio */
.home-helium-card-image{
  width:100%;
  height:150px;
  margin:-24px -24px 22px;
  width:calc(100% + 48px);
  overflow:hidden;
  background:#f7f0f5;
}
.home-helium-card-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
