body {
    font-family: sans-serif;
    background-color: white;
    position: relative;
    padding-bottom: 95.5px;
}

header {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6E6E6E;
    color: white;
    border-radius: 10px;
}
nav a {
    text-decoration: none;
    color: white;
    padding-right: 10px;
}

.logo {
    display: flex;
    height: 50px;
    padding: 10px;
    align-items: center;
    margin-right: 10px;
}

.logo img {
    height: 65px;
    display: flex;
    padding: 10px;
    align-items: center;
    margin-right: 10px;
    border-radius: 10px;
    padding-top: 5px;
}

nav a {
    font-weight: 600;
}

.mis_prendas p {
    font-style: oblique;
    color: grey;
}

.mis_prendas a {
    text-decoration: none;
    color: gray;
}

.carrito_img {
    width: 20px;
    height: 20px;
    padding-right: 12px;
}

.container-items img {
    border-radius: 10px;
    width: 400px;
    height: 500px;
}

.product-info {
    padding: 10px 65px;
    display: flex;
    flex-direction: column;
}

header p {
    color: #D897DE;
}

header nav a {
    color: #D897DE;
}

.container-items {
    display: flex;
    justify-content: center;
    padding: 20px;
    padding-right: 70px;
    padding-left: 70px;
}

.container-items {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaciado entre los productos */
    padding: 20px;
}

.product-item {
    text-align: center;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px; /* Ancho uniforme para todos los productos */
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-info {
    margin-top: 10px;
    font-family: sans-serif;
    font-weight: 600;
}

.btn-agregar {
    background-color: #6E6E6E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-agregar:hover {
    background-color: #D897DE;
}

footer {
    height: 55px;
    position: absolute;
    bottom: 0;
    font-family: sans-serif;
    background-color: #6E6E6E;
    border-radius: 10px;
    width: 99%;
}

footer p {
    color: #D897DE;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.footer-links a {
    text-decoration: none;
    text-align: center;
}

.footer-top {
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom {
    padding-bottom: 10px;
}

.product-info a {
    text-decoration: none;
    color: black;
}

.product-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.20);
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .logo {
        margin-bottom: 20px;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    nav a {
        margin: 10px 0;
    }

    .container-items {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        position: relative;
        left:30px;
    }

    .product-item {
        width: 80%;
        margin: 10px 0;
    }

    footer {
        font-size: 14px;
    }
}

/* Media Queries para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
    header {
        padding: 15px;
    }

    .logo img {
        height: 50px;
    }

    nav a {
        font-size: 14px;
    }

    .product-item {
        justify-content: center;
        width: 80%;
    }

    .product-info {
        padding: 10px 20px;
    }

    .btn-agregar {
        padding: 8px 16px;
        font-size: 14px;
    }

    footer {
        font-size: 12px;
    }

    footer p{
    justify-content: center;
    align-items: center;
    text-align: center;
    }

    .footer-top{
        position: relative;
        bottom: 10px;
    }
















}