:root {
  --black: #0d0d0d;
  --gold: #c9a24a;
  --marble: #f5f3ef;
  --cement: #b8b8b8;
  --olive: #3e4a32;
  --white: #ffffff;
  --soft-white: #f2efe9;
  --shadow: rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--soft-white);
  line-height: 1.6;
}

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

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

button,
.btn {
  font: inherit;
  border: none;
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:min(1450px,95%);
    height:78px;

    display:flex;
    align-items:center;

    z-index:999;

    border-radius:22px;

    backdrop-filter:blur(22px);

    background:rgba(12,12,12,.55);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 45px rgba(0,0,0,.30);

    transition:.35s;
}

.site-header.scrolled{

    background:rgba(12,12,12,.88);

    backdrop-filter:blur(28px);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.header-inner{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 30px;

}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo{
  height: 180px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201,162,74,.20));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(201, 162, 74, 0.95), rgba(255, 255, 255, 0.12));
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand p {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.brand small {
  color: var(--cement);
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  position: relative;
  color: var(--soft-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--marble);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.95), rgba(229, 206, 141, 0.95));
  color: var(--black);
  font-weight: 700;
}

.btn-secondary,
.btn-tertiary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201, 162, 74, 0.9);
  color: var(--marble);
}

.btn-large {
  padding: 1.2rem 2rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 7rem 0 2rem;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.95)), url('../images/banners/hero.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(197, 162, 76, 0.18), transparent 25%), linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.hero-copy {
  margin: 1.5rem auto 2.5rem;
  max-width: 620px;
  color: rgba(245, 243, 239, 0.86);
  font-size: 1.05rem;
}

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

.section {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-header span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
}

.section-header h2 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cards-grid,
.product-grid,
.combo-grid,
.projects-grid {
  display: grid;
  gap: 1.6rem;
}

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

.card,
.product-card,
.combo-card,
.cta-card,
.about-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.card h3,
.product-card h3,
.combo-card h3,
.about-card h3,
.cta-card h2 {
  font-family: 'Cinzel', serif;
  margin-top: 0;
}

.card p,
.product-card p,
.combo-card p,
.about-card p,
.section-text {
  margin: 1rem 0 0;
  color: rgba(245, 243, 239, 0.85);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-media {
  width: 100%;
  height: 260px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 20px 40px rgba(0,0,0,0.35);

  transition: transform .4s ease;
}

.product-card:hover .product-media {
  transform: scale(1.03);
}

.griferias-img {
  background-image: url("../images/productos/griferias.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-card h3 {
  margin-bottom: 0.8rem;
}

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

.combo-card ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: rgba(245, 243, 239, 0.82);
}

.combo-card li {
  margin-bottom: 0.7rem;
}

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

.project-card {
  min-height: 280px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 18px 60px rgba(0,0,0,0.2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.about-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(62, 74, 50, 0.82), rgba(13, 13, 13, 0.88));
}

.about-card p {
  margin: 0;
}

.section-text {
  max-width: 740px;
  margin-bottom: 2rem;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(201, 162, 74, 0.2);
  padding: 2.5rem;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.site-footer a {
  color: rgba(245, 243, 239, 0.9);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 0.92rem;
}

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

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

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

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

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 8rem;
  }

  .cards-grid,
  .product-grid,
  .combo-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .header-inner {
    padding: 1rem 0.75rem;
  }
  
}
.griferias-img {
  background-image: url("../images/productos/griferias.png") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1rem;
  display: block;
}
.carousel {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: sliderVigna 12s infinite;
}

.carousel-img.img1 { animation-delay: 0s; }
.carousel-img.img2 { animation-delay: 3s; }
.carousel-img.img3 { animation-delay: 6s; }
.carousel-img.img4 { animation-delay: 9s; }

@keyframes sliderVigna {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

.product-options {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.model-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  color: var(--soft-white);
  border: 1px solid rgba(201,162,74,0.28);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  text-align: left;
  transition: 0.25s ease;
}

.model-btn:hover {
  background: rgba(201,162,74,0.15);
  transform: translateY(-2px);
}

.model-btn span {
  color: var(--gold);
  font-weight: 700;
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-modal.open {
  display: flex;
}

.modal-content {
  width: min(950px, 100%);
  background: linear-gradient(135deg, #111, #1b1b1b);
  border: 1px solid rgba(201,162,74,0.35);
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.modal-content img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  background: #000;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
}

.modal-info h2 {
  font-family: 'Cinzel', serif;
  margin-top: 0;
}

.modal-price {
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 800;
}

.modal-info ul {
  padding-left: 1.2rem;
}

@media (max-width: 760px) {
  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-content img {
    height: 300px;
  }
}

.product-modal.open {
  display: flex;
}

.modal-content {
  width: min(900px, 92vw);
  max-height: 82vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #111, #1b1b1b);
  border: 1px solid rgba(201,162,74,0.35);
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  position: relative;
}

.modal-gallery {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.8rem;
}

.main-modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  background: #000;
}

.modal-thumbs {
  display: grid;
  gap: 0.6rem;
}

.modal-thumbs img {
  width: 70px;
  height: 62px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(201,162,74,0.45);
}

.modal-video {
  grid-column: 1 / -1;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
  border: 1px solid rgba(201,162,74,0.35);
}

@media (max-width: 760px) {
  .modal-content {
    grid-template-columns: 1fr;
  }
}

.modal-content {
  width: min(1050px, 94vw);
  max-height: 86vh;
  overflow-y: auto;
  grid-template-columns: 1.25fr 0.9fr;
}

.modal-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.main-modal-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 20px;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.modal-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.modal-video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 760px) {
  .modal-content {
    grid-template-columns: 1fr;
  }
}

.catalog-card {
  grid-column: 1 / -1;
}

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

.model-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,74,0.28);
  border-radius: 22px;
  padding: 1rem;
  color: var(--soft-white);
  text-align: center;
  transition: .25s ease;
  cursor:pointer;
}

