body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #28a745;
    color: #fff;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.hero h2 {
    margin-bottom: 10px;
}

.cta {
    padding: 10px 20px;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta:hover {
    background-color: #218838;
}

.products, .offers {
    padding: 20px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    text-align: center;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 150px;
}

.product img {
    max-width: 100%;
    border-radius: 5px;
}

footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.nav-links a.active {
    color: #ffc107;
    text-decoration: underline;
}
.hero {
    position: relative;
    background-image: url('https://eldiariony.com/wp-content/uploads/sites/2/2020/06/shutterstock_375477457.jpg?quality=80&strip=all'); /* URL de tu imagen de banner */
    background-size: cover; /* Ajusta la imagen para cubrir toda el área */
    background-position: center; /* Centra la imagen */
    height: 60vh; /* Altura del banner */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Estilo para el logo y el título */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px; /* Tamaño del logo */
    height: 50px;
    margin-right: 10px; /* Espacio entre el logo y el texto */
    border-radius: 50%; /* Redondear el logo (opcional) */
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}
.ads {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.ads h2 {
    margin-bottom: 20px;
    color: #333;
}

.ad-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ad {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.ad img {
    width: 100%;
    display: block;
}

.ad p {
    margin: 10px;
    font-size: 0.9rem;
    color: #555;
}
.holiday-offer {
    position: relative;
    background-image: url('https://areajugones.sport.es/wp-content/uploads/2023/01/ofertas-navidenas.jpg'); /* Cambia por tu imagen navideña */
    background-size: cover;
    background-position: center;
    height: 70vh; /* Ajusta la altura según sea necesario */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.holiday-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Filtro oscuro para mejorar la legibilidad del texto */
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2; /* Asegura que el contenido esté por encima del filtro */
    max-width: 600px;
}

.holiday-offer h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.holiday-offer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #d9534f; /* Rojo navideño */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta:hover {
    background-color: #c9302c;
}
.categories {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.categories h2 {
    margin-bottom: 20px;
    color: #333;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* Incrementa el espacio horizontal y vertical entre categorías */
    flex-wrap: wrap;
}

.category {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin: 20px; /* Agrega un margen adicional alrededor de cada categoría */
}

.category p {
    z-index: 2;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.diamond {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #28a745; /* Cambia este color según tus preferencias */
    transform: rotate(45deg); /* Gira el cuadrado para formar un rombo */
    z-index: 1;
    transition: transform 0.3s, background-color 0.3s;
}

.category:hover .diamond {
    transform: rotate(45deg) scale(1.1); /* Aumenta el tamaño al pasar el ratón */
    background-color: #218838; /* Color más oscuro al pasar el ratón */
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 0 0 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px; /* Incrementa el espacio entre los íconos */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2); /* Efecto de ampliación al pasar el ratón */
}

.social-icon {
    width: 40px; /* Tamaño de los íconos */
    height: 40px;
    object-fit: contain;
    border-radius: 50%; /* Redondear los íconos (opcional) */
    transition: box-shadow 0.3s;
}

.social-links a:hover .social-icon {
    box-shadow: 0 0 10px #28a745; /* Efecto luminoso al pasar el ratón */
}
.contact-page {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact-page h2 {
    margin-bottom: 10px;
    color: #333;
}

.contact-page p {
    color: #666;
    margin-bottom: 20px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form .submit-button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

form .submit-button:hover {
    background-color: #218838;
}

.form-message {
    margin-top: 20px;
    font-size: 1rem;
    color: #28a745;
    display: none;
}
.locations-page {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.locations-page h2 {
    margin-bottom: 10px;
    color: #333;
}

.locations-page p {
    color: #666;
    margin-bottom: 20px;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.add-to-cart {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
}

.add-to-cart:hover {
    background-color: #218838;
}
.sucursales-section {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.sucursales-section h2 {
    color: #333;
    margin-bottom: 10px;
}

.sucursales-section p {
    color: #666;
    margin-bottom: 20px;
}

.sucursales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.sucursal {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.sucursal:hover {
    transform: scale(1.05);
}

.sucursal-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.sucursal h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.sucursal p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.como-llegar {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.como-llegar:hover {
    background-color: #0056b3;
}