﻿/* CARD */
.receta-detalle-card {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* HEADER */
.receta-detalle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* LISTA */
.receta-detalle-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

/* ITEM */
.receta-detalle-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: .7rem 1rem;
    border-radius: 14px;
    background: var(--rz-base-default);
    border: 1px solid rgba(var(--rz-base-contrast-rgb), .08);
    transition: .2s;
}

    .receta-detalle-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.06);
    }

/* NOMBRE */
.item-nombre {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
}

/* DATOS */
.item-datos {
    display: grid;
    grid-template-columns: 140px 80px 90px;
    align-items: center;
    justify-items: end;
    gap: 1rem;
    font-size: .9rem;
}

/* COSTOS */
.costo-unitario {
    font-size: .8rem;
    color: var(--rz-text-secondary-color);
}

.costo-total {
    font-weight: 700;
    color: var(--rz-success);
    font-size: .95rem;
}

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

/* TOTAL */
.total-receta {
    font-size: 1.1rem;
}


/* HERO */
.receta-hero {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(var(--rz-base-contrast-rgb), .08);
    flex-wrap: wrap;
}

/* IMAGEN */
.receta-hero-img img {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.receta-hero-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    background: rgba(var(--rz-primary-rgb), .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--rz-primary);
}

/* INFO */
.receta-hero-info {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1; 
    min-width: 0; 
}

/* DESCRIPCIÓN */
.receta-descripcion {
    font-size: .85rem;
    color: var(--rz-text-secondary-color);
    max-width: 400px;
}

/* BADGES */
.receta-badges-detalle {
    display: flex;
    gap: .5rem;
    margin-top: .3rem;
    flex-wrap: wrap; 
}

.receta-badges-detalle .rz-badge {
    white-space: nowrap;
}

.receta-hero-img {
    flex-shrink: 0; 
}