/**
 * WPC Pre-Orders — Frontend Styles
 * Badge, product notice, cart notice
 *
 * @package WPC_Pre_Orders
 */

/* === Pre-Order Badge (shop loop) === */
.wpcpe-loop-badge {
	display: inline-block;
	background: #f59e0b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 6px;
	vertical-align: middle;
}

/* === Product Page Notice === */
.wpcpe-product-notice {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-left: 4px solid #f59e0b;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.5;
}

/* Badge + text: same row via flex wrapper */
.wpcpe-notice-header {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.wpcpe-badge {
	display: inline-block;
	background: #f59e0b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: .5px;
	flex-shrink: 0;
}

.wpcpe-notice-text {
	color: #78350f;
}

/* Each detail row: release date, price badge, slots notice */
.wpcpe-release-date,
.wpcpe-price-badge,
.wpcpe-slots-notice {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
}

.wpcpe-release-date {
	color: #92400e;
	font-size: 13px;
}

.wpcpe-notice-icon {
	flex-shrink: 0;
	font-style: normal;
	line-height: 1;
}

/* === Countdown Timer === */

.wpcpe-countdown {
	display: flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	padding: 6px 8px;
	background: rgba(245, 158, 11, 0.08);
	border: 1px solid rgba(245, 158, 11, 0.25);
	border-radius: 6px;
}

.wpcpe-countdown__segment {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 40px;
}

.wpcpe-countdown__value {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
	color: #92400e;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.5px;
}

.wpcpe-countdown__label {
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #b45309;
	margin-top: 1px;
}

/* JS-rendered separator between segments */
.wpcpe-countdown__sep {
	font-size: 20px;
	font-weight: 700;
	color: #d97706;
	line-height: 1.1;
	align-self: flex-start;
	flex-shrink: 0;
	user-select: none;
}

/* === Cart Item Badge === */
.wpcpe-cart-badge {
	display: inline-block;
	background: #fef3c7;
	color: #92400e;
	font-size: 10px;
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: .5px;
	vertical-align: middle;
	margin-left: 6px;
}

.wpcpe-cart-date {
	display: block;
	color: #9ca3af;
	font-size: 12px;
	margin-top: 2px;
}

/* === Mixed Cart Notice === */
.wpcpe-mixed-cart-notice,
.wpcpe-checkout-notice {
	background: #eff6ff !important;
	border-color: #bfdbfe !important;
	color: #1e40af !important;
}

/* === My Account Status Badges === */
.wpcpe-status-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.wpcpe-status-badge--released {
	background: #dcfce7;
	color: #166534;
}

.wpcpe-release-date-text {
	color: #6b7280;
	font-size: 13px;
}
