/**
 * Styles pour le plugin AirZen Météo
 * Adapté à la charte graphique AirZen Boost
 */

/* Container principal - Effet Liquid Glass */
.airzen-meteo-current,
.airzen-meteo-forecast,
.airzen-meteo-widget {
	background: linear-gradient(135deg, 
		rgba(97, 247, 176, 0.15) 0%, 
		rgba(255, 255, 255, 0.25) 25%,
		rgba(255, 255, 255, 0.25) 75%,
		rgba(89, 0, 206, 0.15) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-radius: 20px;
	padding: 40px;
	margin: 30px 0;
	box-shadow: 
		0 8px 32px rgba(97, 247, 176, 0.2),
		0 8px 32px rgba(89, 0, 206, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.6),
		inset 0 -1px 0 rgba(97, 247, 176, 0.2);
	font-family: 'Nunito', sans-serif;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.airzen-meteo-current > *,
.airzen-meteo-forecast > * {
	position: relative;
	z-index: 1;
}

.airzen-meteo-current::after,
.airzen-meteo-forecast::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, 
		rgba(255, 255, 255, 0.3) 0%, 
		transparent 70%);
	animation: shimmer 8s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes shimmer {
	0%, 100% {
		transform: translate(-50%, -50%) rotate(0deg);
		opacity: 0.3;
	}
	50% {
		transform: translate(-50%, -50%) rotate(180deg);
		opacity: 0.5;
	}
}

.airzen-meteo-current .airzen-meteo-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(97, 247, 176, 0.5) 25%,
		rgba(89, 0, 206, 0.5) 75%,
		transparent 100%);
	background-size: 200% 100%;
	animation: gradientShift 4s ease infinite;
	border-radius: 24px 24px 0 0;
}

@keyframes gradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.airzen-meteo-current:hover,
.airzen-meteo-forecast:hover {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(50px) saturate(200%);
	-webkit-backdrop-filter: blur(50px) saturate(200%);
	box-shadow: 
		0 16px 48px rgba(0, 0, 0, 0.15),
		0 4px 16px rgba(0, 0, 0, 0.1),
		inset 0 1px 1px rgba(255, 255, 255, 0.95),
		inset 0 -1px 1px rgba(97, 247, 176, 0.15);
	transform: translateY(-8px) scale(1.02);
	border-color: rgba(255, 255, 255, 0.7);
}

/* Météo actuelle */
.airzen-meteo-current .airzen-meteo-header {
	border-bottom: 2px solid rgba(0, 244, 158, 0.15);
	padding-bottom: 20px;
	margin-bottom: 25px;
}

.airzen-meteo-current .airzen-meteo-city {
	margin: 0 0 8px 0;
	font-size: 28px;
	font-weight: 700;
	color: #000;
	font-family: 'Nunito', sans-serif;
	letter-spacing: -0.01em;
}

.airzen-meteo-current .airzen-meteo-date {
	margin: 0;
	color: #666;
	font-size: 15px;
	font-weight: 500;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-current .airzen-meteo-main {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.airzen-meteo-current .airzen-meteo-icon img {
	width: 80px;
	height: 80px;
}

.airzen-meteo-current .airzen-meteo-temp {
	flex: 1;
}

.airzen-meteo-current .airzen-meteo-temp-main {
	font-size: 56px;
	font-weight: 800;
	background: linear-gradient(135deg, #61F7B0 0%, #5900CE 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	line-height: 1;
	margin-bottom: 8px;
	font-family: 'Nunito', sans-serif;
	filter: drop-shadow(0 2px 8px rgba(97, 247, 176, 0.3));
}

.airzen-meteo-current .airzen-meteo-description {
	font-size: 18px;
	color: #666;
	text-transform: capitalize;
	font-weight: 600;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-current .airzen-meteo-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	padding-top: 25px;
	border-top: 2px solid rgba(0, 244, 158, 0.15);
}

.airzen-meteo-current .airzen-meteo-detail-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.4);
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 4px 16px rgba(0, 0, 0, 0.08),
		inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.airzen-meteo-current .airzen-meteo-detail-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #61F7B0 0%, #5900CE 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 15px 15px 0 0;
}

.airzen-meteo-current .airzen-meteo-detail-item:hover {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(25px) saturate(200%);
	-webkit-backdrop-filter: blur(25px) saturate(200%);
	transform: translateY(-4px);
	box-shadow: 
		0 8px 24px rgba(0, 0, 0, 0.12),
		inset 0 1px 1px rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.6);
}