.model-card:hover {
  transform: translateY(-4px);
  background: rgba(201,162,74,0.12);
}

.model-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.model-card strong {
  display: block;
  font-family: 'Cinzel', serif;
  margin-bottom: .4rem;
}

.model-card span {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
}

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

.image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.image-viewer.open {
  display: flex;
}

.image-viewer img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
}

.image-viewer-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 201;
}

.hero-carousel {
  width: 100%;
  max-width: 1600px;
  height: 500px;
  margin: 4rem auto 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 162, 74, 0.25);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 3s ease;
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,74,0.35);
  color: var(--soft-white);
  border-radius: 24px;
  padding: 0;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  transition: .25s ease;
}

.category-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 2s ease;
}

.category-slide.active {
  opacity: .72;
  transform: scale(1);
}

.category-card span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 190px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.78));
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card:hover .category-slide.active {
  opacity: .9;
}

.categoria-productos {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  margin-top: 2rem;
}

.categoria-productos.active {
  display: block;
}

.categoria-productos h3 {
  font-family: 'Cinzel', serif;
  margin-top: 0;
}

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

.product-mini-carousel {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: #000;
}

.product-mini-carousel .mini-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}

.product-mini-carousel .mini-slide.active {
  opacity: 1;
}

.product-cover{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  margin-bottom:15px;
}

/* ===========================
   BOTONES FLOTANTES
=========================== */

.social-float{
    position:fixed;
    right:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.social-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    font-weight:bold;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
    transition:.25s;
}

.social-btn:hover{
    transform:scale(1.15);
}

.facebook{
    background:#1877F2;
}

.tiktok{
    background:#000;
}

.whatsapp{
    background:#25D366;
}

/* ===========================
   BOTON CATEGORIAS
=========================== */

.btn-categorias-fijo{

    position:fixed;

    left:0;

    top:50%;

    transform:translateY(-50%);

    background:#d4af37;

    color:#111;

    padding:15px 18px;

    border:none;

    border-radius:0 15px 15px 0;

    font-weight:bold;

    cursor:pointer;

    z-index:9999;

    box-shadow:0 8px 20px rgba(0,0,0,.35);

    transition:.25s;
}

.btn-categorias-fijo:hover{

    background:#f3cf5b;

}

.btn-subir{
  position: fixed;

  left: 26px;
  bottom: 445px;

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  background: #d4af37;
  color: #111;

  font-size: 28px;
  font-weight: bold;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 9999;

  box-shadow: 0 10px 25px rgba(0,0,0,.35);

  transition: all .25s ease;
}

.btn-subir:hover{
  background:#f3cf5b;
  transform:translateY(-4px) scale(1.08);
}

.btn-subir.visible{
  display:flex;
}
/* ===========================
   HERO PREMIUM VIGNA
=========================== */

.hero-premium{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:140px 0 60px;
}

.hero-premium-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(13,13,13,.95) 0%, rgba(13,13,13,.78) 42%, rgba(13,13,13,.35) 100%),
    url("../images/banners/hero.png") center/cover no-repeat;
  z-index:0;
}

.hero-premium-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,162,74,.22), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.10), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.88));
  z-index:1;
}

.hero-premium-content{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
}

.hero-premium-text{
  max-width:720px;
}

.hero-premium-text h1{
  margin:0;
  font-family:'Cinzel', serif;
  font-size:clamp(3rem, 5vw, 5.8rem);
  line-height:.95;
  letter-spacing:-.04em;
  color:#fff;
  max-width:720px;
  text-shadow:0 25px 80px rgba(0,0,0,.55);
}

.hero-premium-text .hero-copy{
  margin:28px 0 36px;
  max-width:620px;
  font-size:1.1rem;
  color:rgba(245,243,239,.86);
}

.hero-premium-card{
  justify-self:end;
  max-width:390px;
  padding:34px;
  border-radius:32px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(201,162,74,.30);
  backdrop-filter:blur(18px);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.hero-premium-card span{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.72rem;
  font-weight:700;
}

.hero-premium-card h3{
  font-family:'Cinzel', serif;
  font-size:1.8rem;
  line-height:1.15;
  margin:18px 0 14px;
}

.hero-premium-card p{
  color:rgba(245,243,239,.78);
  margin:0;
}

.hero-premium .hero-carousel{
  display:none;
}

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

  .hero-premium-card{
    justify-self:start;
  }

  .hero-premium .hero-carousel{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:35px;
  }
}

/* ===========================
   AJUSTE HERO PRINCIPAL VIGNA
=========================== */

