/* Module Montgolfiere Promo Styles */

.promo-card-highlight {
	border: 2px solid #ff6600 !important;
	position: relative;
}

.promo-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #ff6600;
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	z-index: 10;
}

.promo-quantity-section {
	background: #f8f8f8;
	padding: 20px;
	margin-top: 20px;
	border-radius: 5px;
}

.promo-quantity-control {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.promo-quantity-buttons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.promo-quantity-btn {
	width: 35px;
	height: 35px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: all 0.3s;
    color:#ff6600;
}

.promo-quantity-btn:hover {
	background: #ff6600;
	color: white;
	border-color: #ff6600;
}

.promo-quantity-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.promo-quantity-btn:disabled:hover {
	background: white;
	color: inherit;
	border-color: #ddd;
}

.promo-quantity-value {
	font-size: 1.2rem;
	font-weight: bold;
	min-width: 30px;
	text-align: center;
    color:#ff6600;
}

.promo-total-section {
	border-top: 1px solid #ddd;
	padding-top: 15px;
	text-align: center;
}

.promo-price-old {
	text-decoration: line-through;
	color: #999;
	font-size: 1rem;
}

.promo-price-current {
	font-size: 1.8rem;
	font-weight: bold;
	color: #333;
}

.promo-price-per-person {
	font-size: 0.9rem;
	color: #666;
	margin-top: 5px;
}

.promo-highlight-btn {
	background: #ff6600 !important;
}

.promo-highlight-btn:hover {
	background: #e65c00 !important;
}

.promo-highlight-price {
	color: #ff6600 !important;
}

.promo-secure-payment {
	text-align: center;
	margin-top: 10px;
	font-size: 0.85rem;
	color: #666;
}

.promo-secure-payment svg {
	width: 12px;
	height: 12px;
	margin-right: 5px;
}

