/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e74c3c;
  --primary-dark: #c0392b;
  --secondary-color: #34495e;
  --accent-color: #f1c40f;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --gray-color: #95a5a6;
  --success-color: #27ae60;
  --font-main: "Poppins", sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #f8f9fa;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 5%;
  background-color: white;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--dark-color);
}

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

.nav-links a {
  margin-left: 25px;
  font-weight: 500;
  color: var(--dark-color);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-phone {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: var(--border-radius);
}

.btn-phone:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu .line {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 3px 0;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(to right, #2c3e50, #4a6491);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-right: 40px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-offers {
  flex: 1;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offer {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.offer:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.15);
}

.offer.featured {
  border: 2px solid var(--accent-color);
  background-color: rgba(255, 255, 255, 0.15);
}

.offer.featured h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.offer.featured h3::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 60%;
  background-color: var(--accent-color);
  bottom: -8px;
  left: 20%;
}

.offer-img {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 0;
}

.offer-img img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.offer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: calc(100% - 120px); /* Hauteur totale moins la hauteur de l'image */
}

.offer-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Permet de scroller si le contenu est trop grand */
  padding-right: 5px; /* Espace pour le scrollbar */
  text-align: left;
  padding: 0;
  margin-bottom: 20px;
}

.offer-brand {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-model {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--light-color);
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.offer-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.offer-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.9rem;
  line-height: 1;
  top: 3px;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--dark-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom-left-radius: 8px;
}

.offer h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: white;
}

.price {
  margin: 15px 0;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  font-size: 1.1rem;
  opacity: 0.7;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.current-price {
  font-size: 2.2rem;
  color: var(--accent-color);
  font-weight: 800;
}

.price-action {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  padding-top: 15px;
}

.price-action .price {
  margin: 0;
}

.price-action .btn {
  margin-top: 0;
}

/* About Section */
.about {
  background-color: white;
}

.about h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-text {
  flex: 1.5;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.values {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.value {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: #f8f9fa;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--gray-color);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  border: 2px solid var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 15px 0;
}

.service-card .price span {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 5px;
}

.service-card .note {
  font-size: 0.8rem;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.service-card .btn {
  width: 100%;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 220px;
  text-align: center;
  justify-content: center;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-map {
  flex: 1.2;
  min-width: 300px;
  height: 450px;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--gray-color);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-form {
  flex: 1.5;
  min-width: 300px;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links,
.footer-services,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.social-links i {
  font-size: 18px;
  color: white;
  margin-right: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: var(--accent-color);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-call i {
  font-size: 24px;
}

.btn-call:hover {
  transform: scale(1.1);
  background-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .container {
    padding: 0 30px;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 1280px) {
  .nav-links {
    display: none;
  }

  .burger-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-content p {
    max-width: 600px;
    margin: 0 auto;
  }

  .slider-container {
    min-height: 700px;
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .contact-map {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .footer-content {
    gap: 30px;
  }

  .offer,
  .slide,
  .slider-container {
    height: 650px !important;
    min-height: 650px !important;
    max-height: 650px !important;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-offers {
    flex-direction: column;
  }

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

  .values {
    flex-direction: column;
    gap: 15px;
  }

  section {
    padding: 50px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }

  .slider-container {
    min-height: 850px;
  }
}

/* Mobile menu active state */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.nav-links.active a {
  margin: 10px 0;
}

.burger-menu.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Header sticky state */
header.sticky {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

header.hide {
  transform: translateY(-100%);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* Show elements right away if JavaScript is loaded but animations haven't triggered yet */
.js-loaded .animate-on-scroll {
  animation: fadeInFallback 1.5s forwards;
}

@keyframes fadeInFallback {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Assure that elements are visible by default on mobile/slow devices */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure elements are visible even if JavaScript fails */
.no-js .animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Form error and success states */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--success-color);
}

.form-success p {
  color: var(--gray-color);
}

.offer .btn-outline {
  border-color: white;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 20px;
}

.offer .btn-outline:hover {
  background-color: white;
  color: var(--secondary-color);
}

.hero-offers {
  flex: 1;
  max-width: 450px;
}

.offer-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px !important; /* Hauteur fixe stricte */
  transition: all 0.8s ease;
  transform: translateX(100%);
  opacity: 1;
  visibility: visible;
  will-change: transform, opacity;
}

.slide:first-child {
  position: relative;
  transform: translateX(0);
  height: 700px !important; /* Même hauteur stricte */
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px !important;
  min-height: 700px !important;
  max-height: 700px !important;
  border-radius: var(--border-radius);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--accent-color);
}

.slide {
  height: 100%;
}

.slide-serrure,
.slide-porte {
  display: block;
  height: 100%;
}

.offer {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* S'assurer que les deux offres ont la même structure */
.offer .offer-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer .price-action {
  margin-top: auto;
}

.slide {
  height: 700px !important;
}

.slide-serrure .offer,
.slide-porte .offer {
  min-height: unset;
  max-height: 700px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-content p {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-offers {
    max-width: 600px;
    margin: 0 auto;
  }

  .slider-container {
    min-height: 700px;
  }
}

@media (max-width: 576px) {
  .slider-container {
    min-height: 850px;
  }

  .offer,
  .slide,
  .slider-container {
    height: 700px !important;
    min-height: 700px !important;
    max-height: 700px !important;
  }
}

/* Hero Badge */
.hero-badge {
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 25px;
  display: flex;
  max-width: 450px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  pointer-events: none;
}

.badge-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.badge-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.badge-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.badge-ttc {
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 3px;
  opacity: 0.9;
}

.badge-note {
  font-size: 0.8rem;
  color: var(--dark-color);
  opacity: 0.8;
}

.badge-action {
  background: var(--dark-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge-action:hover {
  background-color: black;
  color: white;
}

.badge-action i {
  margin-right: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .hero-badge {
    flex-direction: column;
    max-width: 100%;
  }

  .badge-action {
    padding: 12px;
  }
}
