/* producto.css */
/* DETALLE DE PRODUCTO - LA CASA DEL REVESTIMIENTO */

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff;
    color: #0f172a;
}

/* TOPBAR */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #020617;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    z-index: 1000;
}

.nav a {
    color: #3b82f6;
    margin-left: 20px;
    text-decoration: none;
}

/* PRODUCTO */
.producto {
    margin-top: 100px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.imagen img {
    width: 100%;
    border-radius: 10px;
}

.info h1 {
    margin-top: 0;
}

.categoria {
    color: #64748b;
    font-size: 14px;
}

.precio {
    font-size: 22px;
    color: #1e40af;
    font-weight: bold;
    margin: 15px 0;
}

.descripcion {
    line-height: 1.6;
}

.btn,
.btn-producto {
    display: inline-block;
    margin-top: 20px;
    background: #2563eb;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
}

.detalle-meta {
    margin: 15px 0 0;
    font-size: 15px;
    color: #475569;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .producto {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}
