.card-img-top::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px; /* Thickness of the line */
  background-color: #0000ff; /* Color of the line */
  position: absolute;
  bottom: 0;
  left: 0;
}
.card-title {
  font-size: 0.9rem; /* Adjust the size as needed */
  font-weight: 500; /* Optional: Reduce font weight */
}

/* Remove Stock Display */
.products .info .text-primary {
  display: none; /* Hides stock information */
}
.text-block {
  padding: 40px 20px;
  background: transparent;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  max-width: 1300px; /* Adjust width */
  margin: 0 auto; /* Center the block */
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0.5em auto;
  padding: 0.25em 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #0000ff 50%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerEffect 4s infinite ease-in-out;
  text-shadow: 0 0 1px rgba(222, 175, 58, 0.1);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0000ff, transparent);
  animation: underlineExpand 4s infinite ease-in-out;
}

@keyframes shimmerEffect {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes underlineExpand {
  0%, 100% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 80%;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.75rem;
  }
}
.footer {
  display: block; /* Ensure it's displayed */
  visibility: visible; /* Make sure it's visible */
  min-height: 40px; /* Give it some height */
}
.highlight {
  color: #0000ff; /* Apply the color #deaf3a */
}
/* This class will apply a smooth transition */
.variant {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Modify the active state for a less zoomed-in effect */
.variant.active {
  transform: scale(1.05); /* Slightly zoomed-in effect */
}

/* Add a more subtle transition on hover */
.variant:hover {
  transform: scale(1.02); /* Slight zoom effect */
}

/* Make sure the active indicator transition is smooth */
.active-indicator {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

.variant.active .active-indicator {
  opacity: 1;
  transform: scale(1.2); /* Slightly scale the indicator for better visibility */
}
.hero-img:hover {
  transform: scale(1.1); /* Augmente l'échelle de l'image pour un effet de zoom */
}