/*
Theme Name: Emilie Gombert
Theme URI: https://emiliegombertceramic.fr
Author: Capucine Dublanchet
Description: Theme WordPress sur mesure pour le site vitrine d'Émilie Gombert, céramiste artisanale dans le Perche.
Version: 2.0
Text Domain: emilie-gombert
*/

/* ============================================================
   ÉMILIE GOMBERT — Feuille de styles principale
   Capucine — Juin 2026
   ============================================================ */


/* ============================================================
   1. IMPORTS & VARIABLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Raleway:wght@300;400&display=swap');

:root {
  --serif   : 'Cormorant Garamond', Georgia, serif;
  --sans    : 'Raleway', Arial, sans-serif;
  --black   : #1a1a1a;
  --grey    : #888888;
  --light   : #aaaaaa;
  --ultra   : #777777;
  --rule    : #ebebeb;
  --ph      : #ede9e3;
  --ph-dark : #d8d3cc;
}


/* ============================================================
   2. RESET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--black);
  background: #fff;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; }


/* ============================================================
   3. GLOBAL
   ============================================================ */

.ph {
  background: var(--ph);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph img { width: 100%; height: 100%; object-fit: cover; }

.rule { border: none; border-top: 1px solid var(--rule); }

.section-label {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ultra);
  margin-bottom: 18px;
}

.cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: opacity .2s;
}
.cta:hover { opacity: .5; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; }

.client-note {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .1em;
  color: #c8bfb6;
  text-transform: uppercase;
  margin-top: 8px;
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 28px; height: 28px; object-fit: contain; display: block; }
.nav-brand svg { flex-shrink: 0; }
.nav-brand-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--black);
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ultra);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a { color: var(--black); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: var(--black);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 57px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  z-index: 99;
  padding: 24px 32px 28px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--sans); font-weight: 300; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--grey); }


/* ============================================================
   5. FOOTER
   ============================================================ */

.site-footer { border-top: 1px solid var(--rule); background: #fff; padding: 30px 48px 26px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand svg { flex-shrink: 0; }
.footer-brand-text {
  font-family: var(--serif); font-weight: 300; font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--black);
}
.footer-brand-text span {
  display: block; font-family: var(--sans); font-weight: 300; font-size: 9px;
  letter-spacing: .1em; color: var(--ultra); margin-top: 3px;
}

.footer-insta {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-weight: 300; font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--grey); transition: color .2s;
}
.footer-insta:hover { color: var(--black); }
.footer-insta svg { opacity: .6; }

.footer-email {
  font-family: var(--sans); font-weight: 300; font-size: 9px;
  letter-spacing: .1em; color: var(--ultra); transition: color .2s;
}
.footer-email:hover { color: var(--black); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #f5f5f5; padding-top: 16px;
}
.footer-copy { font-family: var(--sans); font-weight: 300; font-size: 9px; letter-spacing: .06em; color: #ccc; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a {
  font-family: var(--sans); font-weight: 300; font-size: 9px;
  letter-spacing: .06em; color: #ccc;
  border-bottom: 1px solid #eee; padding-bottom: 1px; transition: color .2s;
}
.footer-legal a:hover { color: var(--grey); }


/* ============================================================
   6. PAGE : ACCUEIL
   ============================================================ */

.hero { position: relative; height: 600px; background: var(--ph); overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; }

.home-intro { text-align: center; padding: 72px 80px 60px; }
.home-intro h1 {
  font-family: var(--serif); font-weight: 300; font-size: 56px;
  line-height: 1.1; color: var(--black); margin-bottom: 22px;
}
.home-intro .tagline {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 16px; line-height: 1.6; color: var(--grey);
  margin-bottom: 36px; max-width: 360px; margin-left: auto; margin-right: auto;
}

.home-preview { border-top: 1px solid var(--rule); }
.home-preview .ph { aspect-ratio: 4/5; height: auto; border-right: none; }

