/* ══════════════════════════════════════════════
 * Carta dei Vini — Frontend CSS
 * Plugin: carta-vini v2.0.0
 * ══════════════════════════════════════════════ */

/* ── Base (struttura comune) ── */
.cv-wrap {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
    line-height: 1.5;
}

.cv-date {
    text-align: center;
    font-size: 0.85em;
    margin: 0 0 18px;
    letter-spacing: 0.5px;
}

.cv-gruppo {
    margin-bottom: 3rem;
}

.cv-gruppo-titolo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.cv-regioni-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
}

.cv-regione {
    break-inside: avoid;
}

.cv-regione-nome {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.3rem;
    margin-bottom: 0.6rem;
}

.cv-vino {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    gap: 0.8rem;
}

.cv-vino-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cv-vino-nome {
    font-size: 0.88rem;
    font-weight: bold;
    line-height: 1.35;
}

.cv-vino-prod {
    font-size: 0.78rem;
    font-style: italic;
}

.cv-vino-prezzo {
    font-size: 0.88rem;
    font-weight: bold;
    white-space: nowrap;
}

.cv-vuoto {
    font-style: italic;
    text-align: center;
}

/* ══════════════════════════════════════════════
 * Tema TRASPARENTE — eredita i colori dal sito
 * ══════════════════════════════════════════════ */
.cv-theme-transparent {
    background: transparent;
}

.cv-theme-transparent .cv-date {
    color: inherit;
    opacity: 0.65;
}

.cv-theme-transparent .cv-gruppo-titolo {
    color: inherit;
    opacity: 0.85;
    border-bottom: 2px solid currentColor;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cv-theme-transparent .cv-regione-nome {
    color: inherit;
    opacity: 0.75;
    border-bottom: 1px solid currentColor;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.cv-theme-transparent .cv-vino {
    color: inherit;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.cv-theme-transparent .cv-vino-prezzo {
    color: inherit;
    opacity: 0.85;
}

.cv-theme-transparent .cv-vino-prod {
    color: inherit;
    opacity: 0.6;
}

.cv-theme-transparent .cv-vuoto {
    color: inherit;
    opacity: 0.5;
}

/* ══════════════════════════════════════════════
 * Tema SFONDO SCURO
 * ══════════════════════════════════════════════ */
.cv-theme-dark {
    background: rgba(42, 35, 28, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #e8dcc8;
}

.cv-theme-dark .cv-date {
    color: #b8a88a;
}

.cv-theme-dark .cv-gruppo-titolo {
    color: #d4a944;
    border-bottom: 2px solid rgba(212, 169, 68, 0.35);
}

.cv-theme-dark .cv-regione-nome {
    color: #d4a944;
    border-bottom: 1px solid rgba(212, 169, 68, 0.25);
}

.cv-theme-dark .cv-vino {
    border-bottom: 1px dotted rgba(232, 220, 200, 0.15);
}

.cv-theme-dark .cv-vino-nome {
    color: #e8dcc8;
}

.cv-theme-dark .cv-vino-prod {
    color: #b8a88a;
}

.cv-theme-dark .cv-vino-prezzo {
    color: #d4a944;
}

.cv-theme-dark .cv-vuoto {
    color: #b8a88a;
}

/* ══════════════════════════════════════════════
 * Tema SFONDO CHIARO
 * ══════════════════════════════════════════════ */
.cv-theme-light {
    background: rgba(245, 240, 230, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #2c2418;
}

.cv-theme-light .cv-date {
    color: #8a7d6b;
}

.cv-theme-light .cv-gruppo-titolo {
    color: #a07d2e;
    border-bottom: 2px solid rgba(160, 125, 46, 0.3);
}

.cv-theme-light .cv-regione-nome {
    color: #a07d2e;
    border-bottom: 1px solid rgba(160, 125, 46, 0.2);
}

.cv-theme-light .cv-vino {
    border-bottom: 1px dotted rgba(44, 36, 24, 0.12);
}

.cv-theme-light .cv-vino-nome {
    color: #2c2418;
}

.cv-theme-light .cv-vino-prod {
    color: #6b5f4e;
}

.cv-theme-light .cv-vino-prezzo {
    color: #a07d2e;
}

.cv-theme-light .cv-vuoto {
    color: #8a7d6b;
}

/* ══════════════════════════════════════════════
 * Responsive
 * ══════════════════════════════════════════════ */
@media (max-width: 600px) {
    .cv-wrap {
        padding: 0.75rem 0.75rem;
    }
    .cv-regioni-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .cv-gruppo-titolo {
        font-size: 1.15rem;
    }
}
