/**
 * Woo Card Chef - PDP Delivery & Availability widget styles.
 *
 * BEM block: .wcpce-delivery
 * Server-rendered, zero JS. WooCommerce/ACF provide status; Elementor controls
 * wording and presentation.
 *
 * @since 2.3.0
 */

/* ===== BLOCK ===== */
.wcpce-delivery {
	color: #2a2a2a;
}

.wcpce-delivery__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.wcpce-delivery__item {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: #2a2a2a;
	line-height: 1.35;
}

.wcpce-delivery__text {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	color: #2a2a2a;
	font-size: 14px;
	font-weight: 500;
}

/* ===== ICONS ===== */
.wcpce-delivery__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: #888888;
}

.wcpce-delivery__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wcpce-delivery__item--stock .wcpce-delivery__icon {
	color: #3EC26D;
	width: 20px;
	height: 20px;
}

.wcpce-delivery__item--stock .wcpce-delivery__text {
	color: #3EC26D;
	font-size: 15px;
	font-weight: 600;
}

/* Shipping line is secondary info — slightly smaller and muted */
.wcpce-delivery__item--shipping .wcpce-delivery__text {
	font-size: 13px;
	color: #6b6b6b;
}

/* Separator between the status row and the promise rows in list mode */
.wcpce-delivery--list .wcpce-delivery__item--stock + .wcpce-delivery__item,
.wcpce-delivery--list .wcpce-delivery__item--unavailable + .wcpce-delivery__item,
.wcpce-delivery--list .wcpce-delivery__item--discontinued + .wcpce-delivery__item {
	margin-top: 4px;
	padding-top: 12px;
	border-top: 0.5px solid rgba(0, 0, 0, 0.08);
}

.wcpce-delivery__item--unavailable .wcpce-delivery__icon {
	color: #9a6b13;
}

.wcpce-delivery__item--discontinued .wcpce-delivery__icon {
	color: #666666;
}

.wcpce-delivery--no-icons .wcpce-delivery__item {
	gap: 0;
}

/* ===== LAYOUT: PILLS ===== */
.wcpce-delivery--pills .wcpce-delivery__list {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.wcpce-delivery--pills .wcpce-delivery__item {
	flex: 0 1 auto;
	padding: 7px 10px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	background: #ffffff;
}

/* ===== EDITOR NOTICE ===== */
.wcpce-delivery-editor-notice {
	padding: 10px 12px;
	border: 1px dashed #3EC26D;
	border-radius: 6px;
	background: #f4fbf6;
	color: #2a2a2a;
	font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
	.wcpce-delivery--pills .wcpce-delivery__list {
		align-items: flex-start;
	}

	.wcpce-delivery--pills .wcpce-delivery__item {
		max-width: 100%;
	}
}