.airzen-meteo-current .airzen-meteo-detail-item:hover::before {
	opacity: 1;
}

.airzen-meteo-current .airzen-meteo-label {
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-current .airzen-meteo-value {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	font-family: 'Nunito', sans-serif;
}

/* Température Min/Max côte à côte */
.airzen-meteo-temp-range {
	grid-column: span 2;
}

.airzen-meteo-temp-minmax {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-top: 8px;
}

.airzen-meteo-temp-min,
.airzen-meteo-temp-max {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding: 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.airzen-meteo-temp-min:hover,
.airzen-meteo-temp-max:hover {
	background: #fff;
	transform: scale(1.05);
}

.airzen-meteo-temp-min .airzen-meteo-temp-label,
.airzen-meteo-temp-max .airzen-meteo-temp-label {
	font-size: 11px;
	font-weight: 600;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-temp-min .airzen-meteo-temp-value {
	font-size: 24px;
	font-weight: 800;
	color: #61F7B0;
	font-family: 'Nunito', sans-serif;
	text-shadow: 0 2px 10px rgba(97, 247, 176, 0.3);
}

.airzen-meteo-temp-max .airzen-meteo-temp-value {
	font-size: 24px;
	font-weight: 800;
	color: #5900CE;
	font-family: 'Nunito', sans-serif;
	text-shadow: 0 2px 10px rgba(89, 0, 206, 0.3);
}

.airzen-meteo-temp-separator {
	font-size: 20px;
	font-weight: 300;
	color: #999;
	font-family: 'Nunito', sans-serif;
}

/* Vent avec icône inclinée */
.airzen-meteo-wind-item {
	grid-column: span 1;
}

.airzen-meteo-wind-content {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.airzen-meteo-wind-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	animation: windPulse 2s ease-in-out infinite;
}

@keyframes windPulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.airzen-meteo-wind-icon svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 2px 8px rgba(97, 247, 176, 0.4));
}

.airzen-meteo-wind-icon svg path:first-child {
	fill: #61F7B0;
}

.airzen-meteo-wind-icon svg circle {
	fill: #61F7B0;
}

.airzen-meteo-wind-icon svg path:last-child {
	fill: #5900CE;
	opacity: 0.7;
}

.airzen-meteo-wind-value {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	font-family: 'Nunito', sans-serif;
}

/* Prévisions */
.airzen-meteo-forecast .airzen-meteo-forecast-title {
	margin: 0 0 25px 0;
	font-size: 24px;
	font-weight: 700;
	color: #000;
	font-family: 'Nunito', sans-serif;
	letter-spacing: -0.01em;
}

.airzen-meteo-forecast .airzen-meteo-forecast-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
}

