﻿.producto-detalle-card {
    max-width: 960px;
    border-radius: 22px;
    padding: 1.5rem;
    background: var(--rz-base-default);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

/* HERO */
.producto-hero {
    position: relative;
    margin-bottom: 2rem;
}

.producto-hero-bg {
    height: 120px;
    border-radius: 16px;
    background: linear-gradient( 135deg, var(--rz-primary), rgba(var(--rz-primary-rgb), .7) );
}

.producto-hero-content {
    margin-top: -50px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* AVATAR */
.producto-avatar {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--rz-base-default);
}

.producto-avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    background: rgba(var(--rz-primary-rgb), .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

/* GRID */
.producto-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
}

/* SECTION */
.producto-section {
    border-radius: 16px;
    padding: 1.2rem;
    background: rgba(var(--rz-base-contrast-rgb), .03);
    border: 1px solid rgba(var(--rz-base-contrast-rgb), .08);
}

/* TITLE */
.producto-section-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* INFO GRID */
.producto-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.producto-info-item.full {
    grid-column: span 2;
}

.label {
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--rz-text-secondary-color);
}

.value {
    font-weight: 600;
}

/* FOOTER */
.producto-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--rz-base-contrast-rgb), .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .producto-grid {
        grid-template-columns: 1fr;
    }

    .producto-hero-content {
        flex-direction: column;
        text-align: center;
    }
}
