.highlighted-deals__tab {
  cursor: pointer;
  padding: 1rem;
  color: #ccc;
}
.highlighted-deals__tab.is-active {
  color: #000000;
  
}
.highlighted-deals__tab-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap; /* or wrap if needed */
  overflow-x: auto;
}
.highlighted-deals__content-wrapper {
  display: flex;
  gap: 2rem;
}
.highlighted-deals__content {
  display: none; /* hide by default */
}
.highlighted-deals__content.is-active {
  display: flex; /* only the active one shows */
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.highlighted-deals__content-left{
  flex: 1 1 50%;
  box-sizing: border-box;
  min-width: 300px;
  padding: 1rem;
}
.highlighted-deals__content-right {
  flex: 1 1 50%;
  box-sizing: border-box;
  min-width: 300px;
}
.highlighted-deals__progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.highlighted-deals__progress-bar {
  height: 100%;
  width: 0%;
  background-color: #b58908; /* yellow */
  transition: width 5s linear;
}

.highlighted-deals__container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  border: 2px solid #423005;
  border-radius: 9px;
  background-color: rgb(249, 243, 235);
}

.highlighted-deals__content-left-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.btn {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.btn1 {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  align-self: center;     /* centers horizontally in the column */
  margin-top: 50%;       /* pushes to the bottom */
}

/* Responsive image */
.highlighted-deals__content-right-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.sec-all-deals-swipe {
 padding: 1rem 1rem 1rem 1rem;
 background-color: rgba(50, 30, 10, 0.7);
}

.foot-note {
 padding: 1rem 1rem 1rem 1rem;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .highlighted-deals__container {
    flex-direction: column;
  }

  .highlighted-deals__content-left,
  .highlighted-deals__content-right {
    flex: 1 1 100%;
  }

  .highlighted-deals__content-right-media img {
    max-height: 300px;
    width: 100%;
    object-fit: contain;
  }
}

section {
  margin: 0;
}