:root {
  color-scheme: light;
  --bg: #f8fafc;
  --ink: #0f172a;
  --muted: #626977;
  --panel: #ffffff;
  --panel-dark: #17191f;
  --line: #e4e7ec;
  --gold: #f59e0b;
  --gold-soft: #fff7ed;
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --whatsapp: #22c55e;
  --violet: #7c3aed;
  --shadow: 0 18px 60px rgba(17, 19, 24, 0.12);
  --radius: 18px;
  --max: 1200px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b1120;
  --ink: #f8fafc;
  --muted: #aab4c4;
  --panel: #111827;
  --panel-dark: #0f172a;
  --line: rgba(226, 232, 240, 0.14);
  --gold-soft: rgba(245, 158, 11, 0.14);
  --blue-soft: rgba(37, 99, 235, 0.18);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  transition: background 220ms ease, color 220ms ease;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .site-header {
  background: rgba(11, 17, 32, 0.86);
  border-bottom-color: rgba(226, 232, 240, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background:
    url("assets/logo-dyb.png") center / cover no-repeat,
    linear-gradient(135deg, #071426, #111827);
  border: 1px solid rgba(245, 158, 11, 0.62);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  font-size: 0;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #303540;
  font-size: 0.95rem;
  font-weight: 600;
}

[data-theme="dark"] .main-nav {
  color: #d8deea;
}

.main-nav a,
.nav-dropdown-toggle {
  padding: 10px 4px;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 16px;
}

.nav-dropdown-toggle {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 70;
  display: grid;
  min-width: 210px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--blue-soft);
}

.header-cta {
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #128c4a);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
  font-weight: 800;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
}

.theme-toggle-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-radius: 50%;
  font-size: 0.8rem;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

[data-theme="dark"] .theme-toggle-icon {
  color: #111827;
  background: linear-gradient(135deg, #facc15, #f59e0b);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #128c4a);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 48px rgba(34, 197, 94, 0.4);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease var(--reveal-delay, 0ms),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

[data-theme="dark"] .page-hero,
[data-theme="dark"] .product-family-hero,
[data-theme="dark"] .category-showcase,
[data-theme="dark"] .inquiry-band,
[data-theme="dark"] .final-whatsapp {
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

[data-theme="dark"] .popular-card,
[data-theme="dark"] .category-index-card,
[data-theme="dark"] .product-list-card,
[data-theme="dark"] .catalog-card,
[data-theme="dark"] .product-side-panel,
[data-theme="dark"] .work-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .nav-dropdown-menu,
[data-theme="dark"] .designer-note {
  background: var(--panel);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .product-card-body,
[data-theme="dark"] .post-body {
  background: var(--panel);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  color: var(--ink);
  background: #0f172a;
  border-color: var(--line);
}

[data-theme="dark"] .tag,
[data-theme="dark"] .breadcrumbs,
[data-theme="dark"] .product-list-card p,
[data-theme="dark"] .catalog-card p,
[data-theme="dark"] .post-body p,
[data-theme="dark"] .testimonial-card p,
[data-theme="dark"] .product-side-panel p {
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-prompt {
    animation: none;
  }
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-pad {
  padding: 82px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 54px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text,
.section-heading p,
.designer-copy p,
.contact-copy p,
.inquiry-band p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.showcase-hero {
  padding: 54px 0 72px;
  background:
    radial-gradient(circle at 78% 16%, rgba(37, 99, 235, 0.11), transparent 32%),
    radial-gradient(circle at 18% 28%, rgba(124, 58, 237, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.showcase-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 40px;
}

.showcase-intro h1 {
  max-width: 1220px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 4.9vw, 5.4rem);
  line-height: 0.98;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.74), 0 12px 34px rgba(15, 23, 42, 0.14);
}

.showcase-intro p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #172554;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.65;
}

[data-theme="dark"] .showcase-intro h1,
[data-theme="dark"] .showcase-intro .eyebrow {
  text-shadow: 0 2px 18px rgba(15, 23, 42, 0.9), 0 0 26px rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .showcase-intro p:not(.eyebrow) {
  color: #bfdbfe;
  text-shadow: 0 2px 14px rgba(15, 23, 42, 0.52);
}

.showcase-intro .hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-trust-line span {
  padding: 10px 14px;
  color: #fff;
  background: #334155;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  font-size: 0.9rem;
  font-weight: 850;
}

[data-theme="dark"] .hero-trust-line span {
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.74);
}

.hero-copy .hero-trust-line {
  margin-top: 24px;
  margin-bottom: 0;
}

@keyframes hero-gallery-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 480px;
}

.hero-gallery-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  animation: hero-gallery-in 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-gallery-item:nth-child(1) {
  grid-row: 1 / 3;
  animation-delay: 0.1s;
}

.hero-gallery-item:nth-child(2) {
  animation-delay: 0.24s;
}

.hero-gallery-item:nth-child(3) {
  animation-delay: 0.38s;
}

.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-gallery-item:hover img {
  transform: scale(1.06);
}

.showcase-section-heading {
  display: grid;
  gap: 10px;
  max-width: var(--max);
  margin-bottom: 18px;
}

.showcase-section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.showcase-section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #1d4ed8;
  font-weight: 800;
  line-height: 1.6;
}

[data-theme="dark"] .showcase-section-heading p:not(.eyebrow) {
  color: #bfdbfe;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 24px;
  color: #fff;
  background: #17191f;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(17, 19, 24, 0.12);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-prompt {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 8px;
  width: max-content;
  max-width: min(260px, calc(100vw - 112px));
  padding: 12px 14px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px 16px 4px 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
  animation: promptFloat 4.6s ease-in-out infinite;
}

.whatsapp-prompt::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 12px;
  width: 12px;
  height: 12px;
  background: inherit;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: rotate(45deg);
}

@keyframes promptFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.showcase-card:hover,
.showcase-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(17, 19, 24, 0.18);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.92) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.12));
}