.airzen-meteo-forecast .airzen-meteo-forecast-day {
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, 
		rgba(97, 247, 176, 0.1) 0%, 
		rgba(255, 255, 255, 0.4) 50%,
		rgba(89, 0, 206, 0.1) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 15px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 
		0 4px 15px rgba(97, 247, 176, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.airzen-meteo-forecast .airzen-meteo-forecast-day:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 
		0 8px 25px rgba(97, 247, 176, 0.2),
		0 8px 25px rgba(89, 0, 206, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	border-color: rgba(255, 255, 255, 0.5);
	background: linear-gradient(135deg, 
		rgba(97, 247, 176, 0.15) 0%, 
		rgba(255, 255, 255, 0.5) 50%,
		rgba(89, 0, 206, 0.15) 100%);
}

.airzen-meteo-forecast .airzen-meteo-forecast-date {
	font-size: 15px;
	font-weight: 700;
	color: #000;
	margin-bottom: 15px;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-forecast .airzen-meteo-forecast-icon img {
	width: 50px;
	height: 50px;
	margin: 10px 0;
}

.airzen-meteo-forecast .airzen-meteo-forecast-temps {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 10px 0;
}

.airzen-meteo-forecast .airzen-meteo-forecast-max {
	font-size: 20px;
	font-weight: 700;
	color: #5900CE;
	font-family: 'Nunito', sans-serif;
	text-shadow: 0 2px 8px rgba(89, 0, 206, 0.3);
}

.airzen-meteo-forecast .airzen-meteo-forecast-min {
	font-size: 18px;
	font-weight: 500;
	color: #666;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-forecast .airzen-meteo-forecast-desc {
	font-size: 13px;
	color: #666;
	text-transform: capitalize;
	font-weight: 500;
	font-family: 'Nunito', sans-serif;
	margin-top: 8px;
}

/* Widget compact */
.airzen-meteo-widget {
	padding: 20px;
	text-align: center;
	max-width: 220px;
}

.airzen-meteo-widget .airzen-meteo-widget-city {
	font-size: 15px;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-widget .airzen-meteo-widget-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 12px;
}

.airzen-meteo-widget .airzen-meteo-widget-icon img {
	width: 55px;
	height: 55px;
}

.airzen-meteo-widget .airzen-meteo-widget-temp {
	font-size: 36px;
	font-weight: 800;
	color: #EF736c;
	font-family: 'Nunito', sans-serif;
}

.airzen-meteo-widget .airzen-meteo-widget-desc {
	font-size: 13px;
	color: #666;
	text-transform: capitalize;
	font-weight: 500;
	font-family: 'Nunito', sans-serif;
}

/* Messages d'erreur */
.airzen-meteo-error {
	background: #fef1f4;
	border: 2px solid #EF736c;
	border-radius: 10px;
	padding: 20px;
	color: #EF736c;
	margin: 30px 0;
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	text-align: center;
}

/* Styles pour la page météo */
.airzen-meteo-page-wrapper {
	width: 100%;
	padding: 60px 20px;
	background: #ffffff;
	min-height: calc(100vh - 200px);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.airzen-meteo-page-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 10;
}

/* Particules flottantes animées */
.floating-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}

.particle {
	position: absolute;
	border-radius: 50%;
	animation: float 20s infinite ease-in-out;
}

.particle-1,
.particle-3,
.particle-5,
.particle-7 {
	background: radial-gradient(circle, rgba(97, 247, 176, 0.3) 0%, rgba(97, 247, 176, 0) 70%);
}

.particle-2,
.particle-4,
.particle-6,
.particle-8 {
	background: radial-gradient(circle, rgba(89, 0, 206, 0.3) 0%, rgba(89, 0, 206, 0) 70%);
}

.particle-1 {
	width: 80px;
	height: 80px;
	left: 10%;
	top: 20%;
	animation-delay: 0s;
	animation-duration: 25s;
}

.particle-2 {
	width: 60px;
	height: 60px;
	left: 80%;
	top: 30%;
	animation-delay: 2s;
	animation-duration: 22s;
}

.particle-3 {
	width: 100px;
	height: 100px;
	left: 50%;
	top: 10%;
	animation-delay: 4s;
	animation-duration: 28s;
}

.particle-4 {
	width: 70px;
	height: 70px;
	left: 20%;
	top: 70%;
	animation-delay: 1s;
	animation-duration: 24s;
}

.particle-5 {
	width: 90px;
	height: 90px;
	left: 70%;
	top: 60%;
	animation-delay: 3s;
	animation-duration: 26s;
}

.particle-6 {
	width: 50px;
	height: 50px;
	left: 5%;
	top: 50%;
	animation-delay: 5s;
	animation-duration: 20s;
}

.particle-7 {
	width: 75px;
	height: 75px;
	left: 90%;
	top: 80%;
	animation-delay: 2.5s;
	animation-duration: 23s;
}

.particle-8 {
	width: 65px;
	height: 65px;
	left: 40%;
	top: 90%;
	animation-delay: 4.5s;
	animation-duration: 27s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) translateX(10px) rotate(5deg);
	}
	50% {
		transform: translateY(-40px) translateX(-10px) rotate(-5deg);
	}
	75% {
		transform: translateY(-20px) translateX(5px) rotate(3deg);
	}
}

.airzen-meteo-page-header {
	margin-bottom: 50px;
	text-align: center;
	padding-bottom: 40px;
	border-bottom: 2px solid rgba(0, 244, 158, 0.15);
	position: relative;
	opacity: 0;
	animation: fadeInUp 1s ease-out 0.3s forwards;
}

.airzen-meteo-page-title {
	font-size: 48px;
	font-weight: 800;
	color: #000;
	margin-bottom: 20px;
	font-family: 'Nunito', sans-serif;
	letter-spacing: -0.02em;
	position: relative;
}

.airzen-meteo-page-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #61F7B0 0%, #5900CE 100%);
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(97, 247, 176, 0.4);
}

