.wwp-widget {
	max-width: 420px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: linear-gradient(135deg, #4a90d9, #6fb1e8);
	border-radius: 16px;
	padding: 20px;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}

.wwp-widget * {
	box-sizing: border-box;
}

.wwp-search-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.wwp-search-input {
	flex: 1 1 160px;
	padding: 10px 12px;
	border-radius: 8px;
	border: none;
	font-size: 14px;
	outline: none;
}

.wwp-btn {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.wwp-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}

.wwp-suggestions {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wwp-suggestions li {
	padding: 10px 12px;
	color: #222;
	font-size: 14px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.wwp-suggestions li:last-child {
	border-bottom: none;
}

.wwp-suggestions li:hover {
	background: #f0f4fa;
}

.wwp-saved-locations {
	margin-top: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 13px;
}

.wwp-saved-label {
	opacity: 0.85;
	margin-right: 4px;
}

.wwp-saved-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wwp-chip {
	background: rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 12px;
}

.wwp-chip:hover {
	background: rgba(255, 255, 255, 0.4);
}

.wwp-chip .wwp-chip-remove {
	opacity: 0.7;
	font-weight: bold;
}

.wwp-chip .wwp-chip-remove:hover {
	opacity: 1;
}

.wwp-status {
	margin-top: 12px;
	font-size: 13px;
	min-height: 18px;
	opacity: 0.9;
}

.wwp-result {
	margin-top: 10px;
}

.wwp-current {
	text-align: center;
	padding: 10px 0 6px;
}

.wwp-location-name {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.95;
}

.wwp-temp-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
}

.wwp-icon {
	font-size: 42px;
	line-height: 1;
}

.wwp-temp {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.wwp-condition {
	margin-top: 2px;
	font-size: 15px;
	opacity: 0.95;
}

.wwp-feels-like {
	font-size: 13px;
	opacity: 0.8;
	margin-top: 2px;
}

.wwp-details {
	display: flex;
	justify-content: space-around;
	margin-top: 14px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 10px 6px;
}

.wwp-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 13px;
	gap: 2px;
}

.wwp-detail-label {
	opacity: 0.8;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.wwp-save-btn {
	margin-top: 14px;
	width: 100%;
}

.wwp-forecast {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.wwp-forecast-day {
	flex: 1;
	text-align: center;
	font-size: 12px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 8px 4px;
}

.wwp-forecast-day .wwp-fc-label {
	font-weight: 600;
	margin-bottom: 4px;
}

.wwp-forecast-day .wwp-fc-icon {
	font-size: 20px;
}

.wwp-forecast-day .wwp-fc-temps {
	margin-top: 4px;
	opacity: 0.9;
}

@media (max-width: 460px) {
	.wwp-widget {
		max-width: 100%;
	}

	.wwp-forecast {
		flex-wrap: wrap;
	}

	.wwp-forecast-day {
		flex: 1 1 30%;
	}
}
