/* SILA offer style changes */

.atc-coupon-container .atc-coupon-image-container, .atc-offers-container .atc-coupon-container {
	border-radius: 0!important;
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}
.atc-coupon-container .atc-coupon-price-container, .atc-coupon-container .atc-coupon-title-container, .atc-offers-container .atc-coupon-price-data {
	background: #006ba6;
	color: white!important;
}
.atc-offers-container .atc-coupon-price-data {
	color: white
}
.atc-coupon-container .atc-coupon-title-container {
	border: none;
}
.atc-coupon-title-container:after, .atc-coupon-title-container:before {
	display: none;
}
.atc-coupon-container .atc-coupon-action-text {
	background: var( --e-global-color-295fe17 );
	color: black!important;
	border-radius: 0;
}
.atc-coupon-action-text a {
	color: black!important;
	font-weight: bold;
}
.atc-offers-container .atc-coupon-action-container {
	padding: 15px 0;
}
.atc-coupon-container .atc-coupon-price-container {
	height: auto!important;
	padding: 15px 15px 0;
}

/* tandem styles */
/* --- COLLAPSIBLE COUPON DETAILS --- */

/* offer styles for tandem open */
.tandem-offer .atc-offers-container .atc-coupon-action-container,
.tandem-offer .atc-coupon-disclaimer-container,
.tandem-offer .atc-coupon-container .atc-coupon-image-container {
	display: none;
}

.tandem-offer .atc-coupon-price-original {
	color: #585858;
}

.tandem-offer .atc-offers-container .atc-coupon-container {
	margin: 0;
	width: 100%;
}

.tandem-offer .atc-offers-container {
	padding: 0!important;
}

.tandem-offer .atc-coupon-container .atc-coupon-price-container,
.tandem-offer .atc-coupon-container .atc-coupon-title-container,
.tandem-offer .atc-offers-container .atc-coupon-price-data {
	background: transparent;
}

.tandem-offer .atc-offers-container .atc-coupon-price-data {
	color: black!important;
	font-weight:bold!important;
	font-size: 38px!important;
}

.tandem-offer .atc-coupon-container .atc-coupon-title-label {
	color: black!important;
	font-weight:normal;
}

.tandem-offer .atc-coupon-container {
	background: white!important;
	width: 100%!important;
	max-width: 100%!important;
}

/* 1. Hidden by default */
.tandem-offer .atc-coupon-content-container {
	max-height: 0;
	margin: 0!important;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.tandem-offer .atc-coupon-container .atc-coupon-content-details {
	color: black;
}

.tandem-offer .atc-coupon-container .atc-coupon-content-container {
	padding: 0;
}

/* 2. Open state */
.tandem-offer .atc-coupon-content-container.is-open {
	max-height: 1000px; /* adjust if content is taller */
	opacity: 1;
	padding-top: 10px;
}

/* --- "SEE OFFER DETAILS" BUTTON --- */
 .tandem-offer .offer-toggle {
	display: block;
	width: 100%;
	background: #44444b;
	 color: white!important;
	border: 0;
	border-radius: 0 !important;
	padding: 10px 20px 10px 20px;
	margin-top: 0.5rem;
	cursor: pointer;
	font: inherit;
	color: #0073aa; /* matches WordPress link color */
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.2s ease;
} 

/* Hover/focus state for clarity */
.tandem-offer .offer-toggle:hover,
.tandem-offer .offer-toggle:focus {
	color: #121212; /* darker blue on hover */
	outline: none;
	background: #121212!important;
}

/* Focus-visible (keyboard accessibility) */
.tandem-offer .offer-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* --- SMOOTH TRANSITION ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
	.tandem-offer .atc-coupon-content-container {
		transition: none;
	}
}

@media (max-width: 768px) {
	.tandem-offer .atc-coupon-title-container {
		max-width: 100%;
	}
}