/* Tipografia */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

body {
    display: block
}

body, html {
    height: 100%;
}

footer {
    min-height: 15vh;
}

h1 {
    font-size: 4.3rem !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

/* NAV */

header {
    min-height: 6vh;
}

.hover-effect:hover {
    color: #0d6efd !important;
}

.navbar-nav .nav-link,
.dropdown-item {
  transition: all 0.3s ease;
}

#navbarNavDropdown {
    display: flex;
    justify-content: flex-end;
    width: 70%;
    color: white;
}

#navbarNavDropdown a i {
    font-size: 1.3rem;
}

.dropdown button:nth-child(1) {
    color: white;
} 

.logo {
    width: 16rem;
    height: 4rem;  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .logo {
        width: 12rem;
        height: 3rem;
    }
    
}

@media screen and (max-width: 450px) {
    .logo {
        width: 10rem;
        height: 2rem;
    }
    
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-ham {
    width: 56px;
    display: block;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* MAIN */

main {
    min-height: 75vh;
}

.home-cards {
    height: 50%;
    background-color: lightgray;
}

.home-cards h2 {
    text-align: center;
    margin: 0;
    padding: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
    width: 85%;
    margin: auto;
}

.cards div {
    background-color: white;
}

.cards div h3 {
    text-align: center;
    margin: 0;
    padding: 8px;
}

.cards div p {
    padding: 20px;
    margin: 0;
}

.img {
    border-bottom: black 1px solid;
    height: 120px;
}

.home-info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.home-info h1 {
    text-align: center;
    margin: 0;
    padding: 20px;
}

.swiper-container {
    margin: 20px 0;
}

.swiper {
    overflow: visible;
}

.slider-item {
    list-style: none;
}

.slider-link img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    border-radius: 10px;  
}

.animate__delay-0_1s {
    animation-delay: 0.1s;
}

.animate__delay-0_2s {
    animation-delay: 0.2s;
}

/* PRODUCTOS */

.img-zoom-container {
    overflow: hidden;
}

.img-zoom {
    transition: transform 0.4s ease;
}

.img-zoom:hover {
    transform: scale(1.04);
    z-index: 2;
}

/* VER-PRODUCTO */

.agregar-carrito { 
    display: flex; 
    flex-direction: column;
    gap: 10px;
        
}

.talle-label:hover {
    background-color: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
    cursor: pointer;
}

/* AMDIN */

/* FINALIZAR COMPRA */

.container-finalizar-compra {
    
}

.formulario-de-envio {
    width: 60%;
}

.detalles-de-compra {
    width: 40%;
}

/* FOOTER */

footer {
    min-height: 14vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
}

footer p {
    margin-bottom: 0;
}


