/* ==========================================================================
   JOYERÍA MUÑOZA - ESTILOS PRINCIPALES DE LA TIENDA PÚBLICA
   ========================================================================== */

:root {
  --gold: #c2a265;
  --gold-dark: #9e7f43;
  --gold-light: #f5eedf;
  --black: #0c0d0e;
  --black-soft: #16181a;
  --charcoal: #2b2e33;
  --bg-page: #fbfbfb;
  --bg-warm: #f4f3f0;
  --white: #ffffff;
  --text-main: #24272c;
  --text-muted: #6c727c;
  --border: #e6e6e6;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-hover: 0 16px 32px rgba(0,0,0,0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

/* Compensación de altura de navbar fija para anclajes directos */
section[id] {
  scroll-margin-top: 75px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Top Announcement & Header / Navbar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background-color: var(--black);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 8px 16px;
}

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

/* --------------------------------------------------------------------------
   Marca / Logotipo con Emblema Redondeado y Textos
   -------------------------------------------------------------------------- */
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.brand-logo-badge {
  height: 48px;
  width: auto;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  display: block;
}

.brand:hover .brand-logo-badge {
  transform: scale(1.04);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--black);
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-pill-gold {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.btn-pill-gold:hover {
  background: var(--gold-dark) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: url('https://i.imgur.com/O4iieBT.jpeg') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 13, 14, 0.85) 0%, rgba(12, 13, 14, 0.6) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-gold {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(194, 162, 101, 0.35);
}

.btn-primary-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   Valores de Marca (Features Strip) con Iconos SVG
   -------------------------------------------------------------------------- */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  background: var(--bg-warm);
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold-dark);
  transition: var(--transition);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.feature-card:hover .feature-icon {
  background: var(--gold-light);
  color: var(--gold);
  transform: translateY(-2px);
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Secciones Generales y Encabezados
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 40px 0 80px 0;
}

.bg-warm {
  background-color: var(--bg-warm);
}

.section-header-modern {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 45px auto;
}

.gold-badge {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header-modern h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--black);
  margin-bottom: 10px;
}

.section-header-modern p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Vitrina de Colecciones (Página Principal)
   -------------------------------------------------------------------------- */
.collections-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.collection-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}

.collection-tile:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.collection-tile-content {
  position: relative;
  z-index: 2;
}

.collection-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.collection-tile h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 600;
}

.collection-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.collection-tile:hover .collection-count {
  color: var(--gold-dark);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Ventana Modal Independiente Fluida (Fullscreen Overlay)
   -------------------------------------------------------------------------- */
.collection-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.collection-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.collection-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 14, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.collection-modal-window {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: 100%;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.collection-modal.is-open .collection-modal-window {
  transform: translateX(0);
}

.collection-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.collection-modal-titles h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--black);
  line-height: 1.1;
}

.btn-close-modal {
  background: var(--bg-warm);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-close-modal:hover {
  background: var(--black);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-subnav {
  background: var(--white);
  padding: 12px 32px;
  border-bottom: 1px solid var(--border);
}

.modal-filter-chips {
  margin-bottom: 0 !important;
  justify-content: flex-start !important;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
}

.collection-modal-body {
  padding: 36px 32px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* --------------------------------------------------------------------------
   Catálogo Interactivo y Tarjetas de Producto (Proporción 4:5 Sin Zoom)
   -------------------------------------------------------------------------- */
.filter-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-chip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
}

.filter-chip:hover, .filter-chip.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.product-item-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(194, 162, 101, 0.4);
}

.product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5 !important;
  background: #ffffff;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
}

.product-item-card:hover .product-thumb img {
  transform: none !important;
}

.pill-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-details h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--black);
}

