/* Override any other styles to ensure our slider looks right */

/* Background for the slider section */
#center {
  background-color: #f8f8f8;
}

/* Container for slider to create better positioning context */
.carousel {
  position: relative;
}

/* Position the slides properly */
.carousel-inner {
  height: 100%;
}

.carousel-inner .item {
  position: relative;
}

/* Create the slide visual layout with content on left, image on right */
.carousel .slider-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
}

/* Control indicators */
.carousel-indicators {
  bottom: 10px;
  z-index: 10;
}

.carousel-indicators li {
  border-color: #ea1c26;
}

.carousel-indicators .active {
  background-color: #ea1c26;
}

/* Style the Shopping Now button to match original */
.carousel-caption .button {
  background-color: #ea1c26;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  text-transform: none;
  display: inline-block;
}

/* Override any other styles that might conflict */
.carousel-caption {
  position: absolute;
  left: 10%;
  text-align: left;
  padding: 20px;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  right: auto;
  background: transparent;
  color: #333;
}

/* Make caption text styling match original */
.carousel-caption h1 {
  font-size: 36px;
  color: #333;
  margin: 15px 0;
}

.carousel-caption h4 {
  color: #333;
  margin-bottom: 10px;
}

.carousel-caption h4.col_1 {
  color: #ea1c26;
}
