body {
    --wpadminbar-height: 0px;

    /* Colors */
    --header-overlay: rgba(74, 33, 34, 0.55);
    --color-white: #fff;
    --color-red: #4A2122;
    --color-bg: #FFF9EF;

    /* Rayon d'arrondi commun à tous les boutons */
    --btn-radius: 8px;

    /* Intensité du zoom des bouteilles au survol (toutes les cartes) */
    --bottle-hover-scale: 1.2;

    /* Typographie commune des cartes bouteilles (liste, section, slider) —
       même taille de titre que les cartes du détail d'une cuvée. */
    --bottle-card-title-size: clamp(1.125rem, 1.5vw, 1.75rem);
    --bottle-card-subtitle-size: clamp(0.75rem, 0.781vw, 0.9375rem);

    background-color: var(--color-bg);
}

/* Mobile / appareils tactiles : pas de zoom des bouteilles au survol
   (le hover est « collant » sur écran tactile). scale(1) = aucun effet. */
@media (max-width: 767px), (hover: none) {
    body {
        --bottle-hover-scale: 1;
    }
}

/* Arrondi des boutons non stylés par défaut (recherche, formulaires CF7) */
.search-submit,
.wpcf7-submit {
    border-radius: var(--btn-radius);
}

body.admin-bar {
    --wpadminbar-height: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        --wpadminbar-height: 46px;
    }
}

body main {
    min-height: 500px;
    margin: 5vh 0;

    h1 {
        display: none;
    }
}

/* Mobile : < 900px */
@media screen and (max-width: 900px) {
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open main {
        margin-top: var(--app-height, 100vh);
    }
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed;
    }
}

/* Contenu des pages texte (mentions légales, CGV, politique de confidentialité…).
   Cible uniquement les blocs Gutenberg « core » (paragraphe / titre) rendus
   en enfants directs de .entry-content — les pages à blocs custom ne sont pas affectées. */
.entry-content > p,
.entry-content > .wp-block-heading {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
    box-sizing: border-box;
    color: var(--color-red);
}

.entry-content > p {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Justification du corps de texte des blocs éditoriaux (content-bottle).
   text-align se transmet aux <p> internes de .description. */
.wp-block-domainegregoire-content-bottle .description,
.wp-block-domainegregoire-content-bottle-360 .description {
    text-align: justify;
}

.entry-content > .wp-block-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