.product-details p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.btn-card-consult {
  display: block;
  text-align: center;
  background: var(--bg-warm);
  color: var(--black);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-card-consult:hover {
  background: var(--gold);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Quiénes Somos / Historia
   -------------------------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.experience-badge strong {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--gold-dark);
  line-height: 1;
}

.experience-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.about-copy h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-dark);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Taller Propio con Iconos SVG
   -------------------------------------------------------------------------- */
.workshop-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.modern-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: var(--transition);
}

.card-icon-box svg {
  width: 30px;
  height: 30px;
  display: block;
}

.modern-card:hover .card-icon-box {
  background: var(--black);
  color: var(--gold);
  transform: scale(1.05);
}

.modern-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.modern-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Reseñas Google
   -------------------------------------------------------------------------- */
.reviews-widget-container {
  min-height: 180px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Contacto & Ubicación
   -------------------------------------------------------------------------- */
.contact-modern-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}

.contact-info-card h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.store-address {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.schedule-pill {
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
}

.schedule-pill h5 {
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.schedule-pill p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-buttons-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-buttons-row a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--white);
  transition: var(--transition);
}

.btn-contact-dark { background: var(--black); }
.btn-contact-whatsapp { background: #25d366; }
.btn-contact-insta { background: #e1306c; }

.contact-buttons-row a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.map-wrapper-modern {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 400px;
}

.map-wrapper-modern iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Club Privado / Newsletter
   -------------------------------------------------------------------------- */
.club-section {
  background: var(--black-soft);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.club-inner {
  max-width: 650px;
}

.club-inner h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin: 10px 0 15px;
  color: var(--white);
}

.club-inner p {
  color: #a6abb3;
  margin-bottom: 35px;
}

.club-form-modern .inputs-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.club-form-modern input[type="text"],
.club-form-modern input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #22252a;
  border: 1px solid #363b42;
  color: var(--white);
  font-family: inherit;
}

.club-form-modern input:focus {
  outline: 2px solid var(--gold);
}

.privacy-agreement {
  margin: 15px 0 20px 0;
  text-align: left;
}

.privacy-agreement label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #a6abb3;
  cursor: pointer;
  line-height: 1.4;
}

.privacy-agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
}

.privacy-agreement a {
  color: var(--gold);
  text-decoration: underline;
  transition: var(--transition);
}

.privacy-agreement a:hover {
  color: #ffffff;
}

.btn-gold-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold-submit:hover {
  background: var(--gold-dark);
}

.feedback-box {
  margin-top: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-modern {
  background: #08090a;
  color: #7a8089;
  padding: 70px 0 0;
  font-size: 0.88rem;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand-col h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-nav-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-nav-col a {
  display: block;
  color: #7a8089;
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-nav-col a:hover {
  color: var(--gold);
}

.footer-bottom-bar {
  border-top: 1px solid #1a1c1f;
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   Responsive / Móvil
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-modern-grid { grid-template-columns: 1fr; }
  .footer-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    height: 65px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-badge {
    height: 40px;
    border-radius: 8px;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 2px;
  }

  .brand-title {
    font-size: 1.45rem;
  }

  /* Menú desplegable móvil */
  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 12px 14px;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  /* Corrección específica para el botón de Club Privado en móvil */
  .nav-links a.btn-pill-gold {
    margin-top: 10px;
    padding: 12px 20px !important;
    text-align: center;
    justify-content: center;
    border-radius: 50px;
    border-bottom: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(194, 162, 101, 0.25);
  }

  .nav-toggle {
    display: block;
  }

  .hero-section {
    min-height: 85vh;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-gold, .btn-outline-light {
    width: 100%;
    text-align: center;
  }

  .collection-modal-window {
    max-width: 100%;
  }

  .collection-modal-header,
  .modal-subnav,
  .collection-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .products-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-buttons-row {
    flex-direction: column;
  }

  .contact-buttons-row a {
    width: 100%;
    text-align: center;
  }

  .map-wrapper-modern {
    min-height: 280px;
  }

  .club-form-modern .inputs-row {
    flex-direction: column;
  }
}