/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

/* Title Container with Optional Line Decoration */
.section-title-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Optional Lines on Either Side of Title */
.section-title-container::before,
.section-title-container::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.5));
  max-width: 100px;
}

.section-title-container::before {
  margin-right: 1.5rem;
  background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.5));
}

.section-title-container::after {
  margin-left: 1.5rem;
  background: linear-gradient(to left, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.5));
}

/* Main Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  color: #f4f4f5;
  background: linear-gradient(to right, rgba(244, 244, 245, 1), rgba(244, 244, 245, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Title Badge - Small Label Above Title */
.section-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Subtitle Styling */
.section-subtitle {
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  color: rgba(244, 244, 245, 0.6);
  line-height: 1.6;
}

/* SVG Underline for Title */
.title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  overflow: visible;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-title-container::before,
  .section-title-container::after {
    max-width: 60px;
  }
  
  .section-title-container::before {
    margin-right: 1rem;
  }
  
  .section-title-container::after {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title-container::before,
  .section-title-container::after {
    max-width: 40px;
  }
  
  .section-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 59, 59, 0.15) 0%,
    rgba(255, 59, 59, 0.15) 65%,
    rgba(18, 18, 18, 0.88) 85%,
    rgba(18, 18, 18, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.status-background {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url('https://wallpapercave.com/wp/wp14078593.jpg');
  position: relative;
  min-height: 1080px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
  width: 100%;
}

@keyframes shine {
  0% {
    background-position: -150%;
  }
  10% {
    background-position: 150%;
  }
  100% {
    background-position: 150%;
  }
}

.shine-effect {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 9s infinite ease-in-out;
}
/* Enhanced All Products Button Styles */
.all-products-button-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
  z-index: 100;
}

.all-products-button {
  background: linear-gradient(45deg, #ff3333, #ff5555);
  color: white;
  border: none;
  border-radius: 35px; /* Rounded edges: 35px */
  padding: 14px 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500; /* Not all bold */
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.35);
  z-index: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: buttonPulsate 2s infinite; /* Main pulsating animation */
}

.all-products-button i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.all-products-button:hover i {
  transform: translateX(3px);
}

/* Remove the shine on hover effect by removing the ::before pseudo-element */

.all-products-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 51, 51, 0.5);
}

.all-products-button:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

/* Pulsating glow effect around the button */
.all-products-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 35px;
  background: rgba(255, 51, 51, 0.4);
  z-index: -2;
  animation: buttonGlow 2s infinite;
}

/* Key animation for the button itself */
@keyframes buttonPulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Key animation for the glow effect */
@keyframes buttonGlow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .all-products-button {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .all-products-button i {
    font-size: 16px;
  }
}