.home-expo { text-align: center; padding: 44px 80px 48px; }
.home-expo .expo-next {
  font-family: var(--serif); font-weight: 300; font-size: 16px;
  color: var(--black); margin-bottom: 14px;
}


/* ============================================================
   7. PAGE : GALERIE
   ============================================================ */

.gallery-header { text-align: center; padding: 60px 40px 12px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 40px 64px;
}

.gallery-item {
  cursor       : pointer;
  overflow     : hidden;
  aspect-ratio : 4 / 5;
}

.gallery-item .ph {
  width      : 100%;
  height     : 100%;
  transition : opacity .25s;
}

.gallery-item:hover .ph { opacity : .85; }

.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.88); z-index: 200;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 80vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 28px; right: 36px;
  font-family: var(--sans); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); transition: color .2s;
}
.lightbox-close:hover { color: #fff; }


/* ============================================================
   8. PAGE : À PROPOS
   ============================================================ */

.about-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.about-photo { min-height: 520px; }

.about-text {
  padding: 72px 56px 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: justify;
}
.about-text h1 {
  font-family: var(--serif); font-weight: 300; font-size: 34px;
  line-height: 1.2; color: var(--black); margin-bottom: 6px;
}
.about-text .about-sub {
  font-family: var(--sans); font-weight: 300; font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ultra); margin-bottom: 28px;
}
.about-text p {
  font-family: var(--sans); font-weight: 300; font-size: 13px;
  line-height: 1.9; color: var(--grey); margin-bottom: 16px;
}

.about-photos { border-top: 1px solid var(--rule); }
.about-photos .ph { height: 240px; border-right: 1px solid var(--rule); }
.about-photos .ph:last-child { border-right: none; }

.about-quote { text-align: center; padding: 48px 100px; border-top: 1px solid var(--rule); }
.about-quote blockquote {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 20px; line-height: 1.6; color: #bbb; max-width: 500px; margin: 0 auto;
}

/* Cache la colonne gauche si la photo portrait est vide */
.about-photo:not(:has(img)) {
  display : none;
}

.about-photo:not(:has(img)) + .about-text {
  grid-column : 1 / -1;
  padding     : 72px 80px;
}

/* ============================================================
   9. PAGE : NEWS
   ============================================================ */

.news-wrap { padding: 64px 80px 80px; max-width: 720px; margin: 0 auto; }
.expo-list { margin-top: 8px; }

.expo-item {
  display: flex; gap: 28px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid #f5f5f5;
}
.expo-item:last-child { border-bottom: none; }
.expo-date {
  font-family: var(--sans); font-weight: 300; font-size: 10px;
  letter-spacing: .1em; color: var(--ultra); min-width: 120px; flex-shrink: 0;
}
.expo-title {
  font-family: var(--serif); font-weight: 300; font-size: 16px;
  line-height: 1.4; color: var(--black); margin-bottom: 4px;
}
.expo-lieu {
  font-family: var(--sans); font-weight: 300; font-size: 10px;
  letter-spacing: .08em; color: var(--light);
}

.news-contact { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--rule); }
.news-contact p {
  font-family: var(--sans); font-weight: 300; font-size: 12px;
  line-height: 1.8; color: var(--grey); margin-bottom: 16px;
}

/* Flyer pleine page quand pas d'expos */
.news-flyer-wrap { display: flex; justify-content: center; padding: 8px 0 48px; }
.news-flyer-img { max-width: 420px; width: 100%; height: auto; display: block; }


/* ============================================================
   PAGE : BOUTIQUE — Entrée (2 images)
   ============================================================ */

.boutique-entry {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 60px;
  padding               : 32px 48px;
  background            : #fff;
}

.boutique-cat {
  position       : relative;
  overflow       : hidden;
  display        : flex;
  flex-direction : column;
  cursor         : pointer;
  aspect-ratio   : 3 / 4;
}

.boutique-cat-overlay {
  position   : relative;
  z-index    : 2;
  padding    : 0 0 24px 0;
  background : transparent;
  text-align : left;
}

.boutique-cat-price {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .2em;
  text-transform : uppercase;
  color          : var(--grey);
  margin-bottom  : 6px;
}

