/* Definir la fuente Gobold Regular Italic */
@font-face {
    font-family: "Gobold Regular Italic";
    src: url("fonts/GoboldRegularItalic.woff2") format("woff2"),
         url("fonts/GoboldRegularItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

/* Estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Now Display", sans-serif;
}

body {
    background: #fff;
    color: #000;
    overflow-x: hidden;
    line-height: 1.4;
}

/* Navbar (inspirada en Gucci) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Alto explícito para .navbar (40px de contenido + 20px de padding) */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinear el menú y el icono a la derecha */
    padding: 10px 40px;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Ajustar el ancho automáticamente según la proporción */
    height: 40px; /* Igual al alto de .navbar (60px) menos el padding (20px) */
    opacity: 0; /* Inicialmente oculto */
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transición suave */
    z-index: 1001;
    object-fit: contain; /* Asegurar que el logo se ajuste sin distorsionarse */
}

.navbar-logo.visible {
    opacity: 0.9; /* Mostrar el logo con una ligera opacidad */
}

.navbar-toggle {
    display: flex; /* Siempre visible, incluso en PC */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-right: 20px; /* Espacio entre el toggle y el icono del carrito */
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-menu {
    display: none; /* Oculto por defecto, se muestra al activar el toggle */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.navbar-menu.active {
    display: flex; /* Mostrar cuando está activo */
}

.navbar-menu li {
    display: inline-block;
}

.navbar-menu li a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: color 0.4s ease;
}

.navbar-menu li a:hover {
    color: #e60000;
}

/* Floating Cart Counter (ahora dentro de la barra de navegación) */
.floating-cart-counter {
    position: relative; /* Cambiado de fixed a relative para que se alinee dentro de .navbar */
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-cart-counter:hover {
    transform: scale(1.1);
}

.cart-icon {
    width: 24px;
    height: 24px;
    color: #e60000;
}

#cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #e60000;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section (usado en todas las páginas) */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding-top: 30px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.brand-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 0.15;
    z-index: 0;
    object-fit: contain;
}

.logo,
.hero-logo { /* Soporte para ambas clases */
    width: 180px;
    max-height: 120px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1002; /* Asegurar que esté por delante de la barra de navegación */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transición más suave, inspirada en Gucci */
    opacity: 1;
}

.hero-title {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 72px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    text-shadow: 0 0 8px rgba(230, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transición más suave */
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #808080;
    margin-top: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transición más suave */
}

/* Collection Section (usado en index.html) */
.collection {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.product {
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto; /* Centramos .product dentro de .collection */
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-content {
    width: 100%;
    margin: 0 auto; /* Centramos dentro de .product */
    padding: 0; /* Aseguramos que no haya padding adicional */
    display: flex; /* Usamos flex para controlar el flujo */
    flex-direction: column; /* Aseguramos que los elementos se apilen verticalmente */
    gap: 0; /* Eliminamos cualquier gap adicional */
}

.product-image {
    width: 100%;
    cursor: pointer;
    margin: 0 !important; /* Aseguramos que no haya margen */
    padding: 0 !important; /* Aseguramos que no haya padding */
    -webkit-user-select: none; /* Evitar selección en móviles */
    user-select: none; /* Evitar selección */
    -webkit-tap-highlight-color: transparent; /* Evitar sombreado celeste en móviles */
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 0; /* Eliminamos el padding-top fijo para que la altura se ajuste a la imagen */
    margin: 0 !important; /* Aseguramos que no haya margen */
    padding-bottom: 0 !important; /* Aseguramos que no haya padding inferior */
}

.image-container img {
    width: 100%;
    height: auto; /* Permitimos que la imagen determine su propia altura */
    display: block;
    position: relative; /* Cambiamos a position: relative para que ocupe espacio en el flujo */
    transition: none;
    object-fit: contain; /* Aseguramos que las imágenes no se distorsionen */
    -webkit-user-select: none; /* Evitar selección en móviles */
    user-select: none; /* Evitar selección */
    -webkit-tap-highlight-color: transparent; /* Evitar sombreado celeste en móviles */
}

.image-container .image-main {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

.image-container .image-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: none;
}

.product-image:hover .image-container .image-main {
    display: none;
}

.product-image:hover .image-container .image-hover {
    display: block;
}

.product-image.toggled .image-container .image-main {
    display: none;
}

.product-image.toggled .image-container .image-hover {
    display: block;
}

.product-details {
    padding: 20px 0; /* Mantenemos el valor original para PC */
    margin: 0 !important; /* Aseguramos que no haya margen */
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Mantenemos flex-start como estaba originalmente */
    width: 100%;
    gap: 8px; /* Mantenemos el gap original para PC */
    position: relative;
    z-index: 2;
}

.product-details h2 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
}

.price {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.stock {
    font-size: 10px;
    font-weight: 400;
    color: #c19b2e;
    text-transform: uppercase;
}

.add-button {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: auto;
}

.add-button:hover {
    background: #e60000;
    color: #fff;
    border-color: #e60000;
}

/* Cart Section (usado en index.html) */
.cart {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

#cart-items {
    list-style: none;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    margin-bottom: 15px;
    width: 100%;
}

#cart-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.remove-button {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.remove-button:hover {
    background: #e60000;
    color: #fff;
    border-color: #e60000;
}

#cart-total {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

.cart-button {
    display: inline-block;
    padding: 10px 30px;
    background: #e60000;
    border: 1px solid #e60000;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cart-button:hover {
    background: #c19b2e;
    border-color: #c19b2e;
    color: #fff;
}

/* Checkout Section (usado en checkout.html) */
.checkout {
    padding: 80px 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkout h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-emphasis: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 20px;
}

#checkout-items {
    list-style: none;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    margin-bottom: 20px;
    width: 100%;
}

#checkout-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

#checkout-total {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkout-form h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    background: #d3d3d3;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    outline: none;
    transition: all 0.4s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
    color: #808080;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    background: #e6e6e6;
    border-color: #e6e6e6;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.lowercase-label {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    text-transform: none;
}

#paypal-button-container {
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    text-align: center; /* Respaldo para centrado */
}

/* Asegurar que el contenedor interno del botón de PayPal también esté centrado */
#paypal-button-container > div {
    display: inline-block; /* Asegurar que el contenedor interno no ocupe todo el ancho */
    margin: 0 auto; /* Centrar el contenedor interno */
}

