*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-deep: #050303;
  --bg-panel: #0b0b0b;
  --border-light: rgba(233, 169, 45, 0.2);
  --gold-1: #e9a92d;
  --gold-2: #f9d052;
  --gold-3: #ffd554;
  --gold-4: #fde374;
  --gold-5: #d77d0f;
  --gold-6: #cf481b;
  --gold-highlight: #db8b1a;
  --gold-gradient: linear-gradient(135deg, var(--gold-6), var(--gold-1), var(--gold-4));
  --gold-glow: rgba(255, 213, 84, 0.35);
  --text-main: #fdf5e7;
  --text-muted: rgba(253, 245, 231, 0.75);
  --site-max-width: 1302px;
}

body.dp-body {
  margin: 0;
  font-family: "Space Grotesk", "Cormorant Garamond", serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 213, 84, 0.1), transparent 45%),
    radial-gradient(circle at 80% -10%, rgba(255, 213, 84, 0.05), transparent 50%),
    var(--bg-deep);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--gold-3);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus-visible {
  color: var(--gold-4);
}

.dp-header {
  border-bottom: 1px solid var(--border-light);
  background: #000000;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dp-header-inner {
  width: min(100%, var(--site-max-width));
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 16px 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.brand {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  margin: 0;
}

.brand-mark {
  max-height: 82px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  line-height: 1;
}

.brand::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(255, 235, 180, 0.8) 0%,
      rgba(255, 210, 120, 0.45) 25%,
      rgba(255, 190, 80, 0.2) 45%,
      transparent 60%
    ),
    conic-gradient(
      rgba(255, 215, 140, 0.4) 0deg,
      transparent 45deg,
      rgba(255, 215, 140, 0.4) 90deg,
      transparent 135deg,
      rgba(255, 215, 140, 0.4) 180deg,
      transparent 225deg,
      rgba(255, 215, 140, 0.4) 270deg,
      transparent 315deg
    );
  mix-blend-mode: screen;
  filter: blur(0.8px);
  opacity: 0.85;
  animation: logoStarShine 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes logoStarShine {
  0% {
    left: -30%;
    opacity: 0;
  }

  20% {
    opacity: 0.9;
  }

  60% {
    left: 110%;
    opacity: 0.9;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand::after {
    animation: none;
    opacity: 0;
  }
}

.dp-nav,
.dp-nav a {
  line-height: 1;
  margin: 0;
}

.dp-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.dp-nav a {
  text-transform: uppercase;
  opacity: 0.9;
  font-size: 0.78rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.dp-nav a:hover,
.dp-nav a:focus-visible {
  opacity: 1;
  color: #f9d052;
  border-color: rgba(249, 208, 82, 0.6);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  text-align: right;
  color: var(--text-main);
  text-decoration: none;
  line-height: 1;
}

.header-phone-number {
  font-weight: 600;
  letter-spacing: 0.2em;
}

.header-phone-note {
  font-size: 0.66rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.cart-toggle {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 0.35rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.45);
}

.cart-toggle:hover,
.cart-toggle:focus-visible {
  border-color: var(--gold-3);
  box-shadow: 0 4px 24px rgba(255, 195, 92, 0.25);
}

.cart-icon {
  font-size: 1rem;
}

.cart-count {
  font-size: 0.65rem;
  background: rgba(255, 221, 118, 0.15);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(255, 221, 118, 0.3);
}

.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  color: inherit;
  transition: opacity 0.3s ease;
  font-size: 1.2rem;
}

.header-social:hover,
.header-social:focus-visible {
  opacity: 1;
}

.header-social-icon {
  width: 24px;
  height: 24px;
}

.dp-main {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: var(--text-main);
}

#home-slider {
  background: linear-gradient(135deg, #070707, #0f0c08 70%);
  border-bottom: 1px solid rgba(255, 215, 84, 0.24);
  position: relative;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.home-slider-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.home-slider-track {
  position: relative;
  overflow: hidden;
}

.home-slider-slide {
  display: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 1rem;
  align-items: center;
}

.home-slider-slide.active {
  display: grid;
}

.home-slider-slide img {
  display: block;
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(209, 167, 92, 0.3);
}

.home-slider-caption h2 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-4);
}

