/**
 * Power Coupons - BOGO Styles
 *
 * @package Power_Coupons
 * @since 1.0.0
 */

.power-coupons-bogo-notifications {
	margin: 20px 0;
	clear: both;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.power-coupons-bogo-offer-wrapper {
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 16px;
	background-color: #fff;
	display: flex;
	gap: 8px;
	transition: all 0.2s ease;
}

/* Unclaimed offer - lighter background */
.power-coupons-bogo-offer-wrapper.power-coupons-bogo-offer-unclaimed {
	background-color: #f9fafb;
	border: 1px solid #e5e7eb;
}

.power-coupons-bogo-notifications .power-coupons-bogo-offer-wrapper img {
	width: 50px;
	height: 50px;
	border-radius: 4px;
}

.power-coupons-bogo-offer-right {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 4px;
	flex: 1;
}

p.power-coupons-bogo-offer-badge {
	margin: 0;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	padding: 4px 6px;
	border-radius: 100px;
	width: max-content;
	display: flex;
	gap: 2px;
	align-items: center;
}

/* Claimed offer badge - green */
p.power-coupons-bogo-offer-badge.power-coupons-bogo-badge-claimed {
	background: #dcfce7;
	color: #166534;
}

/* Available offer badge - blue */
p.power-coupons-bogo-offer-badge.power-coupons-bogo-badge-available {
	background: #dbeafe;
	color: #1e40af;
}

p.power-coupons-bogo-offer-description {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	margin-top: 2px;
	color: #6b7280;
}

strong.power-coupons-bogo-offer-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #111827;
}

button.power-coupons-bogo-offer-button {
	background-color: #15803d;
	color: #fff;
	padding: 8px 16px;
	font-weight: 500;
	font-style: normal;
	text-transform: none;
	font-size: 13px;
	line-height: 16px;
	text-align: center;
	cursor: pointer;
	width: fit-content;
	border: 1px solid #15803d;
	box-shadow: 0 1px 2px 0 #1018280d;
	border-radius: 4px;
	transition: all 0.2s ease;
}

button.power-coupons-bogo-offer-button:hover,
button.power-coupons-bogo-offer-button:focus {
	background-color: #166534;
	border: 1px solid #166534;
}

button.power-coupons-bogo-offer-button:active {
	background-color: #14532d;
	border: 1px solid #14532d;
}

span.power-coupons-bogo-offer-applied-text {
	font-size: 13px;
	line-height: 16px;
	color: #059669;
	font-weight: 500;
}

.power-coupons-bogo-free-gift-msg {
	color: #059669;
	font-size: 13px;
	font-weight: 500;
	margin: 0 !important;
}

/* Block cart/checkout — fit BOGO notifications into WC block order summary. */
.wp-block-woocommerce-cart .power-coupons-bogo-notifications,
.wp-block-woocommerce-checkout .power-coupons-bogo-notifications {
	margin: 0;
	padding: 16px 0;
	border-bottom: 1px solid #e0e0e0;
}