/* Contact Section (usado en contacto.html) */
.contact {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.contact-item h3 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.contact-item a {
    color: #e60000;
    text-decoration: none;
    transition: color 0.4s ease;
}

.contact-item a:hover {
    color: #c19b2e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-button {
    display: inline-block;
    padding: 10px 30px;
    background: #e60000;
    border: 1px solid #e60000;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.contact-button:hover {
    background: #c19b2e;
    border-color: #c19b2e;
    color: #fff;
}

/* Footer (usado en todas las páginas) */
.footer {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    margin-top: 20px;
}

.important-note {
    font-size: 12px;
    color: #000;
    margin-bottom: 10px;
}

.asterisk {
    color: #e60000;
    font-weight: bold;
}

.important-text {
    color: #e60000;
    font-weight: bold;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.4s ease;
}

.footer-links a:hover {
    color: #e60000;
}

.copyright {
    font-size: 10px;
    color: #808080;
    margin-top: 20px;
}

/* Video Section (usado en about.html) */
.video-section {
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

.fullscreen-video {
    width: 100%;
    height: 60vh; /* Aumentado de 40vh a 60vh */
    object-fit: cover; /* Asegura que el video cubra el área sin distorsionarse */
    display: block;
}

/* Mission and Vision Section (usado en about.html) */
.mission-vision {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.mission, .vision {
    flex: 1;
    text-align: left;
}

.mission h2, .vision h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    margin-bottom: 20px;
}

.mission p, .vision p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

/* Values Section (usado en about.html) */
.values {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values-content h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.value-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
}

/* Join Us Section (usado in about.html) */
.join-us {
    width: 100vw; /* Hacer el contenedor fullscreen horizontal */
    margin: 0;
    padding: 80px 40px;
    text-align: center;
    background: #f5f5f5;
}

.join-us-content {
    max-width: 800px; /* Mantener el contenido centrado */
    margin: 0 auto; /* Centrar el contenido */
}

.join-us-content h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    margin-bottom: 20px;
}

.join-us-content p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #000;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: #e60000;
    color: #fff;
    border-color: #e60000;
}

