#lavie-promotions-container {
  max-width: 1140px;
  margin: auto;
  padding: 20px;
}

.promo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  flex-direction:column;
}

.promo-title-header {
  font-family: 'Poppins', 'sans-serif';
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
}

.promo-filters {
  display: flex;
  gap: 10px;
}

.promo-filter-btn {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  color: #FFF;
  font-weight:500;
  font-family: 'Poppins';
  transition: all 0.2s ease;
}

.promo-filter-btn:hover {
  background: #FFF;
  color: #000;
}

.promo-filter-btn.active {
  background: #FFF;
  color: #000;
  border-color: #FFF;
}

/* Make header & filters responsive */
@media (max-width: 768px) {
  .promo-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
  }

  .promo-title-header {
    font-size: 1.4rem;
  }

  .promo-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .promo-filter-btn {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .promo-title-header {
    font-size: 1.2rem;
  }

  .promo-filters {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .promo-filter-btn {
    width: auto;
    min-width: 80px;
    padding: 5px 10px;
  }
}


/* Promotions Grid */
.promotions-grid {
/*   display: grid; */
/*   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    display: flex;
  flex-wrap: wrap;
	gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

/* Promo Card */
.promo-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 350px;
  width: 100%;
  align-items: center; /* ✅ ensures image + text are same width and centered */
	  flex: 1 1 300px;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Promo Image */
.promo-image {
  width: 100%;
  height: 350px;          /* fixed height for uniformity */
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills box, crops edges evenly */
}

.promo-card:hover .promo-image img {
  transform: scale(1.02);
}

/* Promo Details */
.promo-details {
  width: 100%; /* ✅ force same width as image */
  background: #FFF;
  padding: 18px 20px 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 0 12px 12px;
}


.promo-details .promo-tag {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #000;
  line-height: 1.3;
  padding:7.5px;
  border: 2px solid #000;
  border-radius:5px;
  text-transform:uppercase;
  width:fit-content;
}

.promo-details .promo-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #000;
  line-height: 1.3;
}

.promo-details .promo-subtitle {
  font-size: 0.9rem;
  color: #000;
  min-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-details .promo-dates {
  font-size: 0.8rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .promotions-grid {
    grid-template-columns: 1fr;
  }
}


.pagination {
  text-align: center;
  margin-top: 20px;
}

.page-btn {
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 6px;
  cursor: pointer;
}

.page-btn.active {
  background: #f47a20;
  color: white;
  border-color: #f47a20;
}

.no-promos {
	text-align:center; 
	color: #FFF; 
	font-family: 'Poppins';
	font-weight: 700;
	font-size: 24px;
}

/* Slug Page */

.single-promo-container { 
	display:flex; 
	flex-direction: column;
	justify-content:center; 
	align-content:center; 

}

.single-promo-container.margin-bottom {
	margin-bottom:3rem; 
}

.single-promo-container .single-promo-banner {
	width: 100%:
	max-height:457px;
}

.single-promo-container .single-promo-banner img {
	width:100%;
	height:auto;
	object-fit:cover; 
	object-position:center;
}

.single-promo-container .single-promo-header {
	display:flex; 
	justify-content:center; 
	align-items:center;
	margin-top: 2.5rem;
	flex-direction: column;
	gap:5px;
}

.single-promo-container .single-promo-header .single-promo-title {
	font-family: "Poppins", Sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #F08535;
}

.single-promo-container .single-promo-header .single-promo-subtitle {
	font-size: clamp(1.5rem, 2.5vw, 1.5rem);
	font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: #000000;
	text-align:center;
	    white-space: pre-line;
    line-height: 1.6;
    margin-bottom: 1em;
}

.single-promo-container .single-promo-header .single-promo-dates {
	font-size: clamp(0.7rem, 2.5vw, 1.2rem);
	font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: #000000;
}

.single-promo-container .single-promo-terms-title {
	font-family: "Poppins", Sans-serif;
	font-size: clamp(0.7rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #000000;
	text-align:center;
	margin-top:2.5rem;
	margin-bottom:2.5rem;
}

.single-promo-container .single-promo-description ol{
	list-style-type: decimal;
    margin-left: 2rem;
    padding-left: 1rem;
}

.single-promo-container .single-promo-description ol ul {
	list-style-type: disc; 
	list-style-position: outside;
	margin-left: 2rem;     
	padding-left: 1rem;
}

.single-promo-container .single-promo-description ol li {
	margin-bottom: 10px; 
	font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
	text-align: justify;
}

.single-promo-container .single-promo-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
	border: 2px solid #000;
	border-radius:10px;
	padding:10px;
	text-align:center;
	width:fit-content;
	text-transform:uppercase;
	margin: 1rem auto 1rem auto;
}

.single-promo-header img {
	
}

.single-promo-terms-title, .single-promo-header, .single-promo-description {
	max-width: 1140px;
	margin:auto;
}