.home-slider-caption p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-slider-arrow {
  border-radius: 999px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 215, 84, 0.6);
  background: rgba(255, 215, 84, 0.08);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-slider-arrow:hover,
.home-slider-arrow:focus-visible {
  border-color: var(--gold-3);
  box-shadow: 0 0 18px rgba(255, 215, 84, 0.35);
}

@media (max-width: 880px) {
  .home-slider-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: 1rem;
  }

  .home-slider-slide {
    grid-template-columns: 1fr;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.hero-content {
  max-width: 100%;
}

.hero-content h1 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2.2rem, 4vw, 2.0rem);
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.75rem;
  color: #e39415;
  text-shadow: 0 0 20px rgba(227, 148, 21, 0.45);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-4);
}

.subtitle {
  font-size: 1.05rem;
  max-width: 32rem;
  color: #ffffff;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 1.5rem 0 1rem;
}

.btn {
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
}

.btn-primary {
  background-image: var(--gold-gradient);
  color: #120901;
  box-shadow: 0 12px 40px rgba(255, 215, 84, 0.35);
  border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(255, 215, 84, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-main);
  border-width: 1px;
  line-height: 1.2;

  margin: 0;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 215, 84, 0.5);
  color: var(--text-main);
}

.btn-small {
  padding: 0.55rem 1.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.btn.btn-small.btn-outline.add-to-cart:hover,
.btn.btn-small.btn-outline.add-to-cart:focus-visible {
  background: linear-gradient(135deg, rgba(255, 215, 84, 0.15), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 215, 84, 0.7);
  color: var(--text-main);
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-bullets li {
  margin-bottom: 0.3rem;
}

.hero-side h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

@media (max-width: 880px) {
  .hero {
    display: block;
  }

  .hero-side {
    margin-top: 1.75rem;
  }
}

.home-section {
  margin-top: 3rem;
}

.steps-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

.steps-section .steps-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.step-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 84, 0.25);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card h3 {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

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

.authority-section {
  margin-top: 2.5rem;
}

.authority-panel {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 215, 84, 0.25);
  background: rgba(8, 8, 8, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.authority-panel h2 {
  margin: 0 0 1rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f9d052;
}

.authority-list {
  margin: 0;
  padding-left: 1.35rem;
  list-style: disc;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.cta-close-section {
  margin-top: 3rem;
  padding: 2rem 1.25rem 3rem;
}

.cta-close-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: radial-gradient(circle at top left, rgba(249, 208, 82, 0.15), transparent 45%),
    rgba(4, 4, 4, 0.9);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 215, 84, 0.4);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.cta-close-panel h2 {
  margin: 0 0 0.75rem;
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f9d052;
}

.cta-close-panel p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-close-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-section-alt {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 2.25rem;
  align-items: start;
}

@media (max-width: 880px) {
  .section-split {
    grid-template-columns: 1fr;
  }
}

.section-header h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  background-image: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

@media (max-width: 880px) {
  .cards-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 880px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.titulo-destacados {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-grid,
.grid-destacados {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.featured-section {
  padding: 40px 20px;
}

.featured-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.card-product,
.card-service {
  background: linear-gradient(145deg, rgba(11, 11, 11, 0.98), rgba(18, 11, 6, 0.95));
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 84, 0.25);
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.card-image-link {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-body {
  padding: 0.9rem 1rem 1rem;
}

.card-body h3 {
  margin: 0 0 0.15rem;
  font-size: 1.1rem;
  color: var(--text-main);
}

.card-body .code {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.4rem;
}

.card-body .excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-footer {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.card-highlights {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.card-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-product:hover,
.card-service:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
}

.card-product::after,
.card-service::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 215, 84, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.card-product:hover::after,
.card-service:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.price {
  font-weight: 600;
}

.page-header h1 {
  font-family: "Cinzel Decorative", serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-image: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header p {
  color: var(--text-muted);
}

.cert-explanation {
  margin: 1.5rem auto 0;
  max-width: 860px;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text-main);
}

.cert-definition {
  margin: 1.5rem auto 0;
  max-width: 780px;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 84, 0.3);
}

.cert-definition h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-highlight);
}

.cert-definition p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-muted);
}

.cert-difference {
  margin: 1.5rem auto 0;
  max-width: 760px;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 84, 0.4);
  background: rgba(7, 7, 7, 0.95);
}

.cert-difference h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f9d052;
}

.cert-difference ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cert-cta-section {
  margin: 2.5rem auto;
  max-width: 960px;
  padding: 2rem 1.25rem;
}

.cert-cta-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 84, 0.4);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.cert-cta-text {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9d052;
}