/* Responsive */
@media (max-width: 768px) {
    /* Floating Cart Counter */
    .floating-cart-counter {
        width: 36px;
        height: 36px;
    }
    .cart-icon {
        width: 20px;
        height: 20px;
    }
    #cart-counter {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -4px;
        right: -4px;
    }

    /* Hero Section */
    .hero { height: 50vh; padding-top: 20px; }
    .brand-text { width: 100%; }
    .logo,
    .hero-logo { width: 140px; max-height: 90px; }
    .navbar-logo { height: 30px; } /* Ajustar el alto para que sea proporcional */
    .hero-title { 
        font-family: "Gobold Regular Italic", sans-serif;
        font-size: 54px; 
        font-weight: normal;
        letter-spacing: 0;
    }
    .hero-subtitle { font-size: 16px; }

    /* Collection Section */
    .collection { 
        padding: 60px 0; /* Eliminamos el padding lateral */
        display: block; /* Usamos display: block para centrar con text-align */
        text-align: center; /* Centramos los elementos hijos */
    }
    .product { 
        display: inline-block; /* Usamos inline-block para que text-align funcione */
        max-width: 350px;
        margin: 0 0 30px 0; /* Ajustamos el margen para espaciar los productos */
        vertical-align: top; /* Alineamos los productos en la parte superior */
    }
    .product-content { 
        width: 100%;
        max-width: 350px;
        margin: 0 auto; /* Centramos dentro de .product */
        padding: 0; /* Aseguramos que no haya padding adicional */
    }
    .image-container {
        max-width: 350px; /* Aseguramos que .image-container no exceda el max-width */
        padding-top: 0; /* Eliminamos el padding-top fijo */
        padding-bottom: 0 !important; /* Aseguramos que no haya padding inferior */
        margin: 0 !important; /* Aseguramos que no haya margen */
    }
    .image-container img {
        max-width: 350px; /* Aseguramos que las imágenes no excedan el max-width */
        object-fit: contain; /* Aseguramos que las imágenes no se distorsionen */
    }
    .product .product-content .product-details { 
        padding-top: 0 !important; /* Eliminamos el padding-top */
        padding-bottom: 20px; /* Mantenemos el padding-bottom */
        margin-top: -10px !important; /* Usamos un margin-top negativo para subir más */
        margin-bottom: 0 !important; /* Aseguramos que no haya margen inferior */
        gap: 4px; /* Mantenemos el gap corregido */
    }
    .product-details h2 { font-size: 12px; }
    .price { font-size: 11px; }
    .stock { font-size: 9px; }
    .add-button { font-size: 11px; padding: 6px 18px; }

    /* Cart Section */
    .cart { max-width: 100%; padding: 0 20px; margin-bottom: 20px; }
    .cart h3 { margin-bottom: 10px; }
    .cart-button { font-size: 12px; padding: 8px 25px; }
    .remove-button { font-size: 11px; padding: 3px 8px; }

    /* Checkout Section */
    .checkout { padding: 60px 20px; }

    /* Contact Section */
    .contact { padding: 60px 20px; }
    .contact-methods {
        flex-direction: column;
        gap: 30px;
    }
    .contact-item {
        max-width: 100%;
    }
    .contact-content h2 { font-size: 14px; }
    .contact-content p { font-size: 13px; }
    .contact-item h3 { font-size: 12px; }
    .contact-item p { font-size: 13px; }
    .contact-button { font-size: 12px; padding: 8px 25px; }

    /* Video Section */
    .fullscreen-video {
        height: 45vh; /* Proporcional: 60vh * 0.75 */
    }

    /* Mission and Vision Section */
    .mission-vision {
        padding: 60px 20px;
    }
    .mission-vision-content {
        flex-direction: column;
        gap: 30px;
    }
    .mission h2, .vision h2 {
        font-size: 14px;
    }
    .mission p, .vision p {
        font-size: 13px;
    }

    /* Values Section */
    .values {
        padding: 60px 20px;
    }
    .values-content h2 {
        font-size: 14px;
    }
    .values-grid {
        flex-direction: column;
        gap: 30px;
    }
    .value-item {
        width: 100%; /* Asegurar que ocupe todo el ancho */
        max-width: none; /* Eliminar el max-width para que se extienda */
        text-align: center; /* Reforzar el centrado */
    }
    .value-icon {
        width: 50px;
        height: 50px;
        display: block;
        margin: 0 auto; /* Centrar la imagen */
        text-align: center; /* Asegurar compatibilidad */
    }
    .value-item h3 {
        font-size: 12px;
    }
    .value-item p {
        font-size: 13px;
    }

    /* Join Us Section */
    .join-us {
        padding: 60px 20px;
    }
    .join-us-content h2 {
        font-size: 14px;
    }
    .join-us-content p {
        font-size: 13px;
    }
    .social-link {
        font-size: 12px;
        padding: 6px 18px;
    }

    /* Navbar */
    .navbar {
        height: 50px; /* Ajustar el alto para que sea proporcional */
        padding: 10px 20px;
    }
    .navbar-menu {
        top: 50px;
        padding: 20px 0;
    }
    .navbar-menu li a {
        font-size: 12px;
    }
    .navbar-toggle {
        margin-right: 15px;
    }

    /* Footer */
    .footer { padding: 20px 15px; }
    .important-note { font-size: 11px; }
    .copyright { font-size: 9px; margin-top: 15px; }
}

