/* =====================================================
   GRACE IVOIRE — main.css
   Couleurs : Orange #ff7a00 | Blanc #fff | Vert #00c853
   Or : #d4af37 | Background : #000 / #0b0b0b
===================================================== */

/* =====================================================
   RESET GLOBAL
===================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   BARRE D'ANNONCE — DÉFILANTE
===================================================== */
.gi-announce {
  background: #111;
  border-bottom: 1px solid rgba(212, 175, 55, .25);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gi-announce-track {
  flex: 1;
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.gi-announce-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  color: #ccc;
  line-height: 44px;
  animation: gi-marquee 25s linear infinite;
  /* Démarre hors écran à droite */
  will-change: transform;
}

.gi-announce-inner strong { color: #d4af37; }

.gi-announce-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00c853;
  margin: 0 6px;
  vertical-align: middle;
}

@keyframes gi-marquee {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.gi-announce-close {
  background: none;
  border: none;
  color: #777;
  font-size: 18px;
  cursor: pointer;
  padding: 0 12px;
  height: 100%;
  flex-shrink: 0;
  line-height: 1;
  transition: color .2s;
}

.gi-announce-close:hover { color: #fff; }

/* =====================================================
   HEADER GLOBAL
===================================================== */
.gi-header {
  background: #000;
  border-bottom: 1px solid rgba(255, 165, 0, .2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease;
}

.gi-header.is-scrolled {
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
}

/* =====================================================
   DESKTOP CONTAINER
===================================================== */
.gi-container {
  width: min(95%, 1400px);
  margin: 0 auto;
  padding: 0 40px;
  height: 120px; /* hauteur FIXE — ne change jamais */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gi-header.is-scrolled .gi-container {
  height: 120px; /* identique — aucune animation */
}

/* =====================================================
   BRAND — logo au-dessus du texte
===================================================== */
.gi-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gi-brand-link {
  display: flex;
  flex-direction: column; /* logo DESSUS, texte DESSOUS */
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.gi-logo-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gi-logo-img {
  height: 80px;
  max-height: 80px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* is-scrolled : strictement identique */
.gi-header.is-scrolled .gi-logo-img {
  height: 80px;
  max-height: 80px;
}

.gi-logo-text {
  display: flex;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.gi-grace { color: #ff7a00; }
.gi-ivo   { color: #ffffff; margin: 0 2px; }
.gi-ire   { color: #00c853; }

/* =====================================================
   NAVIGATION DESKTOP
===================================================== */
.gi-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.gi-menu {
  list-style: none !important;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.gi-menu li {
  list-style: none !important;
}

.gi-menu li::before,
.gi-menu li::marker {
  content: none !important;
  display: none !important;
}

.gi-menu li a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  transition: color .3s ease;
}

.gi-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #d4af37;
  border-radius: 2px;
  transition: width .3s ease;
}

.gi-menu li a:hover::after,
.gi-menu li.current-menu-item a::after {
  width: 70%;
}

.gi-menu li.current-menu-item > a {
  color: #d4af37;
}

/* Couleurs icônes nav */
.gi-menu li:nth-child(1) a i { color: #ff7a00; }
.gi-menu li:nth-child(2) a i { color: #ffffff; }
.gi-menu li:nth-child(3) a i { color: #00c853; }
.gi-menu li:nth-child(4) a i { color: #ff7a00; }
.gi-menu li:nth-child(5) a i { color: #ffffff; }
.gi-menu li:nth-child(6) a i { color: #00c853; }
.gi-menu li:nth-child(7) a i { color: #ff7a00; }

.gi-menu li a i {
  font-size: 14px;
  transition: transform .3s ease;
}

.gi-menu li a:hover i {
  transform: scale(1.15);
}

/* =====================================================
   ACTIONS DESKTOP
===================================================== */
.gi-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gi-iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}

.gi-iconbtn:hover {
  border-color: #ff7a00;
  color: #ff7a00;
  transform: translateY(-2px);
}

/* Badge panier */
.gi-badge,
.gi-cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #d4af37;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 1.5px solid #000;
}
/* Bouton RDV — or/doré texte noir */
.gi-rdv {
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #000 !important;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 14px rgba(212, 175, 55, .25);
}

.gi-rdv:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, .45);
}

/* =====================================================
   SEARCH PANEL DESKTOP
===================================================== */
.gi-search-panel {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
  transform: translateY(-20px);
}

.gi-search-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gi-search-box {
  width: min(700px, 90%);
  position: relative;
}

.gi-search-input {
  width: 100%;
  padding: 18px 20px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}

.gi-search-input:focus {
  border-color: #d4af37;
}

.gi-search-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.gi-live-results {
  width: min(700px, 90%);
  margin-top: 25px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .08);
  max-height: 420px;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .7);
}

.gi-live-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  align-items: center;
  transition: .2s;
}

.gi-live-item:hover { background: #111; }

.gi-live-thumb img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.gi-live-content { display: flex; flex-direction: column; }
.gi-live-title   { font-size: 14px; font-weight: 600; }
.gi-live-price   { font-size: 13px; color: #d4af37; }
.gi-live-type    { font-size: 11px; opacity: .6; }

/* Desktop >= 992 : cache le mobile */
@media (min-width: 992px) {
  .gi-mobile-header,
  .gi-mobile-overlay,
  .gi-mobile-drawer {
    display: none !important;
  }
}

/* =====================================================
   HERO
===================================================== */
.gi-hero {
  padding: 140px 20px 160px;
  text-align: center;
  background: #000;
}

.gi-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.gi-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #ff9900, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.gi-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.gi-hero a {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 4px;
  transition: all .3s ease;
}

.gi-hero a:hover { color: #ffd700; }

/* =====================================================
   SECTIONS
===================================================== */
.gi-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.gi-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #d4af37;
}

/* =====================================================
   SERVICES GRID
===================================================== */
.gi-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gi-service-card {
  background: #000;
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 12px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}

.gi-service-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

/* =====================================================
   BLOG
===================================================== */
.gi-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.gi-blog-card {
  background: #000;
  border: 1px solid rgba(212, 175, 55, .2);
  padding: 20px;
  border-radius: 12px;
  transition: transform .3s ease, border-color .3s ease;
}

.gi-blog-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.gi-blog-card h2 { color: #d4af37; }

/* =====================================================
   CONTACT
===================================================== */
.gi-contact-section { padding: 80px 20px; }

.gi-contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gi-contact-form input,
.gi-contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.gi-contact-form button {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}

.gi-contact-form button:hover { background: #ffb800; }

/* =====================================================
   PAGE PRESTATIONS
===================================================== */
.prestations-page    { padding-bottom: 100px; }

.prestations-hero {
  text-align: center;
  padding: 100px 20px 70px;
}

.prestations-hero h1 {
  font-size: 46px;
  color: #d4af37;
  margin-bottom: 15px;
}

.section-head {
  text-align: center;
  margin: 80px auto 40px;
}

.section-head h2 {
  font-size: 38px;
  color: #d4af37;
  margin-bottom: 12px;
}

.prestations-grid,
.soins-grid {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.soin-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(212, 175, 55, .25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
  transition: transform .4s ease, box-shadow .4s ease;
}

.soin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, .18);
}

.soin-image {
  position: absolute;
  inset: 0;
}

.soin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.soin-card:hover img { transform: scale(1.05); }

.soin-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.4), transparent);
}

.soin-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #d4af37;
}

.soin-btn {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  opacity: .85;
}

.soin-card:hover .soin-btn { opacity: 1; }

/* =====================================================
   PAGE RDV
===================================================== */
.rdv-section {
  background: #000;
  padding: 100px 20px;
  text-align: center;
}

.rdv-container {
  max-width: 1100px;
  margin: 0 auto;
}

.rdv-title {
  font-size: 38px;
  margin-bottom: 45px;
  color: #d4af37;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gi-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.gi-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #00c896;
  box-shadow: 0 0 0 0 rgba(0, 200, 150, .6);
  animation: pulseDot 1.8s infinite;
}

.gi-dot-closed {
  background: #ff6b6b;
  box-shadow: none;
  animation: none;
}

.gi-status-open {
  background: linear-gradient(45deg, #00c896, #00b894);
  color: #fff;
}

.gi-status-closed {
  background: linear-gradient(45deg, #ff6b6b, #e84118);
  color: #fff;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(0, 200, 150, .6); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 200, 150, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0); }
}

.rdv-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
  flex-wrap: wrap;
  margin: 15px 0 60px;
}

.rdv-card {
  width: 320px;
  background: linear-gradient(145deg, #000, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.rdv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, .45);
}

.rdv-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.rdv-svg {
  width: 40px;
  height: 40px;
  fill: #d4af37;
  transition: transform .35s ease;
}

.whatsapp-svg { fill: #25D366; }

.rdv-card:hover .rdv-svg {
  transform: scale(1.12) rotate(6deg);
}

.rdv-btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  min-width: 220px;
}

.rdv-btn-phone {
  background: #ff7a00;
  color: #fff;
}

.rdv-btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(255, 122, 0, .45);
}

.rdv-btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.rdv-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(37, 211, 102, .45);
}

.rdv-form-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(145deg, #000, #0a0a0a);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
  text-align: left;
}

.rdv-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.rdv-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #000;
  color: #fff;
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.rdv-form input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, .25);
  outline: none;
}

.rdv-submit {
  grid-column: span 2;
  background: #d4af37;
  color: #000;
  padding: 18px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.rdv-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(212, 175, 55, .45);
}

/* =====================================================
   RÉALISATIONS
===================================================== */
.gi-real-section {
  padding: 120px 20px;
  background: #000;
  text-align: center;
}

.gi-real-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gi-real-title {
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.gi-real-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1100px) {
  .gi-real-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

.gi-real-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gi-real-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(212, 175, 55, .18);
}

.gi-real-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1100px) {
  .gi-real-item img { height: 320px; }
}

/* =====================================================
   TRESSES / COIFFURES PAGE
===================================================== */
.tresses-section {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
}

.tresses-header {
  text-align: left;
  margin-bottom: 25px;
}

.tresses-header h1 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 6px;
}

.tresses-header .subtitle {
  color: #bbb;
  font-size: 14px;
}

.tresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: auto;
}

@media (min-width: 1100px) {
  .tresses-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}

.tresse-card {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .25);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.tresse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.tresse-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.tresse-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tresse-body {
  padding: 14px;
  text-align: center;
}

.tresse-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tresse-meta {
  font-size: 13px;
  color: #bbb;
}

.tresse-open {
  display: inline-block;
  margin-top: 6px;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
}

.tresse-open:hover {
  background: #d4af37;
  color: #000;
}

/* =====================================================
   LIGHTBOX
===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active { display: flex; }

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-swiper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.swiper-slide img,
.swiper-slide video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: .9;
}

.lightbox-footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-rdv {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.btn-rdv:hover { background: #e5c158; }

/* =====================================================
   GALERIE HOME
===================================================== */
.home-galerie-preview {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.home-galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.home-galerie-item {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.home-galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.home-galerie-item:hover img { transform: scale(1.05); }

.home-galerie-btn {
  text-align: center;
  margin-top: 20px;
}

/* =====================================================
   RESPONSIVE DESKTOP
===================================================== */
@media (max-width: 1100px) {
  .gi-contact-container { grid-template-columns: 1fr; }
  .gi-container         { padding: 20px; }
}

@media (max-width: 1000px) {
  .prestations-grid,
  .soins-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .prestations-grid,
  .soins-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .rdv-form          { grid-template-columns: 1fr; }
  .rdv-submit        { grid-column: span 1; }
  .rdv-form-container{ padding: 34px 22px; }
  .rdv-card          { width: min(340px, 100%); }
}

@media (max-width: 991px) {
  .gi-nav { display: none; }
}

img {
    width: 100%;
    height: auto;
    image-rendering: auto;
}

.gi-product-image img,
.gi-gallery img,
.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {

img {
    max-width: 100%;
    height: auto;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
}

}