body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  main {
    padding-top: 100px;
  }
  
.new-in-title {
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 30px; /* ajusta según el tamaño exacto del de "Camisetas" */
  color: #233f32;  /* mismo color del título "Camisetas" */
  margin-bottom: 8px;
  max-width: 90%;
}


.new-in-divider {
  border-bottom: 0.5px solid #ddd; /* línea de división gris claro */
  margin-bottom: 20px;
  font-size: 30px; /* o el tamaño que desees */
}



.collections {
    color: #233f32;
    text-align: left;
    padding-left: 2rem; /* Cambiá el valor a tu gusto: 1rem, 20px, etc. */
    font-family: "Inter-SemiBold", sans-serif;
    font-size: 24px;
    letter-spacing: -0.02em;
    font-weight: 600;
    position: relative;
  
    /* 🔧 Este margen solo afecta al texto, no a los productos */
    margin-left: 5%;       /* Ajustá este valor a tu gusto */
    margin-top: 0;   /* <- Este es clave */
    padding-top: 0;
    margin-bottom: 2rem;   /* Espacio debajo del título */
    max-width: 90%;       /* Asegura que no expanda su contenedor */
  }
  

  .collection-title {
    font-size: 2rem;
    font-weight: bold;
    padding-left: 2rem; /* Cambiá el valor a tu gusto: 1rem, 20px, etc. */
    color: #000;
    margin: 3rem 0 2rem 5%;
    margin-left: 5%;       /* Ajustá este valor a tu gusto */
    text-align: left;
    font-family: "Inter", sans-serif;
}

/* COLLECTION GRID */

.collections-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}



.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* siempre 3 columnas */
  justify-items: center;
  gap: 80px 60px; /* Pantallas grandes: mucho espacio */
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .collection-grid {
    gap: 60px 40px;
  }
}

@media (max-width: 992px) {
  .collection-grid {
    gap: 40px 20px;
  }
}


#new-in {
  margin-bottom: 0; /* ajusta si querés más o menos espacio */
}



  .collection-container {
    display: flex;
    justify-content: center;    /* 🔧 Centra los productos en pantalla */
    gap: 600px;                  /* 🔧 Ajustá este valor para separar los productos entre sí */
    flex-wrap: wrap;            /* 🔧 Por si en algún momento agregás más productos */
    padding: 0 2rem;            /* 🔧 Espacio entre los bordes de la pantalla y el bloque */
}

/* Cada camiseta */
.collection-item {
    text-align: center;
    justify-content: center;
    max-width: 300px;
    background-color: transparent;
    padding: 0;
    gap: 400px;                  /* 🔧 Ajustá este valor para separar los productos entre sí */
}

.collection-item {
  width: 100%;
  max-width: 300px;
  text-align: center;
}


/* Imagen de camiseta */
.collection-item img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Título del producto */
.collection-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.2rem 0;
    color: #000;
}
  
  /* 🔧 Esta clase es la clave para ocultar sin romper el diseño */
  .hidden {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  


.btn-secondary {
    background-color: #ebd7c1;
    color: #233f32;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto; /* Empuja el botón hacia la parte inferior */
    width: 60%; /* Ajusta el ancho del botón */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    cursor: pointer;
    align-self: center; /* Centra el botón horizontalmente */
}

.btn-secondary:hover {
    background-color: #ebd7c1;
    color: #fff;
    transform: translateY(-3px);
}



.price {
    color: #233f32;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0.3rem 0;
}


.logo {
    width: 152.2px;
  height: 40px;
  position: absolute;
  left: 50%;
  translate: -50%;
  top: 25px;
  object-fit: cover;
  aspect-ratio: 152.2/40;

}

html {
    scroll-behavior: smooth; /* Habilita el desplazamiento suave */
}



.account-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.account-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}



/* HERO */

.hero {
  position: relative;
  margin-top: 0; /* elimina separación con la barra */
  padding: 0;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -0.5px; /* Altura de la navbar para evitar que quede escondida */
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
}

.hero-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.hero-text p {
    font-size: 1rem;
    margin: 0.5rem 0 1rem;
}



.btn-secondary {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #233f32;
    color: #fff;
}