.hero-premium{
  min-height:100vh;
  padding:130px 0 0;
  display:flex;
  align-items:center;
}

.hero-premium-content{
  grid-template-columns:1fr;
  max-width:1200px;
}

.hero-premium-text{
  max-width:650px;
}

.hero-premium-text h1{
  margin:0;
  font-family:'Cinzel', serif;
  font-size:clamp(3.5rem, 6vw, 6.8rem);
  line-height:.92;
  letter-spacing:-.04em;
  color:#fff;
}

.hero-premium-text h1 span{
  color:var(--gold);
}

.hero-premium-text .hero-copy{
  max-width:620px;
  margin:28px 0 34px;
  font-size:1.05rem;
  color:rgba(255,255,255,.88);
}

.hero-premium-bg{
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 37%, rgba(0,0,0,.18) 100%),
    url("../images/banners/hero.png") center right/cover no-repeat;
}

.hero-premium-overlay{
  background:
    radial-gradient(circle at 18% 42%, rgba(201,162,74,.22), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.88));
}

/*==================================================
                HERO V2 VIGNA
==================================================*/

.hero-v2{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:#0b0b0b;
}

.hero-v2-bg{
    position:absolute;
    inset:0;
    background:url("../images/banners/hero.png") center right/cover no-repeat;
    transform:scale(1.05);
}

.hero-v2-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,
        rgba(8,8,8,.96) 0%,
        rgba(8,8,8,.90) 32%,
        rgba(8,8,8,.45) 62%,
        rgba(8,8,8,.12) 100%);
}

.hero-v2-content{

    position:relative;
    z-index:10;

    display:grid;

    grid-template-columns:55% 45%;

    align-items:center;

    min-height:100vh;

}

.hero-v2-text{

    max-width:620px;

}

.hero-v2-text .eyebrow{

    color:#d4af37;

    letter-spacing:.35em;

    margin-bottom:20px;

}

.hero-v2-text h1{

    margin:0;

    font-size:88px;

    line-height:.90;

    font-family:"Cinzel",serif;

    color:white;

    font-weight:700;

}

.hero-v2-text h1 span{

    color:#d4af37;

}

.hero-v2-text p{

    margin-top:35px;

    font-size:19px;

    line-height:1.8;

    color:#dddddd;

}

.hero-v2-product{

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

.hero-v2-product img{
    width:92%;
    max-width:760px;
    border-radius:38px;
    object-fit:cover;
    opacity:.95;
    filter:
      contrast(1.08)
      saturate(1.08)
      drop-shadow(0 80px 120px rgba(0,0,0,.65));
}

.hero-v2-product::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:8%;
    background:radial-gradient(circle, rgba(212,175,55,.28), transparent 68%);
    filter:blur(20px);
    z-index:-1;
}

.hero-v2 .hero-actions{

    margin-top:45px;

}

/*==================================================
                HERO FINAL VIGNA
==================================================*/

.hero-final{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#090909;
}

.hero-final-bg{
    position:absolute;
    inset:0;
    background:url("../images/banners/hero.png") center right/cover no-repeat;
    transform:scale(1.03);
}

.hero-final-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(8,8,8,.97) 0%,
            rgba(8,8,8,.90) 28%,
            rgba(8,8,8,.55) 55%,
            rgba(8,8,8,.12) 100%
        );
}

.hero-final-content{

    position:relative;
    z-index:20;

    display:flex;

    align-items:center;

    min-height:100vh;

}

.hero-final-text{

    max-width:640px;

}

.hero-final-text .eyebrow{

    color:#d4af37;

    letter-spacing:.35em;

    font-size:14px;

    margin-bottom:18px;

}

.hero-final-text h1{

    font-family:"Cinzel",serif;

    font-size:88px;

    line-height:.88;

    margin:0;

    color:#ffffff;

}

.hero-final-text h1 span{

    color:#d4af37;

}

.hero-line{

    width:90px;

    height:3px;

    background:#d4af37;

    margin:35px 0;

}

.hero-final-copy{

    color:#ececec;

    font-size:20px;

    line-height:1.8;

    max-width:560px;

}

.hero-actions{

    margin-top:45px;

    display:flex;

    gap:18px;

}

/*==================================================
          AJUSTES FINALES HERO VIGNA
==================================================*/

.hero-final{
  padding-top:90px;
}

.hero-final-bg{
  background-position:center right;
  filter:brightness(.95) contrast(1.12) saturate(1.05);
}

.hero-final-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.98) 0%,
      rgba(5,5,5,.92) 30%,
      rgba(5,5,5,.45) 58%,
      rgba(5,5,5,.05) 100%
    ),
    radial-gradient(circle at 18% 48%, rgba(212,175,55,.22), transparent 28%);
}

.hero-final-text h1{
  text-transform:uppercase;
  text-shadow:0 25px 80px rgba(0,0,0,.75);
}

.hero-final-text h1 span{
  color:#d4af37;
  text-shadow:0 0 35px rgba(212,175,55,.28);
}

.hero-final-copy{
  text-shadow:0 10px 35px rgba(0,0,0,.9);
}

.hero-final .btn-primary{
  padding:16px 34px;
}