.boutique-cat-title {
  font-family    : var(--serif);
  font-weight    : 300;
  font-size      : 26px;
  color          : var(--black);
  letter-spacing : .02em;
  margin-bottom  : 12px;
}

.boutique-cat-cta {
  display        : inline-block;
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .22em;
  text-transform : uppercase;
  color          : var(--black);
  border-bottom  : 1px solid var(--black);
  padding-bottom : 2px;
}

.boutique-cat-img {
  flex       : 1;
  overflow   : hidden;
  transition : transform .6s ease;
}

.boutique-cat:hover .boutique-cat-img {
  transform : scale(1.03);
}

.boutique-cat-img img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
}

.boutique-cat:first-child {
  border-right : none;
}


/* ============================================================
   PAGE : BOUTIQUE — En-tête sous-pages (utilitaires / exceptionnelles)
   ============================================================ */

.boutique-sub-nav {
  padding : 28px 48px 0;
}

.boutique-back {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 11px;
  letter-spacing : .18em;
  text-transform : uppercase;
  color          : var(--ultra);
  transition     : color .2s;
}
.boutique-back:hover { color : var(--black); }

h1.boutique-sub-title {
  display      : block;
  width        : 100%;
  font-family  : var(--serif);
  font-weight  : 300;
  font-size    : 38px;
  color        : var(--black);
  text-align   : center;
  padding      : 32px 40px 0;
  line-height  : 1.2;
}

/* ============================================================
   PAGE : SHOP / BOUTIQUE — Grille des pièces
   ============================================================ */

.shop-header {
  text-align : center;
  padding    : 60px 80px 0;
}

.shop-header p {
  font-family   : var(--sans);
  font-weight   : 300;
  font-size     : 12px;
  line-height   : 1.8;
  color         : var(--light);
  max-width     : 420px;
  margin        : 0 auto 48px;
}

.shop-header p a {
  color        : var(--black);
  border-bottom: 1px solid var(--black);
}

.shop-grid {
  display               : grid;
  grid-template-columns : repeat(3, 1fr);
  gap                   : 20px;
  padding               : 0 48px 72px;
}

.shop-item.hidden { display : none; }

.shop-item .ph {
  aspect-ratio  : 4 / 5;
  height        : auto;
  margin-bottom : 14px;
  transition    : opacity .25s;
}

.shop-item:hover .ph { opacity : .85; }

.shop-price {
  font-family   : var(--serif);
  font-weight   : 300;
  font-size     : 20px;
  color         : var(--black);
  margin-bottom : 5px;
}

.shop-name {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 10px;
  letter-spacing : .08em;
  color          : var(--light);
}

.shop-note {
  text-align     : center;
  padding        : 0 40px 40px;
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 10px;
  letter-spacing : .1em;
  text-transform : uppercase;
  color          : #ccc;
}

.shop-item.is-vendue {
  cursor : default;
}

.shop-item.is-vendue .ph {
  pointer-events : none;
}

.vendue-badge {
  display        : inline-block;
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .18em;
  text-transform : uppercase;
  color          : var(--light);
  margin-bottom  : 6px;
}



/* ============================================================
   MODAL FICHE PRODUIT
   ============================================================ */

.product-modal {
  display         : none;
  position        : fixed;
  inset           : 0;
  background      : rgba(0,0,0,.75);
  z-index         : 200;
  align-items     : center;
  justify-content : center;
  padding         : 20px;
}

.product-modal.open { display : flex; }

.modal-inner {
  background            : #fff;
  display               : grid;
  grid-template-columns : 1fr 1fr;
  width                 : 100%;
  max-width             : 820px;
  max-height            : 90vh;
  overflow              : hidden;
  position              : relative;
}

.modal-photo-wrap {
  position : relative;
  overflow : hidden;
}

.modal-photo {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  display    : block;
  transition : opacity .25s ease;
}

.modal-photo.fading { opacity : 0; }