.btn-tertiary {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: #233f32;
    color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-tertiary:hover {
    background-color: #ebd7c1;
    color: #fff;
}

/* Ícono del carrito en la misma línea */
.cart-icon {
    font-size: 20px;
    cursor: pointer;
    font-weight: 2px;
  }

.cart-btn {
    background-color: #233f32;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-btn:hover {
    background-color: #233f32;
}

.menu-toggle {
    display: none;
}


.hero {
    text-align: center;
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: #d6d6d6;
    padding: 4rem 2rem;
    margin: 0;
    padding: 0;
    margin-top:27px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #ebd7c1;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    width: 200px; /* Set a fixed width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s; /* Smooth scaling effect */
    
        padding: 10px 20px;          /* Espaciado del botón */
        background-color: #233f32;   /* Color de fondo */
        color: white;                 /* Color del texto */
        border: none;                 /* Sin borde */
        border-radius: 5px;          /* Bordes redondeados */
        cursor: pointer;              /* Cambiar cursor a puntero */
        transition: all 0.3s ease;   /* Añadir transición suave *
    
    
        background-color: #218838;    /* Color de fondo al pasar con el ratón */
        transform: translateY(-5px);  /* Mover el botón hacia arriba */
        box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Añadir sombra */
    }
    

.btn-primary:hover {
    background-color: #ebd7c1;
}


.about, .contact {
    text-align: center;
    margin: 0 auto;
    padding: 2rem 1rem;
    max-width: 600px;
}

.tees-section {
    padding: 2rem 5%;
    background-color: #ffffff;
}

.tees-title * {
    box-sizing: border-box;
  }

 .tees-title {
  color: #233f32;
  text-align: left;
  font-family: "Inter-SemiBold", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  margin-top: 200px;      /* 👈 🔧 ESTE ES EL CAMBIO QUE NECESITÁS */
  margin-left: 6%;
  margin-bottom: 2rem;
  max-width: 90%;
}

h2[data-i18n="nav_tees"] {
  font-size: 30px; /* o el tamaño que desees */
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 0.5px solid #ddd; /* línea de división gris claro */
}

@media (max-width: 768px) {
  h2[data-i18n="nav_tees"] {
    border-bottom: none;  /* Quita la línea original en móvil */
  }
}


/* Contenedor interno: controla el ancho máximo y separación lateral */
.tees-container {
    display: flex;
    justify-content: center;
    gap: 14rem;        /* 🔧 Espacio horizontal ENTRE productos */
    flex-wrap: wrap;
    max-width: 2000px;  /* 🔧 Ancho total de la fila de productos */
    width: 97%;
    padding: 0 2rem;    /* 🔧 Espacio entre los productos y los bordes laterales de la página */
}

/* Cada camiseta */
.tee-item {
    text-align: center;
    max-width: 300px;
    background-color: transparent;
    padding: 0;
}

/* Imagen de camiseta */
.tee-item img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Título del producto */
.tee-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.2rem 0;
    color: #000;
}

/* Precio */
.tee-item .price {
    font-size: 1rem;
    font-weight: bold;
    color: #233f32;
    margin-bottom: 1rem;
    display: block;
}

/* Botón */
.tee-item .buy-button {
    background: #233f32;
    color: #f5f5f5;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.tee-item .buy-button:hover {
    background: #1a2e26;
}


/* Precio y texto */
.tee-item h3 {
    font-size: 1rem; /* Texto más pequeño para el nombre */
    margin: 0.5rem 0;
}

.price {
    color: #233f32;
    font-size: 0.9rem; /* Texto más pequeño para el precio */
    font-weight: bold;
    margin: 0.3rem 0;
}

.btn-secondary {
    padding: 0.4rem 0.8rem; /* Botón más pequeño */
    background-color: #233f32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem; /* Texto más pequeño */
}

.btn-secondary:hover {
    background-color: #555;
}