.hero-final .btn-secondary{
  padding:16px 34px;
  border:1px solid rgba(212,175,55,.65);
  background:rgba(0,0,0,.35);
}

/* AJUSTE HERO MÁS LIMPIO */

.hero-final-bg{
  filter:brightness(.72) contrast(1.18) saturate(1.05);
  background-position:center right;
}

.hero-final-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(3,3,3,.99) 0%,
      rgba(3,3,3,.95) 34%,
      rgba(3,3,3,.68) 58%,
      rgba(3,3,3,.16) 100%
    ),
    radial-gradient(circle at 18% 48%, rgba(212,175,55,.18), transparent 28%);
}

.hero-final-content{
  align-items:flex-start;
  padding-top:210px;
}

.hero-final-text{
  max-width:900px;
}

.hero-final-text h1{
  font-size:clamp(4rem, 5.6vw, 6.4rem);
}

.hero-final-copy{
  max-width:520px;
  font-size:1.05rem;
}

.hero-line{
  margin:28px 0;
}

/*==================================================
              HERO LUXURY VIGNA
==================================================*/

.hero-luxury{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#050505;
}

.hero-luxury-bg{
  position:absolute;
  inset:0;
  background:url("../images/banners/hero.png") center right/cover no-repeat;
  filter:brightness(.92) contrast(1.08) saturate(1.1);
}

.hero-luxury-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.88) 35%,
      rgba(0,0,0,.38) 65%,
      rgba(0,0,0,.05) 100%
    ),
    radial-gradient(circle at 18% 45%, rgba(212,175,55,.18), transparent 30%);
}

.hero-luxury-content{
  position:relative;
  z-index:5;
  min-height:100vh;
  display:flex;
  align-items:center;

  padding-top:40px;

  padding-left:90px;
}

.hero-luxury-text{
  max-width:520px;
}

.hero-luxury-text .eyebrow{
  color:#d4af37;
  letter-spacing:.38em;
  font-size:14px;
  margin-bottom:24px;
}

.hero-luxury-text h1{
  margin:0;
  font-family:"Cinzel", serif;
  font-size:clamp(4.2rem, 6vw, 7rem);
  line-height:.88;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 25px 80px rgba(0,0,0,.8);
}

.hero-luxury-text h1 span{
  color:#d4af37;
}

.hero-line{
  width:85px;
  height:3px;
  background:#d4af37;
  margin:32px 0;
}

.hero-luxury-text p{
  max-width:540px;
  color:#f1f1f1;
  font-size:1.08rem;
  line-height:1.85;
  text-shadow:0 10px 30px rgba(0,0,0,.9);
}

.hero-luxury .hero-actions{
  margin-top:38px;
  display:flex;
  gap:20px;
}

.hero-luxury .btn-primary{
  padding:16px 34px;
}

.hero-luxury .btn-secondary{
  padding:16px 34px;
  border:1px solid rgba(212,175,55,.7);
  background:rgba(0,0,0,.38);
}

/* ===========================
   LIMPIEZA RÁPIDA VIGNA HOME
=========================== */

.hero,
.hero-premium,
.hero-v2,
.hero-final{
  display:none !important;
}

.hero-luxury{
  min-height:100vh !important;
  padding:0 !important;
}

.hero-luxury-content{
  min-height:100vh !important;
  align-items:flex-start !important;
  padding-top:150px !important;
  padding-left:120px !important;
}

.hero-luxury-text{
  max-width:620px !important;
}

.hero-luxury-text h1{
  font-size:clamp(4.8rem, 6.4vw, 7.4rem) !important;
  line-height:.88 !important;
}

.hero-luxury-bg{
  background-position:center right !important;
  filter:brightness(.88) contrast(1.12) saturate(1.08) !important;
}

.hero-luxury-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98) 0%,
      rgba(0,0,0,.90) 34%,
      rgba(0,0,0,.42) 65%,
      rgba(0,0,0,.05) 100%
    ) !important;
}

.site-header{
  top:18px !important;
  height:78px !important;
  background:rgba(8,8,8,.72) !important;
  border:1px solid rgba(212,175,55,.18) !important;
}

.brand-logo{
  height:155px !important;
}

/* ===========================
   CATEGORÍAS PREMIUM VIGNA
=========================== */

.section-products{
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.10), transparent 28%),
    linear-gradient(180deg, #050505, #0d0d0d);
}

.category-grid{
  display:grid !important;
  grid-template-columns:repeat(3, 1fr) !important;
  gap:26px !important;
  margin-top:35px !important;
  margin-bottom:60px !important;
}

.category-card{
  min-height:280px !important;
  border-radius:34px !important;
  overflow:hidden !important;
  border:1px solid rgba(212,175,55,.28) !important;
  background:#111 !important;
  box-shadow:0 35px 90px rgba(0,0,0,.35) !important;
}

.category-card span{
  min-height:280px !important;
  font-size:1.35rem !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.86)) !important;
}

.category-slide{
  transition:opacity .8s ease, transform 4s ease !important;
}

.category-slide.active{
  opacity:.76 !important;
}

.category-card:hover{
  transform:translateY(-8px) !important;
  border-color:rgba(212,175,55,.75) !important;
  box-shadow:0 45px 120px rgba(0,0,0,.55) !important;
}

