/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    color: #333;
    background-color: transparent;
}

/* Header transparente */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo centrado */
.logo {
    /*padding: 20px 0;*/
    flex: 1;
    text-align: center;
}

.logo img {
    max-width: 180px;
    height: auto;
    transition: all 0.4s ease;
}

/* Cuando el header tiene scroll, hacemos el logo más pequeño */
header.scrolled .logo img {
    max-width: 200px;
}



/* Menú hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

header.scrolled .menu-toggle .bar {
    background-color: white;
}

/* Menú de navegación */
.nav-menu {
    flex: 2;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

header.scrolled .nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover {
    /*color: #a88a61;*/
    color: white;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #a88a61;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Submenús */
/* --- Submenús unificados: todos hacia abajo en una sola columna --- */
.has-submenu {
    position: relative;
}

.has-submenu>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-submenu>a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-submenu:hover>a i {
    transform: rotate(180deg);
}

/* Submenús verticales y centrados */
.has-submenu ul.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    /* fuerza una sola columna */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.has-submenu:hover ul.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Elementos del submenú */
.has-submenu ul.submenu li {
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.has-submenu ul.submenu li:last-child {
    border-bottom: none;
}

.has-submenu ul.submenu li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: none;
    transition: background-color 0.3s, color 0.3s;
}

.has-submenu ul.submenu li a:hover {
    background-color: #f9f9f9;
    color: #a88a61;
}

/* Galería de imágenes */
.gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.gallery-item {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  background-color: #eaeaea; 
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;  
  display: block;
}

/* Si mantienes el hover, evita recortes u ondulaciones */
.gallery-item:hover img {
  transform: none;       
}


.gallery-item.complementos {
  min-height: 550px; /* 🔹 en lugar de height fija */
  height: 100%;
  background-color: #000; /* opcional: evita huecos grises */
}

/* Imagen de complementos rellena toda la caja */
.gallery-item.complementos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* --- TEXTO SOBRE IMAGEN --- */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1); 
  text-align: center;
  color: white;
  opacity: 1;               /* Fijo: siempre visible */
  transition: none;         /* no se desvanece */
}

.image-overlay h3 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.image-overlay p {
  font-size: 16px;
  max-width: 80%;
  line-height: 1.4;
}
.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 28px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.image-overlay p {
    font-size: 16px;
    color: white;
    margin-bottom: 25px;
    max-width: 80%;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: white;
    color: #333;
}

/* === Sección "¿QUÉ ES ELA CHIC?" refinada === */
.fullscreen-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* opcional, evita parpadeo al cargar */
}

.fullscreen-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('https://elachic.es/assets/img/portada_Tienda.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Opcional: elimina la etiqueta img del HTML o ocúltala */
.fullscreen-banner img {
    display: none;
}

.fullscreen-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para llenar el contenedor */
    object-position: center; /* Centra el área visible */
	opacity: 0.8;
}

/* Contenido del texto */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    padding: 20px;
}

.banner-content h2 {
    font-size: 48px;
    color: #076678;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #076678;
    margin-bottom: 25px;
}

.banner-content h3 {
    font-size: 20px;
    color: #f1d588;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Sección de información */
.info-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 40px;
    color: #a88a61;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.info-item a {
    color: #a88a61;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Footer */

/* Estilos del footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #a88a61;
}

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #a88a61;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #a88a61;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin: 0 8px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #a88a61;
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    font-size: 14px;
    color: #888;
}

/* --- Mantener el menú principal en una sola línea (pantallas grandes) --- */
.nav-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
    /* evita que se baje */
    white-space: nowrap !important;
    /* mantiene los textos en una sola línea */
    gap: 15px;
    /* separa los elementos de forma flexible */
}

.nav-menu li {
    margin: 0;
}

/* Ajuste del contenedor para grandes pantallas */
.header-container {
    width: 100%;
    max-width: none !important;
    /* eliminamos límite */
    padding: 0 40px;
    /* margen lateral opcional */
}





/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .footer-column:first-child {
        order: 1;
    }

    .footer-column:nth-child(2) {
        order: 3;
    }

    .footer-column:nth-child(3) {
        order: 2;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0 15px;
    }

    .footer-column {
        padding: 0 10px;
    }

    .footer-logo {
        max-width: 150px;
    }
}


