/* ============================================
   AYB BARBER - STYLES CSS
   Thème : Noir & Or Premium
   ============================================ */

:root {
  --c-black: #0a0a0a;
  --c-dark: #111111;
  --c-dark-2: #1a1a1a;
  --c-dark-3: #222222;
  --c-gold: #c9a84c;
  --c-gold-light: #e4c76b;
  --c-gold-dark: #a8872e;
  --c-white: #ffffff;
  --c-gray: #888888;
  --c-gray-light: #cccccc;
  --c-red: #e74c3c;
  --c-green: #27ae60;
  --c-insta: #E1306C;
  --c-snap: #FFFC00;
}

/* 1. RESET & BASE */
html, body {
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  background-color: var(--c-black);
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--c-white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--c-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--c-gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-gold-light);
}

/* Container global */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 2. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--c-gray-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-gold);
  color: var(--c-black);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 1002;
}

.nav-cta:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0.5rem;
}

.hamburger .bar {
  width: 25px;
  height: 2px;
  background: var(--c-gold);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 3. HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.badge {
  display: inline-block;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--c-gold);
}

.hero-subtitle {
  color: var(--c-gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--c-gold);
  color: var(--c-black);
}

.btn-primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}

.btn-secondary:hover {
  background: var(--c-gold);
  color: var(--c-black);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* 4. SECTIONS GÉNÉRALES */
.section {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--c-gold);
}

.section-subtitle {
  color: var(--c-gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* 5. GALERIE PRESTATIONS */
.galerie {
  background: var(--c-black);
}

.prestations-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.prestations-carousel .carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
  pointer-events: none;
}

/* 6. ABOUT */
.about {
  background: var(--c-black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border: 2px solid var(--c-gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.2);
  aspect-ratio: 1;
  background: var(--c-dark-2);
}

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

.about-content .badge {
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--c-gold);
}

.about-content p {
  color: var(--c-gray-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  color: var(--c-gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--c-gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 7. AVIS CAROUSEL (CORRECTION CRITIQUE) */
.avis {
  background: var(--c-dark);
}

.avis .carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.avis .carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  touch-action: pan-y;
}

.avis-card {
  min-width: 100% !important;
  flex-shrink: 0 !important;
  padding: 0.5rem;
  box-sizing: border-box;
  width: 100%;
}

.avis-card-inner {
  background: var(--c-dark-2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.avis-card-inner::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--c-gold);
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.avis-stars {
  color: var(--c-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.avis-text {
  color: var(--c-gray-light);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.avis-author {
  color: var(--c-gold);
  font-weight: 600;
  font-size: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

/* Boutons carousel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-gold);
  color: var(--c-black);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.carousel-btn:hover {
  background: var(--c-gold-light);
  transform: translateY(-50%) scale(1.1);
}

.prestations-carousel .carousel-btn {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.prestations-carousel .prev-btn {
  left: 15px;
}

.prestations-carousel .next-btn {
  right: 15px;
}

.avis .prev-btn {
  left: 5px;
}

.avis .next-btn {
  right: 5px;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.galerie .carousel-dots .dot {
  width: 14px;
  height: 14px;
}

.galerie .carousel-dots {
  gap: 0.6rem;
}

.dot.active {
  background: var(--c-gold);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--c-gold-light);
}

/* 8. CONTACT */
.contact {
  background: var(--c-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--c-gold);
  background: var(--c-dark-2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hours-card,
.contact-card {
  background: var(--c-dark-2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.hours-list {
  list-style: none;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--c-gray-light);
  font-size: 0.95rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day,
.hours-item .time {
  font-weight: 500;
}

.open-badge {
  display: inline-block;
  background: rgba(39, 174, 96, 0.15);
  color: var(--c-green);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-top: 1rem;
  font-weight: 500;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--c-gray-light);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--c-gold);
  min-width: 24px;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--c-gold);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--c-gold-light);
}

/* 9. PHOTO SALON */
.salon {
  background: var(--c-black);
}

.salon-image-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.salon-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.salon-image-container:hover .salon-image {
  transform: scale(1.03);
}

.salon-caption {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--c-gray-light);
  font-size: 0.95rem;
  font-style: italic;
}

/* 10. TARIFS COMPACTS */
.tarifs {
  background: var(--c-black);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--c-dark-2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tarif-item:hover {
  border-color: var(--c-gold);
  transform: translateX(5px);
}

.tarif-name {
  color: var(--c-gray-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.tarif-price {
  color: var(--c-gold);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* 11. FLOATING BUTTONS */
.floating-buttons {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

.float-btn {
  position: relative !important;
  width: 55px !important;
  height: 55px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-3px) !important;
}

.call-btn {
  background: var(--c-gold) !important;
  color: var(--c-white) !important;
  animation: pulse 2s infinite !important;
}

.insta-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: var(--c-white) !important;
}

.snap-btn {
  background: var(--c-snap) !important;
  color: var(--c-black) !important;
}

.tooltip {
  position: absolute !important;
  right: 70px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: var(--c-dark) !important;
  color: var(--c-white) !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 4px !important;
  font-size: 0.8rem !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
}

.float-btn:hover .tooltip {
  opacity: 1 !important;
}

/* 12. FOOTER */
.footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--c-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--c-gold);
  color: var(--c-black);
}

.footer-title {
  color: var(--c-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--c-gray);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--c-gold);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  color: var(--c-gray);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--c-gold);
  margin-top: 0.2rem;
  min-width: 16px;
}

.footer-contact a {
  color: var(--c-gray);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--c-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: var(--c-gray);
  font-size: 0.85rem;
}

/* 13. ANIMATIONS */
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(201, 168, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 14. RESPONSIVE MOBILE */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2,
  .about-content h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* NAVBAR MOBILE */
  .hamburger {
    display: flex !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--c-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    align-items: flex-start;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta {
    padding: 0.6rem;
  }

  /* GALERIE PRESTATIONS */
  .carousel-slide img {
    height: 350px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* AVIS CAROUSEL */
  .avis-card {
    min-width: 100% !important;
    flex-shrink: 0 !important;
    padding: 0.5rem;
    width: 100%;
  }

  .avis-card-inner {
    padding: 2rem 1rem 1.5rem;
    min-height: 260px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .avis-text {
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
  }

  .avis .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .avis .prev-btn {
    left: 2px;
  }

  .avis .next-btn {
    right: 2px;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  /* SALON */
  .salon-image {
    height: 300px;
  }

  /* TARIFS */
  .tarifs-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* FLOATING BUTTONS */
  .floating-buttons {
    bottom: 15px !important;
    right: 15px !important;
  }

  .float-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .tooltip {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .carousel-slide img {
    height: 280px;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .floating-buttons {
    bottom: 10px !important;
    right: 10px !important;
    gap: 8px !important;
  }

  .float-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .hours-card,
  .contact-card {
    padding: 1.5rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }

  .avis-card-inner {
    padding: 1.5rem 0.8rem 1rem;
    min-height: 240px;
  }

  .avis-card-inner::before {
    font-size: 2.5rem;
  }

  .avis-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .salon-image {
    height: 250px;
  }

  .tarifs-grid {
    grid-template-columns: 1fr;
  }
}