.cert-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.page-layout {
  display: grid;
  /* galería más amplia para destacar la imagen del producto */
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  margin-top: 1.75rem;
}

/* Tienda: filtros más delgados (~20%) y listado amplio (~80%) */
.page-layout-shop {
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
}

.page-aside {
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}

.shop-sidebar {
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}

.shop-sidebar .filter-group {
  margin-bottom: 1rem;
}

.shop-sidebar .filter-group h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}

.shop-sidebar .filter-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.section-complementos {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, rgba(17, 14, 8, 0.95), rgba(5, 5, 5, 0.95));
  border-top: 1px solid rgba(255, 215, 84, 0.3);
  border-bottom: 1px solid rgba(255, 215, 84, 0.3);
}

.section-complementos-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.75rem;
}

.section-complementos-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.5fr);
  gap: 1.5rem;
  margin-top: 0.75rem;
}

@media (max-width: 880px) {
  .section-complementos-grid {
    grid-template-columns: 1fr;
  }
}

.page-aside .mystic-panel,
.mystic-panel {
  background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(19, 16, 9, 0.95));
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 84, 0.35);
  padding: 1.25rem 1.35rem 1.25rem;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.5rem;
}

.list-check li::before {
  content: "✶ ";
  color: var(--gold-highlight);
}

.link-arrow {
  font-size: 0.9rem;
  text-decoration: underline;
}

.section-footer {
  margin-top: 1.25rem;
}

.detail-gallery {
  position: relative;
  max-width: 100%;
}

.detail-main-image {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.detail-main-image img {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(209, 167, 92, 0.35);
}

.image-magnifier-lens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 250%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: none;
  z-index: 10;
}

.badge-unique {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
}

.detail-thumbs {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.detail-thumb {
  border: 1px solid rgba(209, 167, 92, 0.35);
  border-radius: 0.75rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.detail-thumb img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.detail-thumb.active {
  border-color: #d1a75c;
  box-shadow: 0 0 0 1px rgba(209, 167, 92, 0.4);
}

.detail-info {
  max-width: 480px;
}

.detail-info h1 {
  font-family: "Cinzel Decorative", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-info .code {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d1a75c;
}

.detail-description {
  font-size: 0.95rem;
  opacity: 0.9;
}

.input,
input.input,
select.input {
  width: 100%;
  padding: 0.45rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 215, 84, 0.4);
  background: rgba(10, 10, 10, 0.9);
  color: var(--text-main);
  font-family: "Space Grotesk", sans-serif;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus,
input.input:focus,
select.input:focus {
  border-color: var(--gold-3);
  box-shadow: inset 0 0 28px rgba(255, 215, 84, 0.2);
  outline: none;
}

.form-panel {
  max-width: 520px;
  background: var(--bg-panel);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 215, 84, 0.3);
  padding: 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.cert-validation {
  margin: 2rem auto 1.25rem;
  max-width: 540px;
  text-align: center;
}

.cert-validation-intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cert-validation-form {
  margin: 0 auto;
}

.cert-page-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cert-page-header h1,
.cert-page-header p {
  margin-left: auto;
  margin-right: auto;
}

.cert-difference,
.cert-cta-section {
  display: none;
}

.cert-result-media {
  margin: 1rem 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 84, 0.3);
}

.cert-result-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.cert-result-desc {
  margin: 0;
  padding: 0.75rem 0.8rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.55);
}

.cert-validation-form {
  width: min(100%, 460px);
}

.cert-validation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-validation p,
.cert-validation label {
  text-align: center;
}

@media (max-width: 768px) {
  .cert-result {
    padding: 1rem;
  }

  .cert-result header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .cert-result-desc {
    font-size: 0.85rem;
  }

  .cert-validation-form {
    width: 100%;
  }
}
.cert-benefits {
  margin: 1.5rem auto;
  max-width: 820px;
  text-align: center;
}

.cert-benefits h3 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f9d052;
}