@media (max-width: 480px) {
    /* Floating Cart Counter */
    .floating-cart-counter {
        width: 32px;
        height: 32px;
    }
    .cart-icon {
        width: 18px;
        height: 18px;
    }
    .cart-counter {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }

    /* Hero Section */
    .hero { height: 40vh; padding-top: 15px; }
    .brand-text { width: 100%; }
    .logo,
    .hero-logo { width: 100px; max-height: 70px; }
    .navbar-logo { height: 20px; } /* Ajustar el alto para que sea proporcional */
    .hero-title { 
        font-family: "Gobold Regular Italic", sans-serif;
        font-size: 36px; 
        font-weight: normal;
        letter-spacing: 0;
    }
    .hero-subtitle { font-size: 14px; }

    /* Collection Section */
    .collection { 
        padding: 40px 0; /* Eliminamos el padding lateral */
        display: block; /* Mantenemos display: block */
        text-align: center; /* Centramos los elementos hijos */
    }
    .product { 
        display: inline-block; /* Usamos inline-block para que text-align funcione */
        max-width: 300px;
        margin: 0 0 20px 0; /* Ajustamos el margen para espaciar los productos */
        vertical-align: top; /* Alineamos los productos en la parte superior */
    }
    .product-content { 
        width: 100%;
        max-width: 300px;
        margin: 0 auto; /* Centramos dentro de .product */
        padding: 0; /* Aseguramos que no haya padding adicional */
    }
    .image-container {
        max-width: 300px; /* Aseguramos que .image-container no exceda el max-width */
        padding-top: 0; /* Eliminamos el padding-top fijo */
        padding-bottom: 0 !important; /* Aseguramos que no haya padding inferior */
        margin: 0 !important; /* Aseguramos que no haya margen */
    }
    .image-container img {
        max-width: 300px; /* Aseguramos que las imágenes no excedan el max-width */
        object-fit: contain; /* Aseguramos que las imágenes no se distorsionen */
    }
    .product .product-content .product-details { 
        padding-top: 0 !important; /* Eliminamos el padding-top */
        padding-bottom: 20px; /* Mantenemos el padding-bottom */
        margin-top: -10px !important; /* Usamos un margin-top negativo para subir más */
        margin-bottom: 0 !important; /* Aseguramos que no haya margen inferior */
        gap: 3px; /* Mantenemos el gap corregido */
    }
    .product-details h2 { font-size: 10px; }
    .price { font-size: 10px; }
    .stock { font-size: 8px; }
    .add-button { font-size: 10px; padding: 5px 15px; }

    /* Cart Section */
    .cart { max-width: 100%; padding: 0 15px; margin-bottom: 15px; }
    .cart-button { font-size: 10px; padding: 6px 20px; }
    .remove-button { font-size: 10px; padding: 2px 6px; }

    /* Checkout Section */
    .checkout { padding: 40px 15px; }

    /* Contact Section */
    .contact { padding: 40px 15px; }
    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }
    .contact-item {
        max-width: 100%;
    }
    .contact-content h2 { font-size: 12px; }
    .contact-content p { font-size: 12px; }
    .contact-item h3 { font-size: 10px; }
    .contact-item p { font-size: 12px; }
    .contact-button { font-size: 10px; padding: 6px 20px; }

    /* Video Section */
    .fullscreen-video {
        height: 35vh; /* Proporcional: 60vh * 0.583 */
    }

    /* Mission and Vision Section */
    .mission-vision {
        padding: 40px 15px;
    }
    .mission-vision-content {
        flex-direction: column;
        gap: 20px;
    }
    .mission h2, .vision h2 {
        font-size: 12px;
    }
    .mission p, .vision p {
        font-size: 12px;
    }

    /* Values Section */
    .values {
        padding: 40px 15px;
    }
    .values-content h2 {
        font-size: 12px;
    }
    .values-grid {
        flex-direction: column;
        gap: 20px;
    }
    .value-item {
        width: 100%; /* Asegurar que ocupe todo el ancho */
        max-width: none; /* Eliminar el max-width para que se extienda */
        text-align: center; /* Reforzar el centrado */
    }
    .value-icon {
        width: 40px;
        height: 40px;
        display: block;
        margin: 0 auto; /* Centrar la imagen */
        text-align: center; /* Asegurar compatibilidad */
    }
    .value-item h3 {
        font-size: 10px;
    }
    .value-item p {
        font-size: 12px;
    }

    /* Join Us Section */
    .join-us {
        padding: 40px 15px;
    }
    .join-us-content h2 {
        font-size: 12px;
    }
    .join-us-content p {
        font-size: 12px;
    }
    .social-link {
        font-size: 10px;
        padding: 5px 15px;
    }

    /* Navbar */
    .navbar {
        height: 40px; /* Ajustar el alto para que sea proporcional */
        padding: 10px 15px;
    }
    .navbar-menu {
        top: 40px;
        padding: 15px 0;
    }
    .navbar-menu li a {
        font-size: 11px;
    }
    .navbar-toggle {
        margin-right: 10px;
    }

    /* Footer */
    .footer { padding: 15px 10px; }
    .important-note { font-size: 10px; }
    .copyright { font-size: 8px; margin-top: 10px; }
}