.showcase-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.showcase-card:hover img,
.showcase-card:focus-visible img {
  transform: scale(1.05);
}

.showcase-cta {
  width: max-content;
  margin-top: 18px;
  padding: 9px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
}

.showcase-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.95;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
}

.showcase-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.showcase-card-large {
  grid-column: span 3;
  grid-row: span 2;
}

.showcase-card-tall {
  grid-column: span 3;
}

.showcase-secondary {
  grid-column: span 3;
}

.showcase-sublimation {
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.showcase-laser {
  background:
    radial-gradient(circle at 76% 20%, rgba(245, 158, 11, 0.45), transparent 28%),
    linear-gradient(135deg, var(--ink), #312e81);
}

.showcase-print {
  background: linear-gradient(135deg, var(--blue), var(--ink));
}

.showcase-vinyl {
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, var(--blue), var(--violet));
}

.showcase-3d {
  background: linear-gradient(135deg, var(--ink), var(--violet));
}

.showcase-fake-product {
  position: absolute;
  right: 8%;
  top: 14%;
  z-index: -1;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.laser-product {
  width: 150px;
  height: 210px;
  border-radius: 46% 46% 40% 40%;
  background: linear-gradient(145deg, #5f402a, #15171c 68%, #d7a72f);
}

.vinyl-product {
  width: 220px;
  height: 126px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  transform: rotate(-5deg);
}

.home-bazar {
  padding: 74px 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.1), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

[data-theme="dark"] .home-bazar {
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.home-work-preview {
  padding-top: 76px;
}

.home-bazar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.home-bazar-copy h2 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

.home-bazar-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.bazar-slider {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.bazar-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 650ms ease, transform 900ms ease;
}

.bazar-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.bazar-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #0f172a;
}

.bazar-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(15, 23, 42, 0.78) 100%);
}

.bazar-slide figcaption {
  position: absolute;
  left: 22px;
  bottom: 24px;
  z-index: 1;
  padding: 10px 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.bazar-dots {
  position: absolute;
  right: 22px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.bazar-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 240ms ease, background 240ms ease;
}

.bazar-dots span.is-active {
  width: 24px;
  background: #fff;
}

.story-hero {
  position: relative;
  min-height: 540vh;
  overflow: clip;
  background:
    radial-gradient(circle at 74% 30%, rgba(30, 99, 255, 0.16), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(215, 167, 47, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f6fb 44%, #ffffff 100%);
  transition: background 280ms ease;
}

.story-hero::before {
  content: "";
  position: absolute;
  inset: 68px 0 auto;
  height: 34vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent);
  pointer-events: none;
  z-index: 1;
}

.story-hero[data-scene="1"] {
  background:
    radial-gradient(circle at 70% 32%, rgba(215, 167, 47, 0.24), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(17, 19, 24, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ec 48%, #ffffff 100%);
}

.story-hero[data-scene="2"] {
  background:
    radial-gradient(circle at 74% 32%, rgba(30, 99, 255, 0.2), transparent 34%),
    radial-gradient(circle at 20% 76%, rgba(215, 167, 47, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f6ff 48%, #ffffff 100%);
}

.story-hero[data-scene="3"] {
  background:
    radial-gradient(circle at 74% 32%, rgba(47, 191, 113, 0.16), transparent 34%),
    radial-gradient(circle at 22% 80%, rgba(30, 99, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2fbf6 48%, #ffffff 100%);
}

.story-hero[data-scene="4"] {
  background:
    radial-gradient(circle at 74% 32%, rgba(215, 167, 47, 0.2), transparent 34%),
    radial-gradient(circle at 22% 80%, rgba(30, 99, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff8e6 48%, #ffffff 100%);
}

.story-shell {
  position: sticky;
  top: 68px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(72px, 8vw, 150px);
  align-items: center;
  min-height: calc(100vh - 68px);
  pointer-events: none;
}

.has-gsap-story .story-shell {
  position: relative;
  top: auto;
  will-change: transform;
}

.story-copy,
.story-visual {
  pointer-events: auto;
}

.story-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
  transform: translateY(-2vh);
}

.story-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.7vw, 5rem);
  line-height: 0.94;
}

.story-copy h1 span,
.story-copy h1 strong {
  display: block;
}

.story-copy h1 span {
  color: #111318;
}

.story-copy h1 strong {
  min-height: 1.95em;
  max-width: 100%;
  font-size: 0.8em;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #111318 0%, #1e63ff 54%, #d7a72f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  transition: opacity 220ms ease, transform 220ms ease;
}

.story-copy.is-changing h1 strong,
.story-copy.is-changing .hero-text {
  opacity: 0;
  transform: translateY(12px);
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 810px);
  transform: translateX(4.5vw);
  min-height: min(74vh, 720px);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 19, 24, 0.13), transparent 38%),
    transparent;
  box-shadow: none;
  overflow: visible;
  transition: background 260ms ease;
}

.story-visual::before,
.story-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.story-visual::before {
  inset: 7%;
  border-color: rgba(17, 19, 24, 0.08);
}

.story-visual::after {
  width: min(76%, 620px);
  height: min(76%, 620px);
  background: rgba(17, 19, 24, 0.04);
}

.story-badge {
  position: absolute;
  top: 2%;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.1);
  backdrop-filter: blur(14px);
}

.story-gallery-count {
  position: absolute;
  left: 50%;
  bottom: 1%;
  z-index: 4;
  min-width: 52px;
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transform: translateX(-50%);
}

.story-visual:not(.has-multiple-photos) .story-gallery-count {
  display: none;
}

.story-product {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 290px;
  height: 310px;
  padding: 32px;
  color: var(--ink);
  background: linear-gradient(160deg, #fff, #dce3ee);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 38px 38px 68px 68px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
  transition: width 260ms ease, height 260ms ease, border-radius 260ms ease, background 260ms ease, color 260ms ease;
}

.story-photo-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 240ms ease, transform 240ms ease;
  pointer-events: none;
  will-change: opacity, transform;
}

.story-visual.has-photos .story-photo-stack {
  opacity: 1;
  transform: scale(1);
}

.story-visual.has-photos .story-product {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
}

.story-photo {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 32px 90px rgba(17, 19, 24, 0.2);
  will-change: transform, opacity, clip-path;
}

.story-photo-main {
  left: 50%;
  top: 50%;
  width: min(74%, 660px);
  height: min(56vh, 510px);
  aspect-ratio: auto;
  border-radius: 32px;
  transform: translate(-50%, -50%);
}

.story-photo-small {
  display: none;
}

.story-product span {
  font-weight: 900;
  opacity: 0.72;
}

.story-product strong {
  font-size: 2rem;
  line-height: 1;
}

.story-specs {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 7%;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(84%, 760px);
  max-width: none;
  transform: translateX(-50%);
}

.story-specs span {
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(17, 19, 24, 0.1);
  backdrop-filter: blur(14px);
}

.story-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin-top: -100vh;
  padding-top: 100vh;
  padding-bottom: 10vh;
  pointer-events: none;
}

.story-step {
  width: 1px;
  min-height: 92vh;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.story-step:nth-child(even) {
  margin-left: 0;
}

.story-step.is-active {
  opacity: 0;
}

.story-step span {
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.story-step h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.story-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.story-product.is-laser {
  width: 230px;
  height: 390px;
  color: #fff;
  background: linear-gradient(145deg, #4f3928, #121419 64%, #d7a72f);
  border-radius: 46% 46% 38% 38%;
}

.story-product.is-vinyl {
  width: 350px;
  height: 230px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff, #ecf2ff);
  border-radius: 22px;
}

.story-product.is-print3d {
  width: 285px;
  height: 285px;
  color: #fff;
  background: linear-gradient(145deg, #2fbf71, #101217 72%);
  border-radius: 36px;
}

.story-product.is-gifts {
  width: 330px;
  height: 270px;
  color: #fff;
  background: linear-gradient(145deg, #d7a72f, #1e63ff 48%, #111318);
  border-radius: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 18px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #128c4a);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd6e3;
  box-shadow: 0 12px 24px rgba(17, 19, 24, 0.08);
}

[data-theme="dark"] .btn-secondary {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

[data-theme="dark"] .btn-ghost {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-special {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.24);
}

.btn-special svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  min-height: 530px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 15%, rgba(215, 167, 47, 0.34), transparent 28%),
    linear-gradient(135deg, #111318, #292f3a);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 530px;
}

.product-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.product-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-card strong {
  font-size: 1.2rem;
}

.mockup-mate {
  left: 11%;
  top: 17%;
  width: 150px;
  height: 190px;
  border-radius: 42% 42% 48% 48%;
  background: linear-gradient(160deg, #5f4a37, #15171c 62%);
}

.mockup-cup {
  right: 9%;
  top: 13%;
  width: 155px;
  height: 148px;
  border-radius: 24px 24px 44px 44px;
  background: linear-gradient(160deg, #fff, #cad2df);
  color: var(--ink);
}

.mockup-shirt {
  left: 27%;
  top: 39%;
  width: 215px;
  height: 205px;
  border-radius: 34px;
  background: linear-gradient(160deg, #f7f8fb, #d9dfeb);
  color: var(--ink);
}

.mockup-bottle {
  right: 18%;
  bottom: 8%;
  width: 118px;
  height: 245px;
  border-radius: 40px 40px 28px 28px;
  background: linear-gradient(135deg, #0e1117, #3b414d 65%, #cda23b);
}

.mockup-glass {
  left: 9%;
  bottom: 12%;
  width: 128px;
  height: 155px;
  border-radius: 18px 18px 34px 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(30, 99, 255, 0.35));
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.category-grid,
.work-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card,
.work-card,
.steps-grid article,
.contact-form,
.compact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(17, 19, 24, 0.07);
}

.category-card {
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  cursor: pointer;
}

.category-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card h3::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
}

.category-card ul {
  display: grid;
  gap: 8px;
  max-height: 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  opacity: 0;
  transition: max-height 220ms ease, opacity 220ms ease, margin 220ms ease;
}

.category-card:hover ul,
.category-card:focus-within ul,
.category-card.is-open ul {
  max-height: 240px;
  margin-top: 16px;
  opacity: 1;
}

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

.work-card {
  overflow: hidden;
}

.work-post {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 12px;
}

.post-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.post-header strong,
.post-header span {
  display: block;
}

.post-header strong {
  font-size: 0.98rem;
}

.post-header span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.post-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.post-media {
  position: relative;
}

.post-media img,
.post-media .work-object {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.work-post:hover .post-media img,
.work-post:focus-within .post-media img,
.work-post:hover .post-media .work-object,
.work-post:focus-within .post-media .work-object {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.quality-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 10px 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.work-post:hover .quality-badge,
.work-post:focus-within .quality-badge {
  opacity: 1;
  transform: translateY(0);
}

.post-body h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.post-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.work-tags,
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-tags span {
  padding: 6px 9px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.work-filters {
  margin: -10px 0 24px;
}

.work-filters button {
  padding: 10px 14px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.work-filters button:hover,
.work-filters button:focus-visible,
.work-filters button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  transform: translateY(-1px);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  color: var(--muted);
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 18px;
}

.post-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #128c4a);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.18);
  font-weight: 850;
}

.post-body a:hover,
.post-body a:focus-visible {
  transform: translateY(-2px);
}

.work-image {
  min-height: 218px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #15171c, #353d4a);
}

.post-media {
  min-height: 360px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.post-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.work-object {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 900;
}

.work-content {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  color: #7a5a00;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.work-content p {
  color: var(--muted);
  line-height: 1.55;
}

.work-content .btn {
  width: 100%;
  margin-top: 8px;
}

.inquiry-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 50px;
  color: #fff;
  background: linear-gradient(135deg, #111318, #252b35);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.inquiry-band .eyebrow,
.inquiry-band p {
  color: rgba(255, 255, 255, 0.76);
}

.final-whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin: 24px auto 76px;
  padding: clamp(28px, 5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.28), transparent 30%),
    linear-gradient(135deg, var(--ink), var(--violet));
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.final-whatsapp h2 {
  max-width: 760px;
  margin-bottom: 10px;
}

.final-whatsapp p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-whatsapp .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 42px 0 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.11), transparent 32%),
    radial-gradient(circle at 16% 30%, rgba(124, 58, 237, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.page-hero .section-shell {
  display: grid;
  gap: 12px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 8px;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 0;
}

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

.category-index-card,
.product-list-card {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.category-index-card {
  padding: 22px;
}

.product-card-media {
  display: grid;
  place-items: center;
  min-height: 145px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--violet));
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 145px;
  object-fit: cover;
}

.product-card-media span {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  font-weight: 900;
}

.product-card-body {
  display: grid;
  align-content: space-between;
  min-height: 175px;
  padding: 18px;
}

.category-index-card h2,
.product-list-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.category-index-card p,
.product-list-card p {
  color: var(--muted);
  line-height: 1.55;
}

.category-index-card .popular-link,
.product-list-card .popular-link {
  margin-top: 12px;
}

.product-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.page-hero + .product-page-layout {
  padding-top: 28px;
}

.product-side-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
}

.product-side-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.product-family-hero {
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.1), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.product-family-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.product-family-layout img {
  width: 100%;
  min-height: 230px;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--blue);
}

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

.catalog-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.catalog-card img,
.catalog-placeholder {
  width: 100%;
  min-height: 210px;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.catalog-placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 72% 20%, rgba(245, 158, 11, 0.3), transparent 30%),
    linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 1.2rem;
  font-weight: 900;
}

.catalog-card > div:last-child {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.catalog-card h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.catalog-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.media-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.media-filter-bar button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--card);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  font-weight: 900;
  cursor: pointer;
}

.media-filter-bar button:hover,
.media-filter-bar button:focus-visible,
.media-filter-bar button.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.media-card figure {
  position: relative;
  margin: 0;
  background: #0b1220;
}

.media-card img,
.media-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  background: #0b1220;
}

.media-card video {
  background: #0b1220;
}

.media-kind {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
}

.media-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.media-card-body h3 {
  margin: 0;
  font-size: 1rem;
}

.media-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.media-empty h3,
.media-empty p {
  margin: 0;
}

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

.bazar-hero {
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 84% 16%, rgba(34, 197, 94, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

[data-theme="dark"] .bazar-hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(34, 197, 94, 0.14), transparent 30%),
    linear-gradient(180deg, #0b1120 0%, #111827 100%);
}

.bazar-hero h1 {
  max-width: 840px;
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 1;
}

.bazar-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.bazar-section {
  padding: 58px 0 86px;
  background: #f1f5f9;
}

[data-theme="dark"] .bazar-section {
  background: #0f172a;
}

.bazar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.bazar-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.bazar-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  padding: 10px;
  color: #fff;
  background: #0f172a;
  font-weight: 900;
}

.bazar-photo span {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.bazar-photo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  padding: 0;
  background: transparent;
}

.bazar-photo video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  padding: 0;
  background: transparent;
}

.bazar-photo-soft {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, #dbeafe);
}

.bazar-photo-blue {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.bazar-photo-gold {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.bazar-photo-dark {
  background: linear-gradient(135deg, #111827, #334155);
}

.bazar-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  background: var(--panel);
}

.bazar-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.bazar-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #303540;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 99, 255, 0.12);
}

.compact-form {
  padding: 22px;
}

.designer {
  margin-top: 82px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.24), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(124, 58, 237, 0.22), transparent 34%),
    #0f172a;
}

.designer-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.designer-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.designer-note {
  max-width: 620px;
  margin-top: 16px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  font-size: 0.96rem;
}

.designer-controls {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.designer-controls label {
  color: #fff;
}

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

.designer-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
}

.designer-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.designer-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.nudge-controls {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  justify-content: center;
  gap: 8px;
  margin: 2px 0 4px;
}

.nudge-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.nudge-controls button:hover,
.nudge-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nudge-controls [data-nudge="up"] {
  grid-column: 2;
}

.nudge-controls [data-nudge="left"] {
  grid-column: 1;
}

.nudge-controls [data-nudge="down"] {
  grid-column: 2;
}

.nudge-controls [data-nudge="right"] {
  grid-column: 3;
  grid-row: 2;
}

.designer-preview {
  display: grid;
  place-items: center;
}

.mockup-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 540px);
  min-height: 560px;
  background:
    radial-gradient(circle at 66% 18%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 44%),
    linear-gradient(135deg, #1d2533, #0d1119 56%, #17122c);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.mockup-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 56%, rgba(229, 193, 103, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0.92;
  z-index: -2;
}

.mockup-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(186, 137, 78, 0.18), rgba(255, 255, 255, 0.08), rgba(69, 43, 27, 0.2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.mockup-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

#mockupCanvas {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 540px);
  height: auto;
  border-radius: 24px;
  cursor: grab;
}

.mockup-stage.is-dragging #mockupCanvas {
  cursor: grabbing;
}

.canvas-upload-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mockup-product {
  position: relative;
  display: grid;
  place-items: center;
  width: 330px;
  height: 390px;
  color: #fff;
  background:
    var(--mockup-image, none) center / contain no-repeat,
    linear-gradient(160deg, #4c3828, #15171c 58%, #d2a137);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.34));
  transform: translateY(10px);
  overflow: visible;
}

.mockup-product::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: inherit;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.32), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.28), transparent 22%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 4;
}

.mockup-product::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -22px;
  height: 34px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  filter: blur(16px);
  z-index: -1;
}

