/* --- PAGINA DETTAGLIO PRODOTTO (Singolo) --- */
.productdetails-view .product-fields-title, 
.productdetails-view h1, 
.vm-product-details-title h1,
.productdetails-view .vm-product-details-title h1 {
    font-size: 24px !important;       /* Dimensione del titolo (puoi aumentarla o diminuirla) */
    color: #006400 !important;         /* Blu scuro intenso (cambia in #0000ff se vuoi un blu primario) */
    font-weight: 700 !important;       /* Testo in grassetto */
    font-style: normal !important;
}

/* --- PAGINA CATEGORIA PRODOTTI (Vetrina/Griglia) --- */
.category-view .product .vm-product-title h2,
.category-view .product h2 a,
.category-view .vm-product-title h2 a {
    font-size: 16px !important;       /* Dimensione del titolo nella griglia */
    color: #006400 !important;         /* Stesso blu del dettaglio */
    font-weight: 700 !important;       /* Testo in grassetto */
    text-decoration: none !important;  /* Rimuove l'eventuale sottolineatura del link */
}
/* --- DESCRIZIONE DETTAGLIATA (Nella pagina del singolo prodotto) --- */
.productdetails-view .product-description, 
.productdetails-view .vm-product-desc,
.productdetails-view .product-description p {
    font-size: 16px !important;       /* Dimensione del testo della descrizione */
    color: #444444 !important;         /* Colore del testo (Grigio scuro, molto leggibile) */
    line-height: 1.6 !important;       /* Spaziatura tra le righe per facilitare la lettura */
}

/* --- DESCRIZIONE BREVE (Se usata nella pagina prodotto o nella griglia) --- */
.productdetails-view .product-short-description,
.category-view .product .vm-product-short-desc,
.category-view .product .product-short-description {
    font-size: 16px !important;       /* Dimensione della descrizione breve */
    color: #666666 !important;         /* Colore grigio leggermente più chiaro */
    line-height: 1.5 !important;
}
/* --- TITOLI DELLE CATEGORIE PRINCIPALI --- */
.category-view h2, 
.vm-category-title,
.category-view .category .vm-category-title h2 a {
    font-family: 'Open Sans', sans-serif !important; /* Sostituisci 'Open Sans' con il font che preferisci */
    font-size: 16px !important;                      /* Dimensione del titolo categoria */
    font-weight: 700 !important;                      /* Grassetto */
    color: #006400 !important;                        /* Colore blu coerente con i prodotti */
}

/* --- TITOLI DELLE SOTTOCATEGORIE --- */
.vm-subcategories h3, 
.vm-subcategory-title,
.vm-subcategories .subcategory h3 a {
    font-family: 'Open Sans', sans-serif !important; /* Usa lo stesso font o uno abbinato */
    font-size: 14px !important;                      /* Dimensione leggermente più piccola per le sottocategorie */
    font-weight: 600 !important;                      /* Semigrassetto */
    color: #006400 !important;                        /* Colore dei link sottocategorie */
    text-decoration: none !important;
}

/* --- EFFETTO AL PASSAGGIO DEL MOUSE (HOVER) --- */
.category-view .category h2 a:hover, 
.vm-subcategories .subcategory h3 a:hover {
    color: #ff5733 !important;                        /* Il colore cambia (es. arancione/rosso) quando ci si passa sopra */
}