.category-card:hover .category-slide.active{
  opacity:.95 !important;
  transform:scale(1.08) !important;
}

@media(max-width:900px){
  .category-grid{
    grid-template-columns:1fr !important;
  }
}

/* ===========================
   PRODUCTOS PREMIUM VIGNA
=========================== */

.categoria-productos{
  background:rgba(255,255,255,.035) !important;
  border:1px solid rgba(212,175,55,.18) !important;
  border-radius:36px !important;
  padding:38px !important;
  box-shadow:0 35px 100px rgba(0,0,0,.35) !important;
}

.categoria-productos h3{
  font-size:2rem !important;
  color:#fff !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
  margin-bottom:28px !important;
}

.model-grid{
  gap:26px !important;
}

.model-card{
  position:relative !important;
  overflow:hidden !important;
  border-radius:30px !important;
  padding:16px !important;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)) !important;
  border:1px solid rgba(212,175,55,.22) !important;
  box-shadow:0 28px 80px rgba(0,0,0,.38) !important;
  transition:.35s ease !important;
}

.model-card:hover{
  transform:translateY(-10px) !important;
  border-color:rgba(212,175,55,.75) !important;
  box-shadow:0 45px 120px rgba(0,0,0,.58) !important;
}

.model-card img,
.product-cover{
  height:260px !important;
  border-radius:24px !important;
  object-fit:cover !important;
  transition:.45s ease !important;
}

.model-card:hover img{
  transform:scale(1.06) !important;
}

.model-card strong{
  margin-top:18px !important;
  font-size:1.15rem !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
  color:#fff !important;
}

.model-card span{
  display:block !important;
  margin-top:8px !important;
  color:#d4af37 !important;
  font-size:1.25rem !important;
  font-weight:800 !important;
}

/* ===========================
   MODAL PRODUCTO PREMIUM
=========================== */

.product-modal{
  background:rgba(0,0,0,.88) !important;
  backdrop-filter:blur(18px) !important;
  z-index:10000 !important;
}

.modal-content{
  width:min(1180px,94vw) !important;
  max-height:88vh !important;
  overflow-y:auto !important;
  border-radius:38px !important;
  padding:28px !important;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.12), transparent 32%),
    linear-gradient(145deg, rgba(24,24,24,.98), rgba(5,5,5,.98)) !important;
  border:1px solid rgba(212,175,55,.32) !important;
  box-shadow:0 45px 140px rgba(0,0,0,.75) !important;
  grid-template-columns:1.15fr .85fr !important;
}

.modal-gallery{
  gap:18px !important;
}

.main-modal-img{
  height:460px !important;
  border-radius:30px !important;
  object-fit:cover !important;
  box-shadow:0 30px 90px rgba(0,0,0,.45) !important;
}

.modal-thumbs{
  grid-template-columns:repeat(3,1fr) !important;
  gap:12px !important;
}

.modal-thumbs img{
  height:105px !important;
  border-radius:18px !important;
  border:1px solid rgba(212,175,55,.32) !important;
  opacity:.72 !important;
  transition:.25s !important;
}

.modal-thumbs img:hover{
  opacity:1 !important;
  transform:translateY(-4px) !important;
}

.modal-video{
  height:210px !important;
  border-radius:22px !important;
  border:1px solid rgba(212,175,55,.32) !important;
}

.modal-info{
  padding:12px 12px 12px 0 !important;
}

.modal-info h2{
  font-size:clamp(2rem,3vw,3.5rem) !important;
  line-height:1 !important;
  margin-bottom:18px !important;
  color:#fff !important;
}

.modal-price{
  font-size:2rem !important;
  color:#d4af37 !important;
  margin:0 0 24px !important;
}

#modalDescription{
  color:rgba(255,255,255,.78) !important;
  line-height:1.75 !important;
}

#modalFeatures{
  margin:26px 0 !important;
  padding:0 !important;
  list-style:none !important;
}

#modalFeatures li{
  padding:12px 0 12px 32px !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
  position:relative !important;
  color:rgba(255,255,255,.88) !important;
}

#modalFeatures li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#d4af37;
  font-weight:900;
}

#modalWhatsapp{
  width:100% !important;
  padding:17px 28px !important;
  margin-top:18px !important;
  font-size:1rem !important;
}

.modal-close{
  top:18px !important;
  right:18px !important;
  background:#d4af37 !important;
  color:#111 !important;
  z-index:10 !important;
}

@media(max-width:850px){
  .modal-content{
    grid-template-columns:1fr !important;
  }

  .main-modal-img{
    height:330px !important;
  }
}

/* ===========================
   BUSCADOR VIGNA
=========================== */

.buscador-vigna{
  width:min(760px, 100%);
  margin:0 auto 35px;
}

.buscador-vigna input{
  width:100%;
  padding:18px 26px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:1rem;
  outline:none;
  box-shadow:0 20px 70px rgba(0,0,0,.35);
}

.buscador-vigna input::placeholder{
  color:rgba(255,255,255,.55);
}

.buscador-vigna input:focus{
  border-color:#d4af37;
  background:rgba(255,255,255,.09);
}