@media (max-width: 768px) {

    /* Contenedor general del header */
    .header-container {
        padding: 0px;
        flex-wrap: wrap;
        position: relative;
    }

    header#main-header {
        height: 120px;
        /* altura del header */
        background-color: #fff;
        /* fondo blanco */
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        position: fixed;
        /* 🔹 fija el header */
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    /* Mantener efecto oscuro al hacer scroll */
    header.scrolled {
        background-color: rgba(0, 0, 0, 0.5) !important;
        height: 120px;
    
    }

    /* Evitar que el contenido quede oculto debajo del header */
    body {
        padding-top: 120px !important;
        /* igual que la altura del header */
    }

    /* Centrar el logo verticalmente */
    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    /* Subir la imagen o galería principal */
    .gallery,
    .fullscreen-banner {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Color dorado del menú hamburguesa */
    .menu-toggle .bar {
        background-color: #f1d588 !important;
    }

    header.scrolled .menu-toggle .bar {
        background-color: #f1d588 !important;
    }

    /* --- Apariencia del menú al abrirse --- */
    .nav-menu {
        background-color: #ffffff !important;
        /* fondo blanco */
    }

    .nav-menu a {
        color: #333 !important;
        /* texto gris oscuro legible */
        font-weight: 500;
        text-transform: uppercase;
        text-shadow: none;
    }

    .nav-menu a:hover {
        background-color: #f9f9f9;
        color: #a88a61 !important;
        /* dorado en hover */
    }

    .submenu {
        background-color: #f9f9f9 !important;
    }

    .submenu a {
        color: #333 !important;
    }

    .submenu a:hover {
        background-color: #f1f1f1;
        color: #a88a61 !important;
    }

    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
    }



    .logo {
        flex: 0 0 auto;
        padding: 15px 0;
        text-align: left;
    }

    .logo img {
        max-width: 200px;
    }

    header.scrolled .logo img {
        max-width: 160px;
    }

    .menu-toggle {
        position: absolute !important;
        top: 50% !important;
        /* coloca el centro verticalmente */
        right: 25px !important;
        /* margen desde el borde derecho */
        transform: translateY(-50%) !important;
        /* corrige el desfase */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 2000;
        
    }

    /* Barritas del icono */
    .menu-toggle .bar {
        width: 26px;
        height: 3px;
        background-color: #f1d588 !important;
        /* dorado */
        margin: 4px 0;
        transition: 0.3s;
    }


    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex: 0 0 100%;
        order: 3;
        background-color: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    header.scrolled .nav-menu {
        background-color: white;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: #333;
        text-shadow: none;
    }

    .has-submenu {
        position: static;
    }

  .submenu {
  position: static;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: #f9f9f9;
  width: 100%;
  display: block;
}

.submenu.active {
  opacity: 1;
  visibility: visible;
  max-height: 1000px; /* más alto para mostrar todos los elementos */
  overflow: visible;
}

    .submenu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .submenu a {
        padding: 12px 30px;
        font-size: 14px;
    }

    .gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
	.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* o el valor que uses */
}

/* Por defecto en móvil: una columna completa */
.gallery-item {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Imágenes superiores (más altas) */
.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
  aspect-ratio: 3 / 4; /* más vertical */
}
	.gallery-item:nth-child(5) {
    grid-column: 1 / -1; /* ocupa las dos columnas */
    justify-self: center; /* lo centra horizontalmente */
    width: 60%; /* opcional: para que no se vea tan ancho */
}

/* Imágenes inferiores (más anchas) */
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
  aspect-ratio: 4 / 3; /* más horizontal */
}

/* Imagen dentro del bloque */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto centrado sobre las imágenes */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  opacity: 1;
}

.image-overlay h3 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.image-overlay .btn {
  font-size: 13px;
  padding: 7px 16px;
  color: white;
  border: 1px solid white;
  transition: 0.3s;
}

