/**
 * Coupon Promo Section
 */

.bookworm-coupon-promo {
	background-color: #f75454;
	padding: 36px 24px;
	border-radius: 0px;
}

.bookworm-coupon-promo__title {
	text-align: center;
	color: #fff;
	font-size: 2.25rem;
	font-weight: 700;
	margin: 0 0 28px;
}

.bookworm-coupon-promo__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	max-width: 1400px;
	margin: 0 auto;
	align-items: stretch;
}

.bookworm-coupon-ticket {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	padding: 22px 18px 18px;
	text-align: center;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	min-width: 0;
}

.bookworm-coupon-ticket__description {
	margin-top: auto;
	padding-top: 12px;
	color: #4a3a10;
	font-size: 0.8rem;
	margin-bottom: 0;
	display: none !important;
}

/* Checkout Variant */

/*.bookworm-coupon-promo--checkout {*/
/*	background: transparent;*/
/*	padding: 0 0 32px;*/
/*}*/

.bookworm-coupon-promo__title--checkout {
	color: #fff;
	font-size: 1.4rem;
	text-align: left;
	margin-bottom: 16px;
}

/* Ticket Notches */

.bookworm-coupon-ticket__notch {
	position: absolute;
	top: 50%;
	width: 26px;
	height: 26px;
	background-color: #f75454;
	border-radius: 50%;
	transform: translateY(-50%);
}

.bookworm-coupon-ticket__notch--left {
	left: -13px;
}

.bookworm-coupon-ticket__notch--right {
	right: -13px;
}

/* Featured Coupon */

.bookworm-coupon-ticket--featured {
	border: 2px dashed #d62b3c;
}

.bookworm-coupon-ticket__badge {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: #d62b3c;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 14px;
	white-space: nowrap;
}

.bookworm-coupon-ticket__limited {
	color: #6b4f15;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 6px 0 8px;
}

.bookworm-coupon-ticket__code {
	color: #1a1a1a;
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 0 14px;
}

/* Coupon Row */

.bookworm-coupon-ticket__row {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4px;
}

.bookworm-coupon-ticket__summary {
	background: #d62b3c;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 9px 5px;
	border-radius: 4px 0 0 4px;
	line-height: 1.25;
	white-space: nowrap;
}

.bookworm-coupon-ticket__copy-btn {
	background: #1a1308;
	color: #fff;
	border: none;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 9px 14px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.bookworm-coupon-ticket__copy-btn:hover {
	background: #2a2010;
}

.bookworm-coupon-ticket__copy-btn:active {
	transform: scale(0.97);
}

.bookworm-coupon-ticket__copy-btn.is-copied {
	background: #1f7a3d;
	color: #fff;
}

/* Tablet: 2 Columns */

@media (max-width: 991px) {
	.bookworm-coupon-promo {
		padding: 32px 20px;
	}

	.bookworm-coupon-promo__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile: 1 Column */

@media (max-width: 575px) {
	.bookworm-coupon-promo {
		padding: 28px 14px;
	}

	.bookworm-coupon-promo__title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #fff;
        text-align: center;
    }

	.bookworm-coupon-promo__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.bookworm-coupon-ticket {
		padding: 16px 12px;
	}

	.bookworm-coupon-ticket__notch {
		display: none;
	}

	.bookworm-coupon-ticket__limited {
		font-size: 0.6rem;
	}

	.bookworm-coupon-ticket__code {
		font-size: 1rem;
	}

	.bookworm-coupon-ticket__row {
		flex-direction: column;
		gap: 8px;
	}

	.bookworm-coupon-ticket__summary,
	.bookworm-coupon-ticket__copy-btn {
		width: 100%;
		border-radius: 4px;
	}

	.bookworm-coupon-ticket__badge {
		font-size: 0.55rem;
		padding: 4px 12px;
	}

	.bookworm-coupon-ticket__description {
		font-size: 0.7rem;
		margin-bottom: 0;
	}
}