.airzen-meteo-page-excerpt {
	font-size: 18px;
	color: #666;
	font-weight: 500;
	font-family: 'Nunito', sans-serif;
	line-height: 1.6;
	margin-top: 30px;
	opacity: 0;
	animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.airzen-meteo-page-content {
	margin-bottom: 40px;
	font-family: 'Nunito', sans-serif;
	line-height: 1.8;
	color: #333;
	opacity: 0;
	animation: fadeInUp 1s ease-out 0.9s forwards;
}

.airzen-meteo-display-section {
	margin-top: 50px;
	opacity: 0;
	animation: fadeInUp 1s ease-out 1.2s forwards;
}

/* Section de recherche */
.airzen-meteo-search-section {
	margin-top: 40px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(40px) saturate(200%);
	-webkit-backdrop-filter: blur(40px) saturate(200%);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.12),
		0 2px 8px rgba(0, 0, 0, 0.08),
		inset 0 1px 1px rgba(255, 255, 255, 0.9);
	opacity: 0;
	animation: fadeInUp 1s ease-out 1.5s forwards;
	position: relative;
	overflow: hidden;
}

.airzen-meteo-search-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(97, 247, 176, 0.05) 0%, 
		transparent 50%,
		rgba(89, 0, 206, 0.05) 100%);
	pointer-events: none;
	z-index: 0;
}

.airzen-meteo-search-section > * {
	position: relative;
	z-index: 1;
}

.airzen-meteo-search-form {
	margin-bottom: 30px;
}

.airzen-meteo-search-input-group {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
	align-items: stretch;
}

.airzen-meteo-search-input {
	flex: 1;
	min-width: 200px;
	padding: 15px 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.06),
		inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.airzen-meteo-search-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(25px) saturate(200%);
	-webkit-backdrop-filter: blur(25px) saturate(200%);
	box-shadow: 
		0 0 0 4px rgba(97, 247, 176, 0.15),
		0 8px 24px rgba(0, 0, 0, 0.1),
		inset 0 1px 1px rgba(255, 255, 255, 0.8);
}


.airzen-meteo-search-button {
	padding: 15px 30px;
	background: linear-gradient(135deg, #61F7B0 0%, #5900CE 100%);
	color: #fff;
	border: none;
	border-radius: 15px;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	box-shadow: 
		0 4px 15px rgba(97, 247, 176, 0.3),
		0 4px 15px rgba(89, 0, 206, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.airzen-meteo-search-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(255, 255, 255, 0.3), 
		transparent);
	transition: left 0.5s;
}

.airzen-meteo-search-button:hover::before {
	left: 100%;
}

.airzen-meteo-search-button:hover {
	transform: translateY(-2px);
	box-shadow: 
		0 8px 25px rgba(97, 247, 176, 0.4),
		0 8px 25px rgba(89, 0, 206, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.airzen-meteo-search-button:active {
	transform: translateY(0);
}

.airzen-meteo-search-button .material-icons {
	font-size: 20px;
}

.airzen-meteo-search-help {
	margin-top: 10px;
}

.airzen-meteo-search-help p {
	margin: 0;
	font-size: 14px;
	color: #666;
	font-family: 'Nunito', sans-serif;
	font-style: italic;
}

/* Chargement */
.airzen-meteo-loading {
	text-align: center;
	padding: 40px;
	margin: 30px 0;
}

.airzen-meteo-spinner {
	border: 4px solid rgba(0, 244, 158, 0.2);
	border-top: 4px solid #00F49E;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.airzen-meteo-loading p {
	margin: 0;
	font-size: 16px;
	color: #666;
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
}

/* Résultats */
.airzen-meteo-results {
	margin-top: 30px;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive pour la recherche */
@media (max-width: 768px) {
	.airzen-meteo-page-wrapper {
		padding: 40px 15px;
	}
	
	.airzen-meteo-search-section {
		padding: 25px 20px;
	}
	
	.particle {
		opacity: 0.2;
	}
	
	.airzen-meteo-search-input-group {
		flex-direction: column;
	}
	
	.airzen-meteo-search-input {
		width: 100%;
		min-width: auto;
	}
	
	.airzen-meteo-search-button {
		width: 100%;
		justify-content: center;
	}
}

/* Section SEO */
.airzen-meteo-seo-section {
	margin-top: 60px;
	padding: 50px 40px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(40px) saturate(200%);
	-webkit-backdrop-filter: blur(40px) saturate(200%);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.12),
		0 2px 8px rgba(0, 0, 0, 0.08),
		inset 0 1px 1px rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
}

.airzen-meteo-seo-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(97, 247, 176, 0.05) 0%, 
		transparent 50%,
		rgba(89, 0, 206, 0.05) 100%);
	pointer-events: none;
	z-index: 0;
}

.airzen-meteo-seo-content {
	position: relative;
	z-index: 1;
}

.airzen-meteo-seo-title {
	font-size: 32px;
	font-weight: 800;
	color: #000;
	margin-bottom: 20px;
	font-family: 'Nunito', sans-serif;
	text-align: center;
	letter-spacing: -0.02em;
}

.airzen-meteo-seo-description {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 40px;
	font-family: 'Nunito', sans-serif;
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.airzen-meteo-cities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 15px;
	margin-bottom: 40px;
}

.airzen-meteo-city-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 16px;
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #000;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.06),
		inset 0 1px 1px rgba(255, 255, 255, 0.7);
	position: relative;
	overflow: hidden;
}