.productos-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
     margin-left: -80px; /* 🔄 ajusta este valor según cuánto quieras mover */
     margin-top: -70px; /* 🔄 ajusta este valor según cuánto quieras mover */
  }
  
  .image-hover {
    position: relative;
    max-width: 400px;
    width: 100%;
    height: auto;
  }
  
  .image-hover img {
    width: 100%;
    height: auto;
    object-fit: contain;  /* 🔥 Esto asegura que la imagen no se recorte */
    display: block;
    transition: opacity 0.3s ease-in-out;
  }
  
  .image-hover img {
    box-shadow: none !important;  /* 🔥 Esto elimina cualquier sombra forzada */
    border: none !important;      /* 🔥 Y esto quita cualquier borde fino que aparezca */
  }
  

  .img-back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .image-hover:hover .img-front {
    opacity: 0;
  }
  
  .image-hover:hover .img-back {
    opacity: 1;
  }
  
  
  
  
  .collection-item a {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  
  
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer-sections {
  display: flex;
  justify-content: center;
  gap: 780px; /* espacio entre columnas */
  flex-wrap: wrap;
  text-align: center;
  max-width: 1000px; /* límite de ancho para centrar */
  width: 100%;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

footer p {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  text-align: center;
}



.footer-sections h3 {
    color: #233f32;
}

.footer-sections a {
    text-decoration: none;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    color: #bbb;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}



.footer-column p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #233f32;
}



.footer-column ul li a {
    text-decoration: none;
    color: #233f32;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #000; /* Color de subrayado */
    transition: width 0.3s ease;
  
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-divider {
  width: 8000px; /* mismo ancho que .footer-sections */
  max-width: 200%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 50px auto 10px auto;
}


.email-signup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.email-signup input {
    width: 100%;
    max-width: 300px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.email-signup button {
    padding: 0.5rem 1rem;
    background-color: #233f32;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-signup button:hover {
    background-color: #233f32;
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
}

.email-signup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.email-signup input {
    width: 100%;
    max-width: 300px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.email-signup button {
    padding: 0.5rem 1rem;
    background-color: #233f32;
    color: #ebd7c1;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-signup button:hover {
    background-color: #233f32;
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea, form button {
    width: 100%;
    max-width: 400px;
    margin: 0.5rem 0;
}
/* Product Page Styles */

.underline-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #233f32;
    padding: 0.5rem 1rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    transition: color 0.3s ease-in-out;
}

.underline-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #233f32;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.underline-btn:hover {
    color: #555; /* Cambia el color del texto al pasar el cursor */
}

.underline-btn:hover::after {
    width: 100%;
    left: 0;
}



.cart-footer button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border 0.3s;
    margin-top: 0.5rem;
  }
  
  /* Botón de Finalizar compra (primero) */
  .checkout-btn {
    background-color: #233f32;
    color: #fff;
    border: 2px solid #233f32;
  }
  
  .checkout-btn:hover {
    background-color: #1a2d27;
    border-color: #1a2d27;
  }
  
  
  
  .loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeOut 0.4s ease forwards;
    animation-delay: 2.2s;
  }
  
  .loader img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transform: scale(0.1);
    opacity: 0;
    animation: zoomInClean 2s ease forwards;
  }
  
  @keyframes zoomInClean {
    0% {
      transform: scale(0.1);
      opacity: 0;
    }
    70% {
      transform: scale(1.1);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes fadeOut {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .remove-item {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    transition: color 0.2s ease;
  }
  
  .remove-item:hover {
    color: #333;
  }
  

.product-details {
    flex: 1.5; /* Ocupa más espacio que la imagen */
    padding-left: 1rem; /* Espaciado desde la imagen */
}

.product-details h1 {
    font-size: 2rem; /* Tamaño del nombre del producto */
    margin-bottom: 1rem; /* Espaciado inferior */
}

.section-title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-top: 12px;
}

.section-text {
  font-weight: 400;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}


.product-details h2 strong {
  font-weight: 800;
  display: block;
  margin-top: 12px;
}



.product-details h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details ul li {
    margin: 0.5rem 0;
}

.product-details ul li a {
    text-decoration: none;
    color: #233f32;
    transition: color 0.3s;
}

.product-details ul li a:hover {
    color: #555;
}


/* Sección "About" */
.about-section {
    margin: 4rem auto; /* Espaciado superior para separar de la barra superior */
    padding: 2rem; /* Espaciado interno */
    max-width: 800px; /* Limitar el ancho del contenido */
    text-align: center; /* Centrar el contenido */
}

/* Estilo del título */
.about-title {
    font-size: 2.5rem; /* Tamaño igual al título principal */
    font-weight: 700; /* Negrita */
    color: #233f32; /* Color consistente con el diseño */
    margin-bottom: 1.5rem; /* Espaciado inferior */
}

/* Estilo del texto */
.about-text {
    font-size: 1.2rem; /* Tamaño igual al subtítulo principal */
    line-height: 1.8; /* Altura de línea para mejor legibilidad */
    color: #555; /* Color similar al subtítulo */
}

.about-logo {
    display: block; /* Se asegura de que sea un elemento en bloque */
    margin: 3rem auto; /* Centrado horizontalmente y separación vertical */
    width: 80px; /* Tamaño del logo ajustable */
    height: auto; /* Mantiene la proporción */
}


/* === CARRITO TIPO STÜSSY === */

.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: flex-end;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .cart-panel {
    background-color: #fff;
    width: 400px;
    max-width: 100%;
    max-height: 100vh;
    padding: 1.5rem;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
    overflow-y: auto;
  }
  
  .cart-overlay.active .cart-panel {
    transform: translateX(0);
  }
  
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
  }
  
  .cart-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #233f32;
    margin: 0;
  }
  
  .close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000;
    cursor: pointer;
  }
  
  .cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin: 1rem 0;
    padding-right: 0.5rem;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .cart-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    background: #fff;
    position: sticky;
    bottom: 0;
    margin-top: auto;
  }
  
  .cart-total {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  
  .checkout-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #233f32;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 6px;
  }
  
  .checkout-btn:hover {
    background-color: #1a2d27;
  }
  


  @media (max-width: 500px) {
    .cart-panel {
      width: 100%;
      padding: 1rem;
    }
    .cart-header h2 {
      font-size: 1.1rem;
    }
    .checkout-btn {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 768px) {
  .nude-search-box {
    top: 8vh;
    width: 90%;
    padding: 1rem;
  }

  .nude-search-form input {
    font-size: 15px;
    padding: 0.65rem 1rem;
  }

  .nude-search-close {
    font-size: 26px;
  }

  .nude-search-results .result-item img {
    width: 44px;
    height: 44px;
  }

  .nude-search-results .result-info h4 {
    font-size: 13px;
  }

  .nude-search-results .result-info p {
    font-size: 11px;
  }
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cart-price {
  font-weight: 600;
  margin: 4px 0 0;
}

.cart-size {
  font-size: 0.9rem;
  color: #555;
  margin-top: 2px;
}

@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 10px;
  }

  .logo {
    width: 100px;
    top: 15px;
  }

  .menu-btn {
    font-size: 1.2rem;
    top: 10px;
    left: 10px;
  }

  /* TITULOS Y TEXTOS */
  .collection-title,
  .collections,
  .tees-title {
    font-size: 1.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
  }

  /* GRIDS DE PRODUCTOS */
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
    transform: none;
  }

  .tees-container {
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
  }

  /* CADA PRODUCTO */
  .collection-item,
  .tee-item {
    max-width: 100%;
    margin: 0 auto;
  }

  .collection-item img,
  .tee-item img {
    max-width: 100%;
    height: auto;
  }

  /* FOOTER */
  .footer-sections {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-divider {
    width: 90%;
  }

  /* BOTONES */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  /* PRODUCT PAGE */
  .product-container {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .productos-image img {
    width: 100%;
    max-width: 100%;
  }

  .product-info {
    padding: 0;
  }

}
@media (min-width: 769px) and (max-width: 1200px) {

  /* LOGO y HEADER */
  .logo {
    width: 120px;
    top: 20px;
  }

  .collection-title,
  .collections,
  .tees-title {
    font-size: 1.8rem;
    margin-left: 2rem;
  }

  /* GRIDS */
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 2rem;
    transform: none;
  }

  .tees-container {
    gap: 5rem;
    justify-content: center;
    padding: 2rem;
  }

  .collection-item,
  .tee-item {
    max-width: 280px;
  }

  .collection-item img,
  .tee-item img {
    max-width: 100%;
    height: auto;
  }

  /* PÁGINA DE PRODUCTO */
  .product-container {
    gap: 5rem;
    padding: 2rem;
    flex-wrap: wrap;
  }

  .productos-image img {
    width: 100%;
    max-width: 100%;
  }

  /* BOTONES */
  .btn-primary,
  .btn-secondary {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  /* FOOTER */
  .footer-sections {
    gap: 4rem;
    padding: 2rem;
  }

}

@media (min-width: 769px) and (max-width: 1200px) {
  body {
    background-color: #f0ffdc !important;
  }
}

.menu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon line {
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.menu-icon .top,
.menu-icon .middle,
.menu-icon .bottom {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ANIMACIÓN AL ESTADO "OPEN" */
.menu-icon.open .top {
  transform: rotate(45deg) translate(0, 6px);
}

.menu-icon.open .middle {
  opacity: 0;
}

.menu-icon.open .bottom {
  transform: rotate(-45deg) translate(0, -6px);
}




/* SIDEBAR ESTILO NUDE PROJECT */
.sidebar {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 1500; /* Asegúrate de que sea menor que el popup */
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
}

/* Mostrar el sidebar al activar */
.sidebar.active {
  transform: translateX(0);
}


.sidebar a {
  text-decoration: none;
  color: #233f32;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  display: inline-flex;       /* CAMBIO CLAVE */
  align-self: flex-start;     /* EVITA ESTIRAMIENTO */
}

.sidebar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.sidebar a:hover::after {
  width: 100%;
}

        

.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.sidebar-footer {
  margin-top: auto;
  padding: 20px;
    padding-bottom: 50px;
  border-top: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: white;
}


.sidebar-link a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
  margin-top: 25px;
}

.sidebar-link,
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #233f32;
  font-size: 18px;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 2px;
    margin-top: 0.5px;
  cursor: pointer;
font-weight: 550;
position: relative;
transition: color 0.3s ease;
}

.sidebar-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


.lang-btn:hover {
  opacity: 1;
  
}

.lang-btn:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: #000; /* Color de subrayado */
            transition: width 0.3s ease;
        }
        
        .lang-btn:hover:after {
            width: 5%;
        }


