/* Integración de Logo en Cabecera */
.product-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
}

.product-logo-container, .product-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--panel-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-dark), var(--shadow-lite), var(--inner);
    border: 1px solid rgba(26, 208, 170, 0.2);
    flex-shrink: 0;
}

.product-main-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    /* Efecto de brillo sutil para logos */
    filter: drop-shadow(0 0 5px rgba(26, 208, 170, 0.3));
}

.product-logo-placeholder .icon {
    width: 32px;
    height: 32px;
    opacity: 0.5;
}

.product-title {
    margin: 4px 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--text), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-code {
    margin: 2px 0 0;
    font-size: 14px;
    line-height: 1.2;
    color: rgba(255,255,255,0.7);
    text-align: left;
}

.product-code code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
}

.product-description {
    line-height: 1.6;
    font-size: 15px;
}
