/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* FAMÍLIES */
.Familia {
    width: 260px;
    margin: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.Familia img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0002;
    transition: 0.3s;
}

.Familia img:hover {
    transform: scale(1.03);
}

.NomFamilia {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
/* ARTICLES */
.Articulo {
    width: 260px;
    margin: 20px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.Articulo img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0002;
    transition: 0.3s;
}

.Articulo img:hover {
    transform: scale(1.03);
}

.NombreArticulo {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
}

.PrecioArticulo {
    margin-top: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #7a9a7a;
}
/* BOTONS DE COMPRA */
.BotonComprar,
.BotonCarrito {
    background: #7a9a7a !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-top: 10px !important;
    transition: 0.3s !important;
}

.BotonComprar:hover,
.BotonCarrito:hover {
    background: #5f7c5f !important;
}
#Articulo {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

#Articulo img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 12px #0002;
}

#Articulo h1 {
    font-size: 32px;
    margin-top: 20px;
}

#Articulo .Precio {
    font-size: 28px;
    font-weight: 700;
    color: #7a9a7a;
    margin: 15px 0;
}

#Articulo .Descripcion {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}
#Carrito {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

#Carrito table {
    width: 100%;
    border-collapse: collapse;
}

#Carrito th,
#Carrito td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

#Carrito .Total {
    font-size: 24px;
    font-weight: 700;
    color: #7a9a7a;
    text-align: right;
    margin-top: 20px;
}