/* Mostrar nav links en pantallas grandes */
.nav-desktop {
  display: block;
}

/* Ocultar botón hamburguesa en pantallas grandes */
.menu-toggle {
  display: none;
}

/* En pantallas pequeñas: ocultar nav links y mostrar hamburguesa */
@media (max-width: 1400px) {
  .nav-desktop {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }
}



.languages-toggle {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-right: 100px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative; /* 🔑 para que el ::after se posicione bien */
  user-select: none;
  transition: color 0.3s ease;
  transform: translateY(1px); /* Ajustá a 1px o 3px si querés más fino */
}

.languages-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease;
}

.languages-toggle:hover::after {
  width: 100%;
}



@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 1rem;
    width: 90%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .shop-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    width: auto;
    margin-top: 1rem;
  }

  .logo {
    width: 90px;
    top: 15px;
  }

  .navbar-right {
    gap: 12px;
  }

  .collection-grid,
  .tees-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
    display: grid;
  }

  .collection-item,
  .tee-item {
    max-width: 100%;
  }

  .product-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .productos-image img {
    width: 100%;
    max-width: 100%;
  }

  .product-info {
    padding: 0;
  }

  footer {
    padding: 2rem 1rem;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar {
    padding: 2rem 1rem;
  }

  .sidebar a {
    font-size: 14px;
  }

  .lang-btn {
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .collection-grid,
  .tees-container,
  .search-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ dos columnas */
    gap: 1rem;
    padding: 1rem;
  }

  .collection-item,
  .tee-item,
  .search-result-item {
    max-width: 100%;
  }

  .search-result-item img {
    object-fit: contain;
    width: 100%;
    height: auto;
  }
}


