/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* Encabezado */
header {
    background-color: #000000;
    color: white;
    padding: 20px 0;
    text-align: center;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 10px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
/* Sección de productos */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}
.product-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    width: 100%;
    border-radius: 5px;
}
/* Carrito de compras */
.cart {
    background-color: #da66a2;
    color: white;
    padding: 10px;
    border-radius: 5px;
    border-color: #da66a2;
    position: fixed;
    top: 20px;
    right: 20px;
}
/* Estilos responsivos */
@media (max-width: 768px) {
    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Footer */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px 20px;
    position: relative;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo img {
    height: 50px;
    margin-bottom: 30px;
}
.footer-sections {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer-section {
    margin-right: 20px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.footer-social a {
    margin-left: 15px;
}
.footer-social img {
    width: 30px;
    height: 30px;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}
.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.scroll-top img {
    width: 20px;
    height: 20px;
}