/* Hero Header Styles */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 66px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 background-image: url('/hero/tlcc/shapewear-newyear-2026.jpg')
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 0 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-width: 140px;
  height: 50px;
  letter-spacing: normal;
 text-transform: uppercase;
}

.hero-btn-primary {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
}

.hero-btn-primary:hover {
  background-color: #ccc;
  color: #000000;
}

.hero-btn-secondary {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
}

.hero-btn-secondary:hover {
  background-color: #ccc;
  color: #000000;
}

/* Mobile Responsive */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Mobile Background Image Switch */
@media (max-width: 579px) {
  .hero-background {
    background-image: url('/hero/tlcc/m-shapewear-newyear-2026.jpg');
  }
}