@media (max-width: 768px) {
  .navbar-right {
    gap: 10px; /* antes 30px o más */
  }

  .account-icon,
  .cart-icon,
  .search-toggle svg {
    width: 20px;
    height: 20px;
  }
}


@media (max-width: 768px) {
  form {
    padding: 0 1rem;
    width: 100%;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  form label {
    font-size: 0.9rem;
  }

  .form-container {
    width: 100%;
    padding: 1rem;
  }
}



@media (max-width: 768px) {
  .tees-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 1rem;
    justify-items: center;
  }

  .tee-item {
    width: 100%;
    max-width: 180px;
    text-align: center;
  }

  .tee-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .tee-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.4rem 0 0.2rem;
  }

  .tee-item .price {
    font-size: 0.85rem;
    margin: 0.2rem 0;
  }

  .tee-item .buy-button {
    display: inline-block;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;
    margin-top: 0.4rem;
  }

  .tee-item .color-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.3rem;
  }

  .tee-item .color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background-color: #ccc;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  * {
    box-sizing: border-box;
  }

  .collection-grid,
  .tees-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 12px;
  }

  .collection-item,
  .tee-item {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .collection-item img,
  .tee-item img {
    width: 100%;
    object-fit: contain;
  }
}



@media (max-width: 768px) {
  .hero {
    padding: 10px;
    text-align: center;
  }

  .hero h1, .hero .hero-title {
    font-size: 22px; /* Ajustá según tu diseño */
    line-height: 1.3;
  }

  .hero p, .hero .hero-subtitle {
    font-size: 14px; /* Subtítulo o texto adicional si lo hay */
  }

  .hero button, .hero .shop-now-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}