.product-mate {
  border-radius: 46% 46% 42% 42%;
}

.product-termo {
  width: 260px;
  height: 500px;
  border-radius: 52px 52px 34px 34px;
  background: linear-gradient(135deg, #111318, #444b58 70%, #d7a72f);
}

.product-taza {
  width: 440px;
  height: 360px;
  border-radius: 38px 38px 64px 64px;
  background:
    var(--mockup-image, none) center / contain no-repeat,
    linear-gradient(160deg, #f9fafc, #c8d0dc);
  color: #14171d;
}

.product-remera {
  width: 390px;
  height: 470px;
  border-radius: 44px;
  background:
    var(--mockup-image, none) center / contain no-repeat,
    linear-gradient(160deg, #f5f7fb, #d9dfeb);
  color: #14171d;
}

.product-photo-mate {
  width: 350px;
  height: 430px;
  border-radius: 34px;
  background:
    var(--mockup-image, none) center / contain no-repeat,
    linear-gradient(160deg, #111318, #2b2f38);
}

.product-photo-termo {
  width: 270px;
  height: 520px;
  border-radius: 34px;
  background:
    var(--mockup-image, none) center / contain no-repeat,
    linear-gradient(160deg, #111318, #2b2f38);
}

.product-photo-shirt {
  border-radius: 34px;
}

.product-vaso {
  width: 230px;
  height: 320px;
  border-radius: 26px 26px 58px 58px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(30, 99, 255, 0.34));
  color: #14171d;
}

.product-sticker,
.product-llaveros {
  width: 310px;
  height: 230px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #dfe7f5);
  color: #14171d;
}

.mockup-label {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 5;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
}

.product-taza .mockup-label,
.product-remera .mockup-label {
  color: rgba(15, 23, 42, 0.66);
  text-shadow: none;
}

.design-surface {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 42%;
  height: 38%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px / 34px;
  transform: translate(-50%, -50%) perspective(520px) rotateY(var(--surface-curve, -8deg));
  transform-style: preserve-3d;
  box-shadow:
    inset 16px 0 30px rgba(255, 255, 255, 0.2),
    inset -18px 0 28px rgba(0, 0, 0, 0.16);
  z-index: 3;
}

.product-taza .design-surface {
  left: 42%;
  top: 52%;
  width: 30%;
  height: 42%;
  border-radius: 16px / 30px;
}

.product-photo-mate .design-surface {
  left: 50%;
  top: 52%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
}

.product-photo-termo .design-surface {
  left: 49%;
  top: 49%;
  width: 42%;
  height: 36%;
  border-radius: 22px / 36px;
}

.product-remera .design-surface {
  left: 50%;
  top: 45%;
  width: 42%;
  height: 34%;
  border-radius: 14px;
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 18px 30px rgba(255, 255, 255, 0.22),
    inset 0 -22px 30px rgba(0, 0, 0, 0.08);
}

#uploadedDesign {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  max-width: none;
  cursor: grab;
  transform: translate(-50%, -50%);
  opacity: var(--design-opacity, 0.96);
  mix-blend-mode: var(--design-blend, multiply);
  filter: saturate(1.05) contrast(1.02);
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

#uploadedDesign.is-bg-softened {
  filter: saturate(1.08) contrast(1.12) brightness(1.02);
  mix-blend-mode: multiply;
}

#uploadedDesign.is-dragging {
  cursor: grabbing;
}

.upload-hint {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(17, 19, 24, 0.32);
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  z-index: 2;
}

.popular-products {
  padding-top: 72px;
}

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

.popular-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 160px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.06);
  overflow: hidden;
}

