/**
 * CDEK Calculator Widget styles.
 */

.cdek-calc-widget {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 16px;
	margin: 16px 0;
	background: #fafafa;
	font-size: 14px;
	max-width: 420px;
}

.cdek-calc-header {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 12px;
	color: #333;
}

.cdek-calc-form {
	display: flex;
	gap: 8px;
	position: relative;
}

.cdek-calc-city {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.cdek-calc-city:focus {
	border-color: #00b33c;
}

.cdek-calc-btn {
	padding: 8px 16px;
	background: #00b33c;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}

.cdek-calc-btn:hover {
	background: #009e34;
}

.cdek-calc-btn:disabled {
	background: #999;
	cursor: not-allowed;
}

/* Suggestions dropdown */
.cdek-calc-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 80px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 0 0 6px 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	z-index: 100;
	max-height: 200px;
	overflow-y: auto;
}

.cdek-calc-suggest-item {
	padding: 8px 12px;
	cursor: pointer;
	font-size: 13px;
	border-bottom: 1px solid #f0f0f0;
}

.cdek-calc-suggest-item:last-child {
	border-bottom: none;
}

.cdek-calc-suggest-item:hover {
	background: #f0faf0;
}

/* Results */
.cdek-calc-results {
	margin-top: 12px;
}

.cdek-calc-results-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.cdek-calc-result-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.cdek-calc-result-row:last-child {
	border-bottom: none;
}

.cdek-calc-result-name {
	font-size: 13px;
	color: #333;
	flex: 1;
	min-width: 0;
}

.cdek-calc-result-info {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	flex-shrink: 0;
	margin-left: 12px;
}

.cdek-calc-result-cost {
	font-weight: 600;
	color: #00b33c;
	font-size: 14px;
	white-space: nowrap;
}

.cdek-calc-result-period {
	font-size: 12px;
	color: #888;
	white-space: nowrap;
}

.cdek-calc-icon {
	font-size: 14px;
}

.cdek-calc-no-results,
.cdek-calc-error {
	padding: 10px 0;
	color: #888;
	font-size: 13px;
}

.cdek-calc-error {
	color: #d32f2f;
}

/* Mobile responsive */
@media (max-width: 480px) {
	.cdek-calc-widget {
		max-width: 100%;
	}
	.cdek-calc-form {
		flex-direction: column;
	}
	.cdek-calc-suggestions {
		right: 0;
	}
	.cdek-calc-result-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.cdek-calc-result-info {
		align-items: flex-start;
		flex-direction: row;
		gap: 8px;
		margin-left: 0;
	}
}