.image-overlay .btn:hover {
  background-color: #f1d588;
  color: #333;
}


    .fullscreen-banner {
        height: 70vh;
        background-attachment: scroll;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .info-section {
        padding: 50px 0;
    }

    .info-item {
        min-width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 180px;
    }

    header.scrolled .logo img {
        max-width: 140px;
    }

    .nav-menu a {
        padding: 12px 15px;
        font-size: 15px;
    }

    .submenu a {
        padding: 10px 40px;
        font-size: 13px;
    }

    .gallery {
        margin-top: 60px;
    }

    .image-overlay h3 {
        font-size: 20px;
    }

    .image-overlay p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 11px;
    }

    .fullscreen-banner {
        height: 60vh;
		
    }

    .banner-content h2 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
  /* ... (mantén todo el código existente del header) ... */

  /* GALERÍA EN UNA SOLA COLUMNA */
  .gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .gallery-item {
    width: 100%;
    flex: 1 1 100% !important;
    aspect-ratio: 3/4;
    margin-bottom: 0;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    aspect-ratio: 3/4;
  }

  .gallery-item.complementos {
    min-height: auto;
    width: 100%;
    flex: 1 1 100% !important;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* BANNER QUE OCUPE TODO EL CONTENEDOR */
  .fullscreen-banner {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
  }

  .fullscreen-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: none; /* Elimina transformaciones que puedan afectar */
  }

  /* ... (resto del código móvil existente) ... */
	.has-submenu > a i {
  transition: transform 0.3s ease;
}

/* 🔹 Submenús en móvil */
.submenu {
  display: none;
  flex-direction: column;
  background-color: #f9f9f9;
  width: 100%;
  padding-left: 20px;
}

.submenu li {
  border-bottom: 1px solid #eee;
}

.submenu.active {
  display: flex; /* ✅ Ahora se muestra */
}

.has-submenu.open > a i {
  transform: rotate(180deg);
}

}

.info-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fullscreen-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000; /* para cubrir los márgenes vacíos */
}

.fullscreen-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Muestra toda la imagen */
  object-position: center center;
}

.fullscreen-banner .banner-content {
  position: absolute;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 40px;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .fullscreen-banner {
    position: relative;
    height: auto;          /* ya no es fullscreen */
    min-height: unset;
    display: block;
    background-color: transparent;
    padding: 0;
	background-color: #1a1a1a;; /* gris oscuro / negro suave */
  }

  .fullscreen-banner img {
    position: relative;     /* la imagen se integra al flujo */
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .fullscreen-banner .banner-content {
    position: relative;
    background: transparent; /* sin fondo oscuro */
    color: #222;              /* texto oscuro, legible sobre fondo claro */
    padding: 20px 15px;
    margin-top: 10px;
    text-align: left;
	color: #f5deb3; 
  }

  .fullscreen-banner h2 {
    font-size: 1.6rem;
    color: #FFFFFF;          /* tono elegante tipo dorado */
  }

  .fullscreen-banner p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .fullscreen-banner h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #FFF;
  }
}

/* === Sección Destacados === */
.highlight-section {
  width: 100%;
  background-color: #fdf9f5;
  padding: 80px 20px;
}

.highlight-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

/* Texto */
.highlight-text {
  flex: 1;
  min-width: 320px;
  text-align: left;
}

.highlight-text h2 {
  font-size: 36px;
  color: #a88a61;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlight-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Botón */
.btn-highlight {
  display: inline-block;
  background-color: #a88a61;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-highlight:hover {
  background-color: #8c744f;
}

/* Imagen */
.highlight-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.highlight-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* === Responsivo === */
@media (max-width: 768px) {
  .highlight-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .highlight-text h2 {
    font-size: 26px;
  }

  .highlight-text p {
    font-size: 16px;
  }

  .highlight-image img {
    max-width: 100%;
  }
}

.fullscreen-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa toda la altura de la pantalla */
  background: url('assets/img/portada_Tienda.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-content {
  max-width: 700px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* oscurece un poco para que el texto sea legible */
  border-radius: 10px;
}

.banner-content h2,
.banner-content h3 {
  text-transform: uppercase;
  color: #f0d8a0;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
	color:white;
}

/* 📱 Adaptación móvil */
@media (max-width: 768px) {
  .fullscreen-banner {
    height: auto;
    min-height: 100vh;
    background-position: center;
  }

  .banner-content {
    padding: 40px 20px;
    font-size: 16px;
  }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
	margin-right: 80px;
    flex-shrink: 0;
}

.header-icons .icon i {
    font-size: 20px;
    color: #f1d588 !important;
    cursor: pointer;
}

.menu-toggle {
    margin-left: 20px;
    flex-shrink: 0;
}

.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-floating img {
  width: 35px;
  height: 35px;
}


