:root {
  --black: #0b0b0b;
  --soft-black: #151515;
  --gold: #d6b36a;
  --gold-light: #efd99f;
  --cream: #f7f3ea;
  --white: #ffffff;
  --gray: #767676;
  --line: rgba(214, 179, 106, 0.26);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

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

.topbar {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 6vw;
  background: rgba(11,11,11,.96);
  color: white;
  border-bottom: 1px solid rgba(214,179,106,.28);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 15px;
}

.brand-tagline {
  color: #b8b8b8;
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  transition: color .2s ease;
}

.nav a:hover {
  color: var(--gold);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 8vw;
  color: white;
  background:
    radial-gradient(circle at 75% 28%, rgba(214,179,106,.16), transparent 28%),
    radial-gradient(circle at 30% 65%, rgba(214,179,106,.08), transparent 32%),
    linear-gradient(125deg, #060606 0%, #111 55%, #1a1712 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 60px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(214,179,106,.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(214,179,106,.025),
    0 0 0 160px rgba(214,179,106,.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to right, #000 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.banner h2,
.contact-card h2 {
  font-family: "Playfair Display", serif;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.03;
  max-width: 850px;
}

.hero p {
  max-width: 640px;
  margin-top: 24px;
  color: #d8d8d8;
  font-size: 17px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: transform .2s ease, background .2s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.45);
  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
}

.benefits {
  max-width: 1180px;
  margin: -52px auto 0;
  position: relative;
  z-index: 5;
  background: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
}

.benefits article {
  padding: 32px 34px;
  border-right: 1px solid #eee;
}

.benefits article:last-child {
  border-right: 0;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.benefits h3 {
  font-size: 16px;
  margin-bottom: 7px;
}

.benefits p {
  font-size: 13px;
  color: var(--gray);
}

.section {
  padding: 105px 7vw;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}

.section-heading p {
  margin-top: 12px;
  color: var(--gray);
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.filter {
  border: 1px solid #d8d2c5;
  background: transparent;
  padding: 10px 17px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.filter.active,
.filter:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.product-grid {
  width: min(1200px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: white;
  overflow: hidden;
  border: 1px solid #ece7dd;
  box-shadow: 0 12px 35px rgba(34,24,10,.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(34,24,10,.09);
}

.product-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-image::before,
.product-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.product-image::before {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(214,179,106,.36);
}

.product-image::after {
  width: 115px;
  height: 115px;
  border: 1px solid rgba(214,179,106,.25);
}

.product-image span {
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: .12em;
  color: var(--gold-light);
}

.placeholder-shoe {
  background: linear-gradient(145deg, #101010, #25221c);
}

.placeholder-shoe.alt {
  background: linear-gradient(145deg, #1d1d1d, #0c0c0c);
}

.placeholder-jewel {
  background: linear-gradient(145deg, #262019, #0d0d0d);
}

.placeholder-jewel.alt {
  background: linear-gradient(145deg, #121212, #2a2218);
}

.placeholder-accessory {
  background: linear-gradient(145deg, #191816, #2b251c);
}

.product-info {
  padding: 20px;
}

.product-category {
  color: #9b7b38;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-info h3 {
  margin-top: 5px;
  font-size: 18px;
}

.product-meta {
  color: var(--gray);
  font-size: 12px;
  margin-top: 5px;
}

.product-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.product-bottom strong {
  font-size: 19px;
}

.mini-btn {
  background: var(--black);
  color: var(--gold);
  padding: 9px 15px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
}

.banner {
  background: var(--black);
  color: white;
  padding: 65px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.banner > div {
  max-width: 760px;
}

.banner h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.banner p {
  color: #c9c9c9;
  margin-top: 10px;
}

.payment-section {
  background: white;
}

.payment-grid {
  width: min(1050px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-card {
  border: 1px solid #ebe5d8;
  padding: 30px;
  background: var(--cream);
}

.payment-icon {
  font-size: 27px;
  margin-bottom: 13px;
}

.payment-card h3 {
  font-size: 17px;
  margin-bottom: 7px;
}

.payment-card p {
  color: var(--gray);
  font-size: 13px;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(214,179,106,.13), transparent 20%),
    var(--cream);
}

.contact-card {
  width: min(1100px, 100%);
  margin: auto;
  background: white;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  border: 1px solid #ece7dd;
}

.contact-card h2 {
  font-size: 46px;
}

.contact-card p {
  margin-top: 10px;
  color: var(--gray);
  max-width: 580px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.contact-links a {
  border-bottom: 1px solid #e6e0d6;
  padding: 10px 0;
  font-weight: 600;
  font-size: 13px;
}

.contact-links a:hover {
  color: #9b7b38;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #171717;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  border: 1px solid var(--gold);
  z-index: 30;
}

footer {
  background: #080808;
  color: #aaa;
  text-align: center;
  padding: 45px 20px;
}

.footer-brand {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 5px;
}

footer p {
  font-size: 12px;
}

.copyright {
  margin-top: 15px;
  color: #6f6f6f;
}

.hidden {
  display: none !important;
}

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

  .benefits {
    width: calc(100% - 32px);
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 70px;
    padding: 0 18px;
  }

  .brand-tagline {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    padding: 18px 22px 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(214,179,106,.22);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .hero {
    min-height: 620px;
    padding: 70px 24px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .benefits {
    margin-top: -30px;
    grid-template-columns: 1fr;
  }

  .benefits article {
    border-right: 0;
    border-bottom: 1px solid #eee;
  }

  .section {
    padding: 80px 20px;
  }

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

  .banner {
    padding: 55px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-card {
    padding: 32px 24px;
  }

  .contact-card h2 {
    font-size: 38px;
  }
}


.catalog-main-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  color: #7d6128;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: background .2s ease, color .2s ease;
}

.catalog-main-link:hover {
  background: var(--black);
  color: var(--gold);
}

.catalog-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(214,179,106,.15), transparent 32%),
    var(--black);
  color: white;
  min-height: 100%;
  display: flex;
}

.catalog-card-inner {
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.catalog-card-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.catalog-card-inner p {
  color: #cfcfcf;
  font-size: 13px;
  margin-bottom: 23px;
}


/* Logo oficial Sadex Store */
.brand {
  height: 62px;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.hero-brand-preview {
  position: absolute;
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(32vw, 430px);
  opacity: .12;
  filter: saturate(.85) contrast(1.05);
  pointer-events: none;
}

.hero-brand-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.footer-logo {
  display: block;
  width: min(230px, 68vw);
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-brand-preview {
    width: 52vw;
    right: -10vw;
    opacity: .07;
  }
}

@media (max-width: 720px) {
  .brand {
    height: 56px;
  }

  .brand-logo {
    height: 50px;
    max-width: 180px;
  }

  .hero-brand-preview {
    width: 82vw;
    right: -35vw;
    opacity: .055;
  }
}


/* Fotos reales del catálogo Treinta */
.real-product-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f4efe6;
  overflow: hidden;
}

.real-product-image::before,
.real-product-image::after {
  display: none;
}

.real-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.product-card:hover .real-product-image img {
  transform: scale(1.025);
}

@media (max-width: 720px) {
  .real-product-image {
    aspect-ratio: 4 / 5;
  }
}


/* Tarjetas locales robustas: no dependen de imágenes externas */
.local-product-cover {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 78% 22%, rgba(214,179,106,.22), transparent 25%),
    linear-gradient(145deg, #0c0c0c, #242019);
  color: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.local-product-cover::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(214,179,106,.28);
  border-radius: 50%;
  right: -35px;
  top: -35px;
}

.local-product-cover::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(214,179,106,.18);
  border-radius: 50%;
  right: 18px;
  top: 18px;
}

.local-product-monogram {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 27px;
  letter-spacing: .08em;
  position: relative;
  z-index: 2;
}

.local-product-label {
  margin-top: 7px;
  max-width: 85%;
  color: #f4f0e8;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.local-product-cta {
  margin-top: 15px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  position: relative;
  z-index: 2;
}

.catalog-links-section{background:#0b0b0b;color:white}
.catalog-links-grid{width:min(1050px,100%);margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.catalog-link-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:20px;padding:28px;border:1px solid rgba(214,179,106,.30);background:linear-gradient(145deg,#111,#1b1813);transition:.2s}
.catalog-link-card:hover{transform:translateY(-4px);border-color:var(--gold)}
.catalog-link-icon{font-size:34px}
.catalog-link-card h3{margin-top:4px;font-family:"Playfair Display",serif;font-size:24px}
.catalog-link-card p{color:#bdbdbd;margin-top:5px;font-size:13px}
.catalog-arrow{color:var(--gold);font-size:24px}
.social-pending{border-bottom:1px solid #e6e0d6;padding:10px 0;font-weight:600;font-size:13px;color:#999}
@media(max-width:720px){.catalog-links-grid{grid-template-columns:1fr}}


/* Redes sociales con iconos */
.social-icons-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 10px;
}

.social-icon-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d2c5;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.social-icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon-link.whatsapp { color: #25D366; }
.social-icon-link.instagram { color: #E4405F; }
.social-icon-link.facebook { color: #1877F2; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .social-icons-row {
    justify-content: flex-start;
  }
}

.jewelry-product-image{background:#17120d}.jewelry-product-image img{object-position:center}