.cert-benefits-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cert-benefits-list li {
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}

.cert-benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold-highlight);
}

.field-row {
  display: flex;
  gap: 0.75rem;
}

.notice.success {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: rgba(16, 54, 30, 0.8);
}

.notice.error {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: rgba(80, 22, 22, 0.9);
}

.cert-result {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  background: rgba(2, 2, 2, 0.85);
  border: 1px solid rgba(255, 215, 84, 0.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-result.valid {
  background: rgba(12, 52, 32, 0.9);
  border: 1px solid rgba(87, 198, 137, 0.7);
}

.cert-result.invalid {
  background: rgba(55, 18, 18, 0.9);
  border: 1px solid rgba(221, 110, 110, 0.7);
}

.cert-result header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.cert-result dl {
  margin-top: 0.7rem;
}

.cert-result dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.cert-result dd {
  margin: 0 0 0.4rem;
}

.track-result {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(17, 21, 16, 0.9);
  border: 1px solid rgba(209, 167, 92, 0.35);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(209, 167, 92, 0.25);
  padding: 0.45rem 0.4rem;
  text-align: left;
}

.cart-page-main {
  max-width: 100%;
}

.cart-page-side {
  max-width: 460px;
}

.cart-table th:first-child,
.cart-table td:first-child {
  width: 80px;
}

.cart-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(209, 167, 92, 0.35);
}

.footer-logo {
  width: 210px;
  height: auto;
  display: block;
  margin-bottom: 0.6rem;
}

@media (max-width: 880px) {
  .cart-page-side {
    margin-top: 1.5rem;
  }
}

.dp-footer {
  border-top: 1px solid rgba(255, 215, 84, 0.3);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(9, 7, 4, 0.95));
  padding: 1.75rem 1.5rem 1rem;
}

.footer-grid {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1.5fr 1.7fr;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  font-weight: 700;
  color: var(--gold-highlight);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.footer-grid li {
  margin-bottom: 0.25rem;
}

.footer-grid a {
  color: #ffffff;
  text-decoration: none;
}

.checkout-info {
  margin-top: 1.8rem;
  padding: 1.2rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 84, 0.25);
  background: rgba(8, 8, 8, 0.9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

.checkout-info h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f9d052;
}

.checkout-info ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkout-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-main);
  letter-spacing: 0.08em;
}

.checkout-badges span {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 208, 82, 0.12);
  border: 1px solid rgba(249, 208, 82, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.checkout-help {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-help p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 0.95fr);
}

.cart-grid.without-optional {
  grid-template-columns: minmax(0, 2fr) minmax(0, 0.95fr);
}

.cart-grid .cart-page-main {
  grid-column: 1;
}