/* Estilos para el mensaje de comunicación al usuario */
.payment-note {
    margin-top: 15px;
    text-align: center;
}

.payment-note-title {
    font-size: 14px;
    font-weight: 700;
    color: #e60000;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.payment-note-text {
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 1.4;
}

/* Privacy Policy Section (usado en privacy-policy.html) */
.privacy-policy {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.privacy-policy-content h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    margin-bottom: 20px;
}

.privacy-policy-content p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-policy-content h3 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin: 20px 0 10px;
}

.privacy-policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-policy-content ul li {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 5px;
}

.privacy-policy-content a {
    color: #e60000;
    text-decoration: none;
    transition: color 0.4s ease;
}

.privacy-policy-content a:hover {
    color: #c19b2e;
}

/* Terms and Conditions Section (usado en terms-conditions.html) */
.terms-conditions {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.terms-conditions-content h2 {
    font-family: "Gobold Regular Italic", sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #e60000;
    margin-bottom: 20px;
}

.terms-conditions-content p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-conditions-content h3 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin: 20px 0 10px;
}

.terms-conditions-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-conditions-content ul li {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 5px;
}

.terms-conditions-content a {
    color: #e60000;
    text-decoration: none;
    transition: color 0.4s ease;
}

.terms-conditions-content a:hover {
    color: #c19b2e;
}

/* Centrar el botón de checkout */
.cart-button-container {
    text-align: center;
    margin: 20px 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #333333; /* Gris oscuro */
    color: #ffffff;
    padding: 20px;
    border-radius: 12px; /* Puntas redondeadas */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Sombra para un look moderno */
    z-index: 1000;
    display: none; /* Oculto por defecto */
    font-family: "Helvetica Now Display", sans-serif;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-content a {
    color: #e60000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #c19b2e;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background: #e60000; /* Color rojo de tu paleta */
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-buttons button:nth-child(2) {
    background: #808080; /* Gris para el botón de personalizar */
}

.cookie-buttons button:nth-child(3) {
    background: #c19b2e; /* Amarillo de tu paleta para rechazar */
}

.cookie-buttons button:hover {
    background: #c19b2e; /* Amarillo al hacer hover */
}

.cookie-settings {
    display: none;
    background: #444444; /* Gris un poco más claro que el banner */
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.cookie-settings h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #e60000;
    margin-bottom: 15px;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    font-size: 14px;
    color: #ffffff;
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-settings button {
    background: #e60000;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.cookie-settings button:nth-child(2) {
    background: #808080;
}

.cookie-settings button:hover {
    background: #c19b2e;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        width: 95%;
        padding: 15px;
    }
    .cookie-content p {
        font-size: 12px;
    }
    .cookie-buttons button {
        font-size: 12px;
        padding: 6px 15px;
    }
    .cookie-settings h3 {
        font-size: 14px;
    }
    .cookie-option label {
        font-size: 12px;
    }
    .cookie-settings button {
        font-size: 12px;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 5px;
        padding: 10px;
    }
    .cookie-content p {
        font-size: 10px;
    }
    .cookie-buttons button {
        font-size: 10px;
        padding: 5px 10px;
    }
    .cookie-settings h3 {
        font-size: 12px;
    }
    .cookie-option label {
        font-size: 10px;
    }
    .cookie-settings button {
        font-size: 10px;
        padding: 5px 10px;
    }
}