.airzen-meteo-city-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(255, 255, 255, 0.4), 
		transparent);
	transition: left 0.5s;
}

.airzen-meteo-city-button:hover::before {
	left: 100%;
}

.airzen-meteo-city-button:hover {
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(25px) saturate(200%);
	-webkit-backdrop-filter: blur(25px) saturate(200%);
	transform: translateY(-3px);
	box-shadow: 
		0 6px 20px rgba(0, 0, 0, 0.1),
		inset 0 1px 1px rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.6);
}

.airzen-meteo-city-button .material-icons {
	font-size: 20px;
	color: #61F7B0;
	transition: transform 0.3s ease;
}

.airzen-meteo-city-button:hover .material-icons {
	transform: scale(1.2);
	color: #5900CE;
}

.airzen-meteo-seo-footer {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font-family: 'Nunito', sans-serif;
	text-align: center;
}

.airzen-meteo-seo-footer strong {
	color: #000;
	font-weight: 700;
}

@media (max-width: 768px) {
	.airzen-meteo-seo-section {
		padding: 30px 25px;
	}
	
	.airzen-meteo-seo-title {
		font-size: 26px;
	}
	
	.airzen-meteo-seo-description {
		font-size: 15px;
	}
	
	.airzen-meteo-cities-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 12px;
	}
	
	.airzen-meteo-city-button {
		padding: 12px 16px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.airzen-meteo-page-wrapper {
		padding: 30px 15px;
	}
	
	.airzen-meteo-search-section {
		padding: 20px 15px;
	}
	
	.airzen-meteo-seo-section {
		padding: 25px 20px;
	}
	
	.airzen-meteo-cities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.particle {
		opacity: 0.15;
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.airzen-meteo-page-wrapper {
		padding: 30px 20px;
	}
	
	.airzen-meteo-page-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.airzen-meteo-current,
	.airzen-meteo-forecast {
		padding: 25px;
		margin: 20px 0;
	}
	
	.airzen-meteo-current .airzen-meteo-main {
		flex-direction: column;
		text-align: center;
	}
	
	.airzen-meteo-current .airzen-meteo-city {
		font-size: 24px;
	}
	
	.airzen-meteo-current .airzen-meteo-temp-main {
		font-size: 48px;
	}
	
	.airzen-meteo-current .airzen-meteo-details {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.airzen-meteo-temp-range {
		grid-column: span 2;
	}
	
	.airzen-meteo-temp-minmax {
		flex-direction: column;
		gap: 10px;
	}
	
	.airzen-meteo-temp-separator {
		display: none;
	}
	
	.airzen-meteo-forecast .airzen-meteo-forecast-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.airzen-meteo-page-wrapper {
		padding: 20px 16px;
	}
	
	.airzen-meteo-page-title {
		font-size: 32px;
	}
	
	.airzen-meteo-page-excerpt {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.airzen-meteo-current,
	.airzen-meteo-forecast {
		padding: 20px;
		margin: 15px 0;
	}
	
	.airzen-meteo-current .airzen-meteo-details {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.airzen-meteo-temp-range {
		grid-column: span 1;
	}
	
	.airzen-meteo-current .airzen-meteo-detail-item {
		padding: 15px;
	}
	
	.airzen-meteo-temp-minmax {
		flex-direction: row;
		justify-content: space-around;
	}
	
	.airzen-meteo-temp-separator {
		display: block;
	}
	
	.airzen-meteo-forecast .airzen-meteo-forecast-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.airzen-meteo-forecast .airzen-meteo-forecast-day {
		padding: 15px;
	}
	
	.airzen-meteo-page-title {
		font-size: 28px;
	}
	
	.airzen-meteo-page-excerpt {
		font-size: 15px;
	}
}