.modal-prev,
.modal-next {
  position        : absolute;
  top             : 50%;
  transform       : translateY(-50%);
  z-index         : 10;
  width           : 36px;
  height          : 36px;
  background      : rgba(255,255,255,.85);
  border          : none;
  cursor          : pointer;
  display         : flex;
  align-items     : center;
  justify-content : center;
  font-family     : var(--serif);
  font-size       : 22px;
  color           : var(--black);
  transition      : background .2s;
  line-height     : 1;
}

.modal-prev { left  : 10px; }
.modal-next { right : 10px; }
.modal-prev:hover,
.modal-next:hover { background : #fff; }
.modal-prev[hidden],
.modal-next[hidden] { display : none; }

.modal-dots {
  position  : absolute;
  bottom    : 10px;
  left      : 50%;
  transform : translateX(-50%);
  display   : flex;
  gap       : 6px;
  z-index   : 10;
}

.modal-dot {
  width         : 6px;
  height        : 6px;
  border-radius : 50%;
  background    : rgba(255,255,255,.5);
  border        : none;
  cursor        : pointer;
  padding       : 0;
  transition    : background .2s, transform .2s;
}

.modal-dot.active {
  background : #fff;
  transform  : scale(1.2);
}

.modal-details {
  padding        : 52px 44px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  overflow-y     : auto;
}

.modal-titre {
  font-family   : var(--serif);
  font-weight   : 300;
  font-size     : 24px;
  color         : var(--black);
  margin-bottom : 10px;
}

.modal-prix {
  font-family   : var(--serif);
  font-weight   : 300;
  font-size     : 28px;
  color         : var(--black);
  margin-bottom : 32px;
}

.modal-section-label {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .22em;
  text-transform : uppercase;
  color          : var(--ultra);
  display        : block;
  margin-bottom  : 8px;
}

.modal-dimensions-val,
.modal-entretien-val {
  font-family   : var(--sans);
  font-weight   : 300;
  font-size     : 12px;
  line-height   : 1.8;
  color         : var(--grey);
  margin-bottom : 28px;
}


/* ============================================================
   À ajouter dans style.css — après .modal-entretien-val
   ============================================================ */

/* Quantité disponible dans la modal */
.modal-quantite-val {
  font-family   : var(--sans);
  font-weight   : 300;
  font-size     : 12px;
  line-height   : 1.8;
  color         : var(--grey);
  margin-bottom : 28px;
}

.modal-infos-sup {
  font-family   : var(--sans);
  font-weight   : 300;
  font-size     : 12px;
  line-height   : 1.8;
  color         : var(--grey);
  margin-bottom : 28px;
}

/* ============================================================
   Stockists — mettre à jour dans style.css
   ============================================================ */

.stockists-points {
  width      : 100%;
  max-width  : 480px;
  margin     : 0 auto;
  text-align : left;
}


.modal-unicite {
  font-family   : var(--sans);
  font-style    : italic;
  font-weight   : 300;
  font-size     : 11px;
  line-height   : 1.7;
  color         : var(--ultra);
  margin-bottom : 24px;
  margin-top    : -8px;
}

.modal-close {
  position       : absolute;
  top            : 18px;
  right          : 22px;
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .2em;
  text-transform : uppercase;
  color          : var(--ultra);
  cursor         : pointer;
  transition     : color .2s;
  background     : none;
  border         : none;
  z-index        : 10;
}

.modal-close:hover { color : var(--black); }


/* ============================================================
   RESPONSIVE BOUTIQUE
   ============================================================ */

@media (max-width: 768px) {
  .boutique-entry {
    grid-template-columns : 1fr;
    height                : auto;
  }
  .boutique-cat {
    height : 60vh;
  }
  .boutique-cat:first-child {
    border-right  : none;
    border-bottom : 1px solid var(--rule);
  }
  .boutique-cat-overlay {
    padding : 24px 24px 20px;
  }
  .boutique-sub-header {
    padding : 20px 24px 0;
  }
  .shop-grid {
    grid-template-columns : repeat(2, 1fr);
    gap                   : 14px;
    padding               : 0 20px 48px;
  }
  .modal-inner {
    grid-template-columns : 1fr;
    max-height            : 92vh;
    overflow-y            : auto;
  }
  .modal-photo-wrap { height : 280px; }
  .modal-details    { padding : 32px 24px; }
}

/* ============================================================
   11. PAGE : CONTACT
   ============================================================ */

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.contact-photo { min-height: 500px; }
.contact-form-wrap { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-wrap h1 { font-family: var(--serif); font-weight: 300; font-size: 30px; line-height: 1.2; color: var(--black); margin-bottom: 6px; }
.contact-form-wrap .contact-sub { font-family: var(--sans); font-weight: 300; font-size: 12px; line-height: 1.8; color: var(--light); margin-bottom: 36px; }
.contact-form .field {
  width: 100%; display: block; background: transparent;
  border: none; border-bottom: 1px solid #e0e0e0;
  padding: 10px 0; margin-bottom: 18px;
  font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--black);
  outline: none; transition: border-color .2s;
}
.contact-form .field:focus { border-bottom-color: var(--black); }
.contact-form .field::placeholder { color: #d0cdc9; letter-spacing: .06em; }
.contact-form textarea.field { resize: none; height: 90px; }
.contact-email { display: block; margin-top: 32px; font-family: var(--sans); font-weight: 300; font-size: 10px; letter-spacing: .1em; color: var(--ultra); }

/* Contact Form 7 */
.wpcf7-form { width: 100%; }
.wpcf7-form p { margin: 0; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%; display: block; background: transparent;
  border: none; border-bottom: 1px solid #e0e0e0;
  padding: 10px 0; margin-bottom: 18px;
  font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--black);
  outline: none; transition: border-color .2s;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus { border-bottom-color: var(--black); }
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: #d0cdc9; letter-spacing: .06em; }
.wpcf7-form textarea { resize: none; height: 90px; }
.wpcf7-form input[type="submit"] {
  display: inline-block; font-family: var(--sans); font-weight: 300; font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--black);
  background: transparent; border: none; border-bottom: 1px solid var(--black);
  padding: 0 0 3px; cursor: pointer; transition: opacity .2s;
}
.wpcf7-form input[type="submit"]:hover { opacity: .5; }
.wpcf7-not-valid-tip { font-family: var(--sans); font-size: 10px; color: #c0392b; margin-top: -14px; margin-bottom: 12px; display: block; }
.wpcf7-response-output { font-family: var(--sans); font-size: 11px; color: var(--grey); border: 1px solid var(--rule) !important; border-radius: 0 !important; padding: 12px 14px !important; margin-top: 16px !important; }
.wpcf7-spinner { margin-left: 10px; }


/* ============================================================
   12. PAGES LÉGALES
   ============================================================ */

.legal-wrap { max-width: 680px; margin: 0 auto; padding: 72px 40px 96px; }
.legal-wrap h1 { font-family: var(--serif); font-weight: 300; font-size: 32px; color: var(--black); margin-bottom: 48px; }
.legal-wrap h2 { font-family: var(--sans); font-weight: 300; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--ultra); margin-top: 40px; margin-bottom: 14px; }
.legal-wrap p, .legal-wrap li { font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 1.9; color: var(--grey); }
.legal-wrap ul { padding-left: 20px; list-style: disc; }
.legal-wrap a { color: var(--black); border-bottom: 1px solid var(--rule); }


/* ============================================================
   13. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .site-nav    { padding: 16px 32px; }
  .site-footer { padding: 28px 32px 24px; }
  .home-intro  { padding: 56px 48px 48px; }
  .home-expo   { padding: 36px 48px; }
  .news-wrap   { padding: 56px 48px; }
  .shop-header { padding: 52px 48px 0; }
  .about-text  { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { height: 360px; }
  .home-intro { padding: 44px 28px 40px; }
  .home-intro h1 { font-size: 38px; }
  .grid-2, .grid-3, .home-preview, .about-wrap, .about-photos, .contact-wrap { grid-template-columns: 1fr; }
  .home-preview .ph, .about-photos .ph { border-right: none; border-bottom: 1px solid var(--rule); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 20px 48px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0 20px 48px; }
  .about-photo, .contact-photo { min-height: 280px; }
  .about-text, .contact-form-wrap { padding: 40px 28px; }
  .about-quote { padding: 36px 28px; }
  .news-wrap { padding: 44px 24px 56px; }
  .expo-item { flex-direction: column; gap: 8px; }
  .site-footer { padding: 24px 24px 20px; }
  .footer-top { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .news-flyer-img { max-width: 100%; }
  .modal-inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .modal-photo-wrap { height: 280px; }
  .modal-details { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid, .shop-grid { grid-template-columns: 1fr; }
  .home-intro h1 { font-size: 32px; }
}


/* ============================================================
   ADDITIONS CSS â€” Ã€ ajouter dans style.css
   Capucine â€” Juillet 2026
   ============================================================ */


/* â”€â”€ Fix galerie : ratio sans positionnement absolu â”€â”€â”€â”€â”€â”€â”€ */

.gallery-item {
  cursor       : pointer;
  overflow     : hidden;
  aspect-ratio : 4 / 5;
}

.gallery-item .ph {
  width      : 100%;
  height     : 100%;
  transition : opacity .25s;
}

.gallery-item:hover .ph { opacity : .85; }


/* â”€â”€ Ã€ propos : deux photos carrÃ©es â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.about-photos-duo {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  border-top            : 1px solid var(--rule);
}

.about-photo-sq {
  aspect-ratio : 1 / 1;
  overflow     : hidden;
  border-right : 1px solid var(--rule);
}

.about-photo-sq:last-child {
  border-right : none;
}

.about-photo-sq img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
}


/* â”€â”€ Boutique â€” Page d'entrÃ©e (2 images cliquables) â”€â”€â”€â”€â”€â”€â”€â”€ */


/* â”€â”€ Boutique â€” En-tÃªte pages utilitaires/exceptionnelles â”€â”€ */

.boutique-sub-header {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  padding         : 28px 40px 0;
  max-width       : 900px;
  margin          : 0 auto;
}

.boutique-back {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .18em;
  text-transform : uppercase;
  color          : var(--ultra);
  transition     : color .2s;
}

.boutique-back:hover {
  color : var(--black);
}

.boutique-sub-header .section-label {
  margin-bottom : 0;
}


/* â”€â”€ Modal : slider multi-photos â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.modal-photo-wrap {
  position : relative;
  overflow : hidden;
}

/* FlÃ¨ches prev/next */
.modal-prev,
.modal-next {
  position    : absolute;
  top         : 50%;
  transform   : translateY(-50%);
  z-index     : 10;
  width       : 36px;
  height      : 36px;
  background  : rgba(255,255,255,.85);
  border      : none;
  cursor      : pointer;
  display     : flex;
  align-items : center;
  justify-content : center;
  font-family : var(--serif);
  font-size   : 22px;
  color       : var(--black);
  transition  : background .2s, opacity .2s;
  line-height : 1;
}

.modal-prev { left  : 10px; }
.modal-next { right : 10px; }

.modal-prev:hover,
.modal-next:hover {
  background : #fff;
}

/* Cache les flÃ¨ches si une seule photo */
.modal-prev[hidden],
.modal-next[hidden] {
  display : none;
}

/* Points de navigation */
.modal-dots {
  position  : absolute;
  bottom    : 10px;
  left      : 50%;
  transform : translateX(-50%);
  display   : flex;
  gap       : 6px;
  z-index   : 10;
}

.modal-dot {
  width         : 6px;
  height        : 6px;
  border-radius : 50%;
  background    : rgba(255,255,255,.5);
  border        : none;
  cursor        : pointer;
  padding       : 0;
  transition    : background .2s, transform .2s;
}

.modal-dot.active {
  background : #fff;
  transform  : scale(1.2);
}

/* Transition entre les photos */
.modal-photo {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  display    : block;
  transition : opacity .25s ease;
}

.modal-photo.fading {
  opacity : 0;
}


/* â”€â”€ Responsive boutique â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 768px) {
  .boutique-entry {
    grid-template-columns : 1fr;
    height                : auto;
  }
  .boutique-cat {
    height : 50vh;
  }
  .boutique-cat:first-child {
    border-right  : none;
    border-bottom : 1px solid rgba(255,255,255,.2);
  }
  .about-photos-duo {
    grid-template-columns : 1fr;
  }
  .about-photo-sq {
    border-right  : none;
    border-bottom : 1px solid var(--rule);
  }
  .boutique-sub-header {
    padding : 20px 24px 0;
  }
}

/* ── Pièces vendues ──────
/* Badge Vendue dans la modal */
.modal-vendue-badge {
  display        : inline-block;
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .2em;
  text-transform : uppercase;
  color          : var(--light);
  border         : 0.5px solid var(--light);
  padding        : 4px 10px;
  margin-bottom  : 24px;
}



/* ============================================================
   PAGE : STOCKISTS
   À coller dans style.css à la place de l'ancien .stockists-wrap
   ============================================================ */

/* Main qui prend toute la hauteur — footer collé en bas */
.stockists-main {
  min-height : calc(100vh - 57px - 110px);
  display    : flex;
  align-items: center;
  justify-content : center;
}

/* Version avec points de vente */
.stockists-wrap {
  padding   : 64px 80px;
  max-width : 680px;
  width     : 100%;
}

.stockists-list { margin-top : 8px; }

.stockist-item {
  padding       : 24px 0;
  border-bottom : 1px solid #f5f5f5;
}
.stockist-item:last-child { border-bottom : none; }

.stockist-header {
  display         : flex;
  align-items     : baseline;
  justify-content : space-between;
  margin-bottom   : 8px;
}

.stockist-nom {
  font-family : var(--serif);
  font-weight : 300;
  font-size   : 16px;
  color       : var(--black);
}

.stockist-link {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .16em;
  text-transform : uppercase;
  color          : var(--ultra);
  border-bottom  : 1px solid var(--ultra);
  padding-bottom : 1px;
  transition     : color .2s;
}
.stockist-link:hover { color : var(--black); }

.stockist-adresse {
  font-family   : var(--sans);
  font-weight   : 300;
  font-size     : 12px;
  line-height   : 1.8;
  color         : var(--grey);
  margin-bottom : 6px;
}

.stockist-desc {
  font-family : var(--sans);
  font-weight : 300;
  font-size   : 11px;
  line-height : 1.8;
  color       : var(--light);
  font-style  : italic;
}

/* Version vide — éditoriale */
.stockists-empty {
  text-align : center;
  padding    : 40px 24px;
}

.stockists-title {
  font-family    : var(--serif);
  font-weight    : 300;
  font-size      : 52px;
  line-height    : 1.15;
  color          : var(--black);
  letter-spacing : .02em;
  margin-bottom  : 24px;
}

.stockists-subtitle {
  font-family   : var(--sans);
  font-weight   : 300;
  font-size     : 13px;
  line-height   : 1.8;
  color         : var(--grey);
  margin-bottom : 28px;
  max-width     : 340px;
  margin-left   : auto;
  margin-right  : auto;
}

.stockists-email {
  display        : inline-block;
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 11px;
  letter-spacing : .14em;
  color          : var(--black);
  border-bottom  : 1px solid var(--black);
  padding-bottom : 3px;
  margin-bottom  : 48px;
  transition     : opacity .2s;
}
.stockists-email:hover { opacity : .5; }

.stockists-note {
  font-family    : var(--sans);
  font-weight    : 300;
  font-size      : 9px;
  letter-spacing : .2em;
  text-transform : uppercase;
  color          : var(--ultra);
}

@media (max-width: 768px) {
  .stockists-wrap  { padding : 44px 24px; }
  .stockists-title { font-size : 36px; }
}