.mobile-footer {
    display: none;
    background-color: white;
    padding: 20px 16px;
    border-top: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
  }
  .info-section {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
  }
  .info-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    padding: 0;
    cursor: pointer;
  }
  .info-content {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    margin-top: 8px;
    padding-left: 12px;
    transition: max-height 0.3s ease;
  }
  .info-content a {
    text-decoration: none;
    color: #233f32;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
  }
  .info-section.active .info-content {
    max-height: 300px;
  }
  .plus-icon {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .info-section.active .plus-icon {
    transform: rotate(45deg);
  }
  .language-info {
    margin-top: 16px;
    font-weight: bold;
    font-size: 15px;
  }
  @media screen and (max-width: 991px) {
    .mobile-footer {
      display: block;
    }
    footer .footer-sections,
    footer .footer-divider,
    footer p {
      display: none;
    }
  }


  @media (max-width: 768px) {
  /* Reducir el logo */
  .logo {
    width: 90px !important;  /* O ajusta a tu gusto: 80px, 100px... */
    height: auto !important;
  }

  /* Reducir iconos de la derecha */
  .account-icon,
  .cart-icon,
  .search-toggle svg {
    width: 18px !important;  /* Más pequeños que los 22-24px actuales */
    height: 18px !important;
  }

  /* Agrupa y reduce el espacio entre íconos */
  .navbar-right {
    gap: 22px !important;  /* O incluso 8px si quieres más compacto */
  }

  /* Reduce el espacio en navbar-left si aplica */
  .navbar-left {
    gap: 10px !important;
  }
}

@media (max-width: 768px) {
  .logo {
    position: absolute;
    top: 60%;
    left: 61%;
    transform: translate(-50%, -50%);
    width: 90px; /* o el tamaño que prefieras */
    height: auto;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    position: fixed;
    width: 100%;
  }

  .menu-toggle,
  .navbar-right {
    position: relative;
    z-index: 2;
  }
}



@media (max-width: 991px) {
  .mobile-footer p {
    font-family: 'Poppins', sans-serif; /* O cambia a otra que prefieras */
    font-size: 12px; /* Más pequeño que el actual */
    text-align: center;
    color: #999; /* Color más suave, puedes cambiarlo */
    margin: 10px 0 0 0; /* Quita margen excesivo arriba/abajo */
    padding: 0;
  }
}


@media (max-width: 768px) {
  .search-results {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    padding: 0 2px !important;
  }

  .search-result-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-decoration: none !important;
    color: #000 !important;
    padding: 0 !important;
  }

  .search-result-item .product-image-wrapper {
    width: 100% !important;
    padding: 12px !important;
    background-color: rgba(244, 244, 244, 0.8) !important;
    border-radius: 2px !important;
    position: relative !important;
  }

  .search-result-item .product-image-wrapper::before {
    content: "" !important;
    display: block !important;
    padding-top: 125% !important;
  }

  .search-result-item .product-image-wrapper img {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    width: calc(100% - 24px) !important;
    height: calc(100% - 24px) !important;
    object-fit: contain !important;
  }

  .search-result-item .result-info {
    width: 100% !important;
    padding: 4px 0 0 0 !important;
  }

  .search-result-item .result-info .name {
    font-size: 0.8rem !important;
    margin: 4px 0 0 0 !important;
  }

  .search-result-item .result-info .price {
    font-size: 0.8rem !important;
    margin: 2px 0 8px 0 !important;
  }
}



/* Estilos específicos para celular */
@media (max-width: 768px) {
  .language-popup {
    width: 90%;
    max-width: 320px; /* para que no ocupe todo el ancho */
  }
}

.language-popup.show {
  opacity: 1;
  visibility: visible;
}

.language-popup button.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 14px;
  color: #333;
}

.mobile-footer {
  background-color: transparent !important;
  color: #233f32 !important;
  padding: 20px;
}

.mobile-footer a {
  color: #233f32 !important;
  text-decoration: none;
}

.mobile-footer .info-toggle {
  background: none;
  border: none;
  color: #233f32 !important;
  font-weight: bold;
  width: 100%;
  text-align: left;
  font-size: 14px;
  padding: 10px 0;
}

.mobile-footer .info-content {
  list-style: none;
  padding-left: 0;
}

.mobile-footer .info-content li a {
  color: #233f32 !important;
  font-size: 13px;
}