.filtros-vigna{
  width:min(900px, 100%);
  margin:0 auto 45px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

@media(max-width:700px){
  .filtros-vigna{
    grid-template-columns:1fr;
  }
}

[hidden]{
  display:none !important;
}

.catalogo-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:0 0 18px;
  padding:12px 16px;
  border:1px solid rgba(212,175,55,.18);
  border-radius:14px;
  background:rgba(255,255,255,.035);
}

.catalogo-toolbar p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.86rem;
}

.catalogo-toolbar button{
  padding:8px 12px;
  border-radius:10px;
  color:#d4af37;
  background:rgba(212,175,55,.1);
  border:1px solid rgba(212,175,55,.25);
  font-size:.8rem;
  font-weight:700;
}

.catalogo-vacio{
  margin:22px 0;
  padding:28px 18px;
  border:1px dashed rgba(212,175,55,.35);
  border-radius:18px;
  text-align:center;
  color:rgba(255,255,255,.72);
}

.model-card.sin-imagen::before,
.zoom-container.sin-imagen::before{
  content:"Imagen próximamente";
  display:grid;
  place-items:center;
  width:100%;
  min-height:220px;
  padding:20px;
  color:rgba(255,255,255,.55);
  background:linear-gradient(145deg, #181818, #0a0a0a);
  border-radius:18px;
  text-align:center;
}

@media(max-width:700px){
  .catalogo-toolbar{
    align-items:flex-start;
    margin-bottom:14px;
    padding:10px 12px;
  }

  .catalogo-toolbar p{
    font-size:.72rem;
  }

  .catalogo-toolbar button{
    flex:0 0 auto;
    padding:7px 9px;
    font-size:.68rem;
  }

  .model-card.sin-imagen::before{
    min-height:110px;
    padding:8px;
    font-size:.65rem;
  }
}

/* =====================================
   ENCABEZADO RESPONSIVO VIGNA 2026
===================================== */

.site-header{
  top:14px !important;
  width:min(1280px, calc(100% - 28px)) !important;
  height:72px !important;
  background:rgba(8,8,8,.72) !important;
}

.site-header.scrolled{
  top:8px !important;
  background:rgba(8,8,8,.94) !important;
  border-color:rgba(212,175,55,.32) !important;
}

.header-inner{
  min-height:72px;
  padding:0 20px !important;
  gap:18px;
}

.brand{
  flex:0 0 112px;
  height:72px;
  overflow:visible;
}

.brand-logo{
  width:112px !important;
  height:108px !important;
  max-width:none;
  object-fit:contain;
}

.main-nav{
  justify-content:center;
  gap:clamp(.75rem, 1.4vw, 1.35rem);
}

.main-nav a{
  font-size:clamp(.78rem, 1vw, .9rem);
  white-space:nowrap;
}

.site-header .btn-outline{
  flex:0 0 auto;
  padding:.78rem 1.1rem;
  font-size:.84rem;
  white-space:nowrap;
}

.nav-whatsapp{
  display:none;
}

.menu-toggle{
  width:44px;
  height:44px;
  padding:8px;
  align-items:center;
  justify-content:center;
}

.menu-toggle span{
  transition:transform .25s ease, opacity .2s ease;
}

.menu-toggle.open span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2){
  opacity:0;
}

.menu-toggle.open span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

@media(max-width:1050px){
  .header-inner{
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
  }

  .site-header .btn-outline{
    display:none;
  }

  .menu-toggle{
    display:flex !important;
    position:relative;
    z-index:20;
  }

  .main-nav{
    position:absolute;
    top:78px;
    left:0;
    right:0;
    margin:0;
    padding:14px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    border-radius:18px;
    background:rgba(8,8,8,.98);
    border:1px solid rgba(212,175,55,.28);
    box-shadow:0 20px 45px rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-12px);
    transition:.25s ease;
  }

  .main-nav.open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .main-nav a{
    width:100%;
    padding:11px 12px;
    text-align:center;
    font-size:.9rem;
    border-radius:10px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible{
    background:rgba(212,175,55,.12);
  }

  .nav-whatsapp{
    display:block;
    margin-top:5px;
    color:#111 !important;
    background:#d4af37;
    font-weight:800 !important;
  }
}

@media(max-width:700px){
  .site-header{
    top:8px !important;
    width:calc(100% - 20px) !important;
    height:64px !important;
  }

  .header-inner{
    min-height:64px;
    padding:0 12px !important;
  }

  .brand{
    flex-basis:92px;
    height:64px;
  }

  .brand-logo{
    width:92px !important;
    height:88px !important;
  }

  .main-nav{
    top:70px;
    max-height:calc(100vh - 88px);
    overflow-y:auto;
  }
}

/* =====================================
   CATEGORÍAS COMPACTAS PARA TELÉFONOS
===================================== */