.cart-whatsapp-form {
  grid-column: 2 / span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.cart-optional-column {
  display: block;
}

.cart-optional-section {
  padding: 1.4rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(249, 208, 82, 0.25);
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.cart-send-column {
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 84, 0.35);
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cart-whatsapp-form .cart-send-column {
  align-self: stretch;
}

.cart-grid.without-optional .cart-send-column {
  grid-column: 2;
}

.cart-send-column h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f9d052;
}

.cart-send-column p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cart-send-column.empty-cart {
  padding: 1.2rem;
  border: 1px dashed rgba(255, 215, 84, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 1024px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }

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

.optional-category + .optional-category {
  margin-top: 0.75rem;
}

.optional-category h4 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(249, 208, 82, 0.85);
}

.optional-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.optional-option:last-child {
  border-bottom: none;
}

.optional-option input {
  width: 20px;
  height: 20px;
}

.optional-option span strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.optional-option span small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.optional-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-bottom {
  max-width: var(--site-max-width);
  margin: 0.5rem auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  background: #c86e18;
  color: #120901;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  z-index: 60;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(255, 215, 84, 0.25);
  color: var(--text-main);
}

.whatsapp-float span {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-icon circle {
  fill: var(--gold-4) !important;
}

.whatsapp-icon path {
  fill: #120901 !important;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.page-loader-inner {
  padding: 1.25rem 1.75rem;
  border-radius: 999px;
  background: transparent;
  border: none;
  box-shadow: 0 0 140px rgba(0, 0, 0, 0.95);
}

.page-loader-logo {
  width: 160px;
  height: auto;
  display: block;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

@keyframes loaderPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.page-loader--flash {
  animation: loaderFlash 0.7s ease-in-out forwards;
}

@keyframes loaderFlash {
  0% {
    opacity: 1;
    filter: brightness(1);
  }
  40% {
    opacity: 1;
    filter: brightness(1.7);
  }
  100% {
    opacity: 0;
    filter: brightness(1);
  }
}

.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 55;
}

.cart-drawer.open {
  display: flex;
}

.cart-drawer-inner {
  width: 320px;
  max-width: 100%;
  background: linear-gradient(145deg, rgba(6, 6, 6, 0.95), rgba(18, 10, 4, 0.95));
  border-left: 1px solid rgba(255, 215, 84, 0.4);
  padding: 1.2rem 1rem;
  position: relative;
}

.cart-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #f5ebd8;
  cursor: pointer;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.cart-item span {
  display: block;
}

.cart-summary {
  margin-top: 0.7rem;
  border-top: 1px solid rgba(255, 215, 84, 0.3);
  padding-top: 0.6rem;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 70;
}

.popup-overlay.open {
  display: flex;
}

.popup {
  max-width: 440px;
  width: 90%;
  background: linear-gradient(145deg, rgba(9, 9, 9, 0.95), rgba(18, 11, 5, 0.97));
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 215, 84, 0.35);
  padding: 1.2rem 1.3rem 1.1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.8);
}

.popup header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.popup h2 {
  font-size: 1.05rem;
}

.popup-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #f5ebd8;
  cursor: pointer;
}

.popup ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.7rem;
  font-size: 0.9rem;
}

.hint {
  font-size: 0.8rem;
  opacity: 0.75;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .dp-nav {
    display: none;
  }

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

  .header-phone-note {
    display: none;
  }
}

/* SLIDER */
.dp-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    height: 490px;
}

.dp-slider-inner {
    position: relative;
    height: 100%;
}

.dp-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.dp-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.dp-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Degradado radial: centro más oscuro, bordes más claros/transparente */
    background: radial-gradient(circle at center,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.50) 40%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0.00) 100%);
    pointer-events: none;
    z-index: 1;
}

.dp-slide.active {
    opacity: 1;
    pointer-events: auto;
}

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

.dp-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: #fff;
    text-shadow: 2px 2px 8px #000;
    z-index: 2;
}

.dp-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.4);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.dp-prev { left: 10px; }
.dp-next { right: 10px; }

/* DESTACADOS */
.featured-section {
    padding: 40px 20px;
}

.featured-title {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.featured-item {
    text-align: center;
}

.featured-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.grid-destacados.home-featured-grid,
.home-featured-grid {
  display: grid;
  gap: 20px;
}

.dp-heading-main,
.dp-text-highlight {
  color: var(--gold-3);
}

.destacados {
  max-width: var(--site-max-width);
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .grid-destacados.home-featured-grid,
  .home-featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .grid-destacados.home-featured-grid,
  .home-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-destacados.home-featured-grid,
  .home-featured-grid {
    grid-template-columns: 1fr;
  }
}


