/*!
 * Sentio for Elementor - wc-stock-alert widget
 * Extracted from frontend.css during WC Batch 1 sub-batch 2 mechanical extraction (2026-04-20).
 * Tier 3 mechanical extraction — body verbatim from monolith (WC-26 section).
 */

/* ═══════════════════════════════════════════════════════════
   WC-26  Stock Alert  (.sentio-sa)
   ═══════════════════════════════════════════════════════════ */

.sentio-sa {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sentio-sa__status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
}

.sentio-sa__status--in-stock { color: #16a34a; }
.sentio-sa__status--low { color: #f59e0b; }
.sentio-sa__status--oos { color: #ef4444; }

.sentio-sa__urgency {
	animation: sentio-urgency-pulse 2s ease infinite;
}
@keyframes sentio-urgency-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.sentio-sa__count {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.sentio-sa__count-number { font-size: 24px; font-weight: 700; color: #111; }
.sentio-sa__count-label { font-size: 13px; color: #6b7280; }

.sentio-sa__bar-track {
	width: 100%;
	height: 8px;
	background: #e5e7eb;
	border-radius: 4px;
	overflow: hidden;
}
.sentio-sa__bar-fill {
	height: 100%;
	border-radius: 4px;
	transition: width 0.8s ease;
}

.sentio-sa__restock {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #6b7280;
}
.sentio-sa__restock-countdown { font-weight: 600; color: #333; }

.sentio-sa__notify {
	background: #f9fafb;
	padding: 20px;
	border-radius: 10px;
	margin-top: 8px;
}
.sentio-sa__notify-title { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: #111; }
.sentio-sa__notify-desc { font-size: 13px; color: #6b7280; margin: 0 0 12px; }
.sentio-sa__notify-form { display: flex; gap: 8px; }
.sentio-sa__notify-email {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
}
.sentio-sa__notify-btn {
	padding: 10px 20px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.sentio-sa__notify-btn:hover { background: #111; }
.sentio-sa__notify-msg {
	margin-top: 10px;
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 6px;
}
.sentio-sa__notify-msg--success { background: #f0fdf4; color: #16a34a; }
.sentio-sa__notify-msg--error { background: #fef2f2; color: #ef4444; }


/* ══════════════════════════════════════════════════════════════════
 *  WC-27 Shipping Calculator
 *  Moved to assets/css/widgets/wc-shipping-calculator.css during WC
 *  Batch 1 sub-batch 1 mechanical extraction (2026-04-20).
 * ══════════════════════════════════════════════════════════════════ */