@media(max-width:700px){
  .section-products .category-grid{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:8px !important;
    margin:20px 0 32px !important;
  }

  .section-products .category-card{
    min-width:0 !important;
    min-height:0 !important;
    aspect-ratio:1 / 1.08;
    border-radius:14px !important;
    border:1px solid rgba(212,175,55,.3) !important;
    box-shadow:0 16px 42px rgba(0,0,0,.34) !important;
    touch-action:manipulation;
  }

  .section-products .category-card span{
    display:flex !important;
    align-items:flex-end !important;
    justify-content:center !important;
    min-height:100% !important;
    padding:8px 4px 10px !important;
    background:linear-gradient(
      180deg,
      rgba(0,0,0,.03) 20%,
      rgba(0,0,0,.28) 54%,
      rgba(0,0,0,.92) 100%
    ) !important;
    color:#fff !important;
    font-size:clamp(.56rem, 2.55vw, .72rem) !important;
    line-height:1.15 !important;
    letter-spacing:.025em !important;
    text-align:center;
    overflow-wrap:anywhere;
  }

  .section-products .category-slide.active{
    opacity:.8 !important;
    transform:scale(1.025) !important;
  }

  .section-products .category-card.active{
    border-color:#d4af37 !important;
    box-shadow:
      0 0 0 1px rgba(212,175,55,.48),
      0 18px 48px rgba(0,0,0,.48) !important;
  }

  .section-products .category-card.active span{
    color:#f3cf5b !important;
  }
}

@media(max-width:360px){
  .section-products .category-grid{
    gap:6px !important;
  }

  .section-products .category-card{
    border-radius:12px !important;
  }

  .section-products .category-card span{
    padding:7px 3px 9px !important;
    font-size:.53rem !important;
  }
}

@media(max-width:700px) and (hover:none){
  .section-products .category-card:hover{
    transform:none !important;
  }

  .section-products .category-card:active{
    transform:scale(.98) !important;
  }
}

.filtros-vigna select{
  width:100%;
  padding:16px 24px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:1rem;
  outline:none;
}

.filtros-vigna option{
  background:#111;
  color:#fff;
}

.btn-carrito{
  position:fixed;
  right:20px;
  bottom:300px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#d4af37;
  color:#111;
  font-size:22px;
  font-weight:800;
  z-index:9999;
  box-shadow:0 8px 25px rgba(0,0,0,.45);
}

.btn-carrito span{
  font-size:14px;
}

.panel-carrito{
  position:fixed;
  top:0;
  right:-420px;
  width:min(400px, 92vw);
  height:100vh;
  overflow-y:auto;
  background:#0b0b0b;
  border-left:1px solid rgba(212,175,55,.35);
  z-index:20000;
  padding:28px;
  transition:.35s ease;
  box-shadow:-30px 0 90px rgba(0,0,0,.6);
}

.panel-carrito.open{
  right:0;
}

.carrito-overlay{
  position:fixed;
  inset:0;
  z-index:19990;
  background:rgba(0,0,0,.68);
  backdrop-filter:blur(5px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.3s ease;
}

.carrito-overlay.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

body.carrito-abierto{
  overflow:hidden;
}

.cerrar-carrito{
  position:absolute;
  top:18px;
  right:18px;
  background:#d4af37;
  color:#111;
  width:42px;
  height:42px;
  border-radius:50%;
  font-size:28px;
  font-weight:900;
}

.panel-carrito h2{
  font-family:"Cinzel", serif;
  color:#fff;
  margin-bottom:28px;
}

.item-carrito{
  border-bottom:1px solid rgba(255,255,255,.1);
  padding:14px 0;
}

.item-carrito strong{
  display:block;
  color:#fff;
}

.item-carrito span{
  color:#d4af37;
}

.carrito-total{
  margin:25px 0;
  font-size:1.4rem;
  color:#d4af37;
  font-weight:900;
}

.panel-carrito > .btn{
  width:100%;
  margin-top:10px;
}

.btn-vaciar-carrito{
  color:rgba(255,255,255,.78);
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
}

.btn-comprar-directo{
  color:#111;
  background:linear-gradient(135deg, #f0c94d, #c99f25);
  font-weight:900;
}

.stock-producto{
  display:block;
  margin-top:6px;
  color:#8fd49e;
  font-size:.7rem;
  font-weight:700;
}

.producto-agotado .product-cover{
  filter:grayscale(.85) brightness(.6);
}

.producto-agotado .stock-producto{
  color:#ff9494;
}

.btn-mini-carrito:disabled,
#productoAgregarCarrito:disabled{
  cursor:not-allowed;
  opacity:.55;
  transform:none !important;
}

/* ===========================
   CONTROLES CARRITO VIGNA
=========================== */

.carrito-controles{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
}

.carrito-controles button{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  border:1px solid rgba(212,175,55,.35);
  background:#d4af37;
  color:#111;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.carrito-controles button:hover{
  transform:scale(1.08);
  background:#f3cf5b;
}

.cantidad-carrito{
  min-width:32px;
  text-align:center;
  color:#fff !important;
  font-weight:800;
}

.btn-trash{
  margin-left:auto;
  background:#222 !important;
  color:#d4af37 !important;
}

.btn-trash:hover{
  background:#b22222 !important;
  color:#fff !important;
}

.precio-carrito{
  display:block;
  margin-top:4px;
  color:#d4af37;
}

.subtotal-carrito{
  display:block;
  margin-top:10px;
  color:rgba(255,255,255,.72);
}

.carrito-vacio{
  color:rgba(255,255,255,.65);
}

.btn-mini-carrito,
.btn-ver-detalles{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:46px;
  margin-top:14px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.btn-mini-carrito{
  background:#d4af37;
  color:#111;
  border:none;
}

.btn-mini-carrito:hover{
  background:#f3cf5b;
  transform:translateY(-2px);
}

.btn-ver-detalles{
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.35);
  color:#f3cf5b;
}

.btn-ver-detalles:hover{
  background:#d4af37;
  color:#111;
}

/* =====================================
   VISTA MÓVIL GENERAL VIGNA
===================================== */

@media(max-width:700px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .container{
    width:calc(100% - 28px);
  }

  /* ENCABEZADO */

  .site-header{
    top:8px !important;
    width:calc(100% - 20px) !important;
    height:68px !important;
    border-radius:18px !important;
  }

  .header-inner{
    padding:0 14px !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
  }

  .brand-logo{
    height:95px !important;
  }

  .menu-toggle{
    display:flex !important;
    position:relative;
    z-index:20;
  }

  .main-nav{
    position:absolute;
    top:76px;
    left:0;
    right:0;
    margin:0;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    border-radius:18px;
    background:rgba(8,8,8,.98);
    border:1px solid rgba(212,175,55,.28);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-12px);
    transition:.25s ease;
  }

  .main-nav.open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .main-nav a{
    width:100%;
    padding:10px 12px;
    text-align:center;
    font-size:.95rem;
  }

  .main-nav .btn{
    width:100%;
  }

  /* HERO */

  .hero-luxury{
    min-height:auto !important;
    padding:100px 0 55px !important;
  }

  .hero-luxury-content{
    min-height:auto !important;
    width:100% !important;
    padding:55px 20px 20px !important;
    align-items:flex-start !important;
  }

  .hero-luxury-text{
    width:100% !important;
    max-width:100% !important;
  }

  .hero-luxury-text .eyebrow{
    font-size:.68rem;
    letter-spacing:.22em;
    margin-bottom:16px;
  }

  .hero-luxury-text h1{
    max-width:100%;
    font-size:clamp(2.5rem, 13vw, 3.8rem) !important;
    line-height:.94 !important;
    word-break:normal;
  }

  .hero-luxury-text p{
    width:100%;
    max-width:100%;
    font-size:.94rem;
    line-height:1.65;
  }

  .hero-luxury .hero-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-luxury .hero-actions .btn{
    width:100%;
    padding:14px 18px;
  }

  /* SECCIONES */

  .section{
    padding:55px 0;
  }

  .section-header{
    display:block;
  }

  .section-header h2{
    font-size:2rem;
    line-height:1.05;
    margin-top:8px;
  }

  .cards-grid,
.product-grid,
.combo-grid,
.projects-grid,
.category-grid{
  grid-template-columns:1fr !important;
}

  .model-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:8px !important;
}