.popular-card h3 {
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.product-banner-image {
  display: block;
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(17, 19, 24, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-banner-image:hover,
.product-banner-image:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17, 19, 24, 0.16);
}

.product-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #128c4a);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.18);
  font-weight: 850;
}

.product-banner {
  min-height: 210px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #1d4ed8);
  isolation: isolate;
}

.product-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.45) 100%);
}

.product-banner > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 62%;
}

.product-banner span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-banner h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.product-banner img,
.banner-product {
  position: absolute;
  right: -10px;
  top: 20px;
  z-index: -1;
  width: 48%;
  height: 58%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.28);
  transform: rotate(5deg);
}

.product-banner .popular-link {
  position: relative;
  z-index: 2;
  width: max-content;
  min-width: 138px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.banner-tazas {
  background: linear-gradient(135deg, #f97316, #f43f5e);
}

.banner-remeras {
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.banner-stickers {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.banner-3d {
  background: linear-gradient(135deg, #111827, #6d28d9);
}

.banner-jardin {
  background: linear-gradient(135deg, #ec4899, #f59e0b);
}

.banner-etiquetas {
  background: linear-gradient(135deg, #0f766e, #1d4ed8);
}

.banner-varios {
  background: linear-gradient(135deg, #111827, #ca8a04);
}

.banner-laser {
  background:
    radial-gradient(circle at 78% 26%, rgba(245, 158, 11, 0.5), transparent 26%),
    linear-gradient(135deg, #111827, #422006);
}

.banner-mate {
  display: grid;
  place-items: center;
  width: 92px;
  height: 138px;
  color: #fff;
  background: linear-gradient(145deg, #5f402a, #15171c 68%, #d7a72f);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 46% 46% 40% 40%;
  font-size: 0.86rem;
  font-weight: 950;
}

.banner-sticker,
.banner-label {
  display: grid;
  place-items: center;
  width: 126px;
  height: 78px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.banner-label {
  color: #0f766e;
}

.popular-link:hover,
.popular-link:focus-visible {
  transform: translateY(-2px);
}

.trust-section {
  padding-top: 56px;
}

.trust-banners {
  margin-top: 40px;
}

.trust-banner {
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 620;
  background-size: cover;
  background-position: center;
  background-color: var(--panel);
  background-repeat: no-repeat;
  transition: transform 500ms ease;
}

.trust-banner:hover {
  transform: scale(1.01);
}

.trust-banner-regalos {
  background-image: url("assets/banners/banner-regalos.jpg");
}

.trust-banner-cumple {
  background-image: url("assets/banners/banner-negocios.png");
}

.trust-banner-negocios {
  background-image: url("assets/banners/banner-cumple.png");
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-strip span {
  padding: 10px 14px;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.testimonial-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card div {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-card span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  display: block;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid article {
  min-height: 210px;
  padding: 24px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.steps-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  align-items: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.contact-form {
  padding: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.faq-index h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.faq-index a {
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
}

.faq-index a:hover {
  color: var(--ink);
  border-color: rgba(37, 99, 235, 0.18);
  transform: translateX(2px);
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 110px;
}

.faq-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
}

.faq-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.22), transparent 34%),
    linear-gradient(135deg, #0b1020 0%, #101827 55%, #111827 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.8fr));
  gap: 34px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 950;
}

.footer-brand p,
.footer-contact p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.35;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-cta {
  margin-top: 8px;
  padding: 12px 16px;
  color: #fff !important;
  background: linear-gradient(135deg, #22c55e, #159947);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.18);
}

.footer-cta:hover {
  transform: translateY(-2px) !important;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

/* Precios de referencia */
.pricing-section {
  background: var(--bg);
}

.pricing-box {
  max-width: 660px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-box-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--line);
}

.pricing-box-header h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.pricing-box-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 36px;
  border-bottom: 1px solid var(--line);
}

.pricing-list li span {
  color: var(--ink);
  font-size: 0.97rem;
}

.pricing-list li em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.pricing-list li strong {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap;
}

.pricing-list-cta {
  border-bottom: none !important;
  padding: 20px 36px 28px !important;
  flex-wrap: wrap;
  gap: 12px !important;
  background: var(--blue-soft);
}

.pricing-list-cta span {
  color: var(--muted) !important;
  font-size: 0.93rem !important;
}

@media (max-width: 620px) {
  .pricing-box-header {
    padding: 24px 20px 18px;
  }

  .pricing-list li {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 4px;
  }

  .pricing-list-cta {
    padding: 18px 20px 22px !important;
  }
}

/* 404 */
.not-found-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.not-found-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 80px 0;
}

.not-found-code {
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  color: var(--blue);
  opacity: 0.18;
}

.not-found-layout h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.not-found-layout > p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  height: min(82vh, 680px);
}

.slide.is-active {
  display: grid;
  animation: slide-fade 0.55s ease both;
}

@keyframes slide-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 60px clamp(24px, 5vw, 72px);
  color: #fff;
}

.slide-1 .slide-copy { background: linear-gradient(140deg, #1d4ed8 0%, #1e3a8a 100%); }
.slide-2 .slide-copy { background: linear-gradient(140deg, #b45309 0%, #78350f 100%); }
.slide-3 .slide-copy { background: linear-gradient(140deg, #6d28d9 0%, #4c1d95 100%); }

.slide-copy .eyebrow {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.slide-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  margin: 0;
  color: #fff;
}

.slide-copy p:not(.eyebrow) {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 400px;
  line-height: 1.6;
}

.btn-slide {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 200ms, border-color 200ms;
  align-self: flex-start;
}

.btn-slide:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.9);
}

.slide-image {
  overflow: hidden;
  min-height: 0;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 200ms, border-color 200ms, transform 200ms;
}

.slider-dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

.slider-prev,
.slider-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: background 200ms, border-color 200ms;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   WELCOME SECTION
   ========================================================= */

.welcome-section {
  padding: 72px 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.welcome-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.welcome-copy h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin: 0;
}

.welcome-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.welcome-feature {
  padding: 20px 24px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.welcome-feature strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.welcome-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Categorías section */
.categorias-section {
  background: var(--bg);
}

/* =========================================================
   RESPONSIVE SLIDER + WELCOME
   ========================================================= */

@media (max-width: 860px) {
  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 260px;
    height: auto;
  }

  .slide-copy {
    padding: 40px 24px 28px;
    gap: 14px;
  }

  .slide-copy h2 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .welcome-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .welcome-features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .welcome-feature {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 620px) {
  .slide {
    grid-template-rows: auto 200px;
  }

  .welcome-section {
    padding: 48px 0;
  }

  .welcome-features {
    flex-direction: column;
  }

  .welcome-feature {
    flex: none;
  }

  .slider-prev,
  .slider-next {
    display: none;
  }
}

@media (max-width: 1040px) {
  .showcase-intro {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .showcase-intro .hero-actions {
    justify-content: flex-start;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    min-height: 210px;
    margin-top: 32px;
  }

  .hero-gallery-item:nth-child(1) {
    grid-row: auto;
  }

  .hero-gallery-item {
    aspect-ratio: 1;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .showcase-card-large,
  .showcase-card-tall,
  .showcase-secondary {
    grid-column: span 1;
    grid-row: span 1;
  }

  .showcase-sublimation {
    grid-column: span 2;
  }

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

  .bazar-slider {
    min-height: 380px;
  }

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

  .category-index-grid,
  .product-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .media-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .product-side-panel {
    position: static;
  }

  .work-grid,
  .popular-grid,
  .bazar-grid,
  .testimonial-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .designer-layout,
  .contact-section,
  .inquiry-band {
    grid-template-columns: 1fr;
  }

  .story-shell {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 68px);
    align-content: center;
    gap: 20px;
  }

  .story-steps {
    margin-top: -100vh;
    padding-top: 100vh;
  }

  .story-step,
  .story-step:nth-child(even) {
    width: 1px;
    min-height: 92vh;
    margin-left: 0;
  }

  .story-copy {
    max-width: 760px;
    transform: none;
  }

  .story-copy h1 {
    max-width: 820px;
    font-size: clamp(2.6rem, 8.4vw, 4.85rem);
  }

  .story-copy .hero-text {
    max-width: 620px;
  }

  .story-visual {
    justify-self: center;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .theme-toggle {
    min-height: 40px;
    padding: 9px 11px;
  }

  .theme-toggle span:last-child {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    box-shadow: none;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 360px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open .header-cta {
    justify-content: center;
  }

  .final-whatsapp {
    grid-template-columns: 1fr;
  }

  .final-whatsapp .btn {
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-index {
    position: static;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-prompt {
    right: 0;
    bottom: calc(100% + 10px);
    max-width: min(260px, calc(100vw - 32px));
    border-radius: 16px 16px 16px 4px;
  }

  .whatsapp-prompt::after {
    right: 22px;
    bottom: -6px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section-pad {
    padding: 62px 0;
  }

  .story-visual {
    min-height: 470px;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .showcase-hero {
    padding: 36px 0 54px;
  }

  .showcase-intro h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .hero-gallery {
    min-height: 140px;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-gallery-item {
    border-radius: 12px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 12px;
  }

  .showcase-card,
  .showcase-sublimation {
    grid-column: span 1;
  }

  .showcase-card {
    padding: 18px;
    border-radius: 16px;
  }

  .showcase-card h2 {
    font-size: 2rem;
  }

  .home-bazar {
    padding: 54px 0;
  }

  .home-bazar-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .bazar-slider {
    min-height: 320px;
    border-radius: 18px;
  }

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

  .bazar-photo {
    aspect-ratio: 3 / 4;
    padding: 8px;
  }

  .bazar-card-body {
    gap: 8px;
    padding: 12px;
  }

  .bazar-card h3 {
    font-size: 0.92rem;
  }

  .bazar-card p {
    font-size: 0.82rem;
  }

  .product-banner {
    min-height: 180px;
    padding: 16px;
  }

  .product-banner > div:first-child {
    max-width: 68%;
  }

  .product-banner img,
  .banner-product {
    width: 46%;
    height: 52%;
  }

  .product-banner h3 {
    font-size: 1.38rem;
  }

  .product-banner .popular-link {
    min-width: 120px;
  }

  .bazar-slide figcaption {
    left: 14px;
    bottom: 18px;
  }

  .bazar-dots {
    right: 14px;
    bottom: 22px;
  }

  .story-hero {
    min-height: 520vh;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .story-visual {
    min-height: 42vh;
  }

  .story-copy h1 {
    font-size: clamp(2.1rem, 9.2vw, 3.35rem);
    margin-bottom: 14px;
  }

  .story-copy h1 strong {
    min-height: 1.7em;
    font-size: 0.9em;
  }

  .story-copy .hero-text {
    font-size: 0.98rem;
  }

  .story-product {
    width: 225px;
    height: 250px;
  }

  .story-product.is-laser {
    width: 178px;
    height: 300px;
  }

  .story-product.is-vinyl,
  .story-product.is-gifts {
    width: 250px;
    height: 185px;
  }

  .story-product.is-print3d {
    width: 220px;
    height: 220px;
  }

  .story-product strong {
    font-size: 1.55rem;
  }

  .story-photo-main {
    width: 92%;
    height: 32vh;
    border-radius: 22px;
  }

  .story-badge {
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
  }

  .story-specs {
    bottom: 44px;
    width: calc(100% - 28px);
  }

  .story-step {
    padding: 0;
  }

  .category-grid,
  .category-index-grid,
  .product-list-grid,
  .product-gallery-grid,
  .media-gallery-grid,
  .work-grid,
  .popular-grid,
  .bazar-grid,
  .testimonial-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .post-media,
  .post-media img {
    min-height: 300px;
  }

  .inquiry-band {
    padding: 30px 18px;
  }

  .mockup-stage {
    min-height: 460px;
    border-radius: 22px;
  }

  .designer-control-grid,
  .designer-actions {
    grid-template-columns: 1fr;
  }

  .product-taza {
    width: 330px;
    height: 300px;
  }

  .product-remera {
    width: 310px;
    height: 390px;
  }

  .product-photo-mate {
    width: 300px;
    height: 370px;
  }

  .product-photo-termo {
    width: 220px;
    height: 430px;
  }

  .product-card {
    transform: scale(0.82);
  }

  .mockup-mate {
    left: 2%;
  }

  .mockup-cup {
    right: -4%;
  }

  .mockup-shirt {
    left: 18%;
  }

  .mockup-bottle {
    right: 7%;
  }

  .mockup-glass {
    left: -1%;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p,
  .footer-contact p {
    max-width: none;
  }

  .footer-column a {
    width: 100%;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   EDITOR REDISEÑADO: steps, chips, upload zone
   ========================================================= */

/* Barra de pasos */
.editor-steps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0 32px;
  flex-wrap: wrap;
  row-gap: 12px;
}

.editor-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: opacity 250ms;
}

.editor-step.is-active {
  opacity: 1;
}

.step-num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.editor-step.is-active .step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.step-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.editor-step-sep {
  flex: 1;
  min-width: 20px;
  max-width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

/* Panel del editor */
.editor-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editor-panel-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.editor-panel-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Chips de producto */
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms, transform 150ms;
}

.product-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

.product-chip.is-active {
  background: #fff;
  border-color: #fff;
  color: #0f172a;
}

/* Zona de carga */
.upload-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
  text-align: center;
}

.upload-zone:hover,
.upload-zone.is-dragover {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-zone-icon {
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms;
}

.upload-zone:hover .upload-zone-icon,
.upload-zone.is-dragover .upload-zone-icon {
  color: var(--blue);
}

.upload-zone strong {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.upload-zone p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* Slider de tamaño */
.editor-range-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-range-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.editor-range {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

/* Responsive del editor */
@media (max-width: 620px) {
  .editor-steps {
    gap: 0;
    padding: 20px 0 24px;
  }

  .editor-step-sep {
    min-width: 10px;
    max-width: 24px;
  }

  .step-label {
    font-size: 0.78rem;
  }

  .product-chip {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
}