.model-card{
  min-width:0;
  padding:6px !important;
  border-radius:14px !important;
}

.model-card img,
.model-card .product-cover{
  width:100% !important;
  height:110px !important;
  margin-bottom:7px !important;
  object-fit:cover !important;
  border-radius:10px !important;
}

.model-card strong{
  margin-top:4px !important;
  margin-bottom:2px !important;
  font-size:.65rem !important;
  line-height:1.2 !important;
  letter-spacing:.02em !important;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.model-card span{
  margin-top:2px !important;
  font-size:.76rem !important;
  line-height:1.2 !important;
}

.model-card .btn-mini-carrito,
.model-card .btn-ver-detalles{
  min-height:34px !important;
  margin-top:7px !important;
  padding:6px 3px !important;
  border-radius:10px !important;
  font-size:.58rem !important;
  line-height:1.1 !important;
}

  /* CATEGORÍAS */

  .category-grid{
    gap:18px !important;
    margin-top:25px !important;
  }

  .category-card{
    min-height:210px !important;
    border-radius:24px !important;
  }

  .category-card span{
    min-height:210px !important;
    font-size:1.05rem !important;
  }

  .categoria-productos{
    padding:18px !important;
    border-radius:24px !important;
  }

  .categoria-productos h3{
    font-size:1.65rem !important;
    line-height:1.1;
  }

  /* BUSCADOR Y FILTROS */

  .buscador-vigna{
    margin-bottom:18px;
  }

  .buscador-vigna input,
  .filtros-vigna select{
    padding:14px 18px;
    font-size:.9rem;
  }

  .filtros-vigna{
    grid-template-columns:1fr !important;
    gap:10px;
    margin-bottom:28px;
  }

  /* BOTONES FLOTANTES */

  .btn-categorias-fijo{
    top:auto;
    bottom:24px;
    left:10px;
    transform:none;
    padding:11px 14px;
    border-radius:14px;
    font-size:.78rem;
  }

  .btn-subir{
    left:24px;
    bottom:78px;
    width:42px;
    height:42px;
    font-size:22px;
  }

  .btn-carrito{
    right:14px;
    bottom:210px;
    width:48px;
    height:48px;
    font-size:18px;
  }

  .social-float{
    right:14px;
    bottom:18px;
    gap:9px;
  }

  .social-btn{
    width:44px;
    height:44px;
    font-size:21px;
  }

  /* CARRITO */

  .panel-carrito{
    width:100%;
    right:-100%;
    padding:24px 18px;
  }

  .panel-carrito.open{
    right:0;
  }

  /* FOOTER */

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