/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #6ECEDA;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-top: 88px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(45, 130, 142, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* Temperature Toggle */
.temperature-toggle {
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.account-btn {
  background: white;
  border: none;
  border-radius: 25px;
  padding: 0.55rem 1.1rem;
  color: #2d828e;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.account-btn:hover {
  background: #f0f9fb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.location-picker {
  position: relative;
}

.location-toggle {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 180px;
}

.location-chevron {
  font-size: 0.75rem;
  opacity: 0.8;
}

.location-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 240px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 100;
}

.location-list {
  max-height: 240px;
  overflow-y: auto;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: white;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.location-item:hover,
.location-item.active {
  background: #f0f9fb;
}

.location-item-name {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.location-item-city {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.15rem;
}

.location-add-btn {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  background: #6ECEDA;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.location-add-btn:hover {
  background: #5bb8c4;
}

.unit-toggle {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1.25rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.unit-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.unit-toggle:active {
  transform: translateY(0);
}

/* Main content */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: calc(100vh - 88px);
}

/* Loading state */
.loading {
  text-align: center;
  color: white;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

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

/* Error state */
.error {
  background: rgba(255, 255, 255, 0.95);
  color: #e74c3c;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  max-width: 500px;
}

.error-icon {
  margin: 0 auto 0.5rem;
}

/* Minimal icon system */
.icon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.icon--sm {
  width: 36px;
  height: 36px;
}

.icon--md {
  width: 48px;
  height: 48px;
}

.icon--lg {
  width: 56px;
  height: 56px;
}

.weather-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 0.25rem;
  animation: float 3s ease-in-out infinite;
}

.icon--sun {
  background: #FFD93D;
  border-radius: 50%;
}

.icon--moon {
  background: #F5F0E1;
  border-radius: 50%;
}

.icon--cold {
  background: #A8D8EA;
  border-radius: 50%;
}

.icon--partly-cloudy::before,
.icon--partly-cloudy::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.icon--partly-cloudy::before {
  width: 62%;
  height: 62%;
  top: 8%;
  left: 8%;
  background: #FFD93D;
}

.icon--partly-cloudy::after {
  width: 68%;
  height: 38%;
  bottom: 12%;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: -18px 4px 0 -4px rgba(255, 255, 255, 0.92);
}

.icon--cloud::before {
  content: '';
  position: absolute;
  width: 78%;
  height: 38%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: -22px 6px 0 -6px rgba(255, 255, 255, 0.88),
              22px 6px 0 -6px rgba(255, 255, 255, 0.88);
}

.icon--rain::before,
.icon--rain::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.icon--rain::before {
  width: 72%;
  height: 34%;
  top: 18%;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: -20px 5px 0 -5px rgba(255, 255, 255, 0.82),
              20px 5px 0 -5px rgba(255, 255, 255, 0.82);
}

.icon--rain::after {
  width: 4px;
  height: 22%;
  bottom: 14%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: -18px 0 0 rgba(255, 255, 255, 0.75),
              18px 0 0 rgba(255, 255, 255, 0.75);
}

.icon--snow::before,
.icon--snow::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.icon--snow::before {
  width: 72%;
  height: 34%;
  top: 18%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: -20px 5px 0 -5px rgba(255, 255, 255, 0.92),
              20px 5px 0 -5px rgba(255, 255, 255, 0.92);
}

.icon--snow::after {
  width: 10px;
  height: 10px;
  bottom: 18%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: -20px 8px 0 rgba(255, 255, 255, 0.95),
              20px 8px 0 rgba(255, 255, 255, 0.95);
}

.icon--storm::before {
  content: '';
  position: absolute;
  width: 78%;
  height: 36%;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: -22px 6px 0 -6px rgba(255, 255, 255, 0.72),
              22px 6px 0 -6px rgba(255, 255, 255, 0.72);
}

.icon--storm::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 14px solid #FFD93D;
}

.icon--fog::before {
  content: '';
  position: absolute;
  width: 78%;
  height: 6px;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.62),
              0 36px 0 rgba(255, 255, 255, 0.72);
}

.icon--wind::before,
.icon--wind::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 70%;
  height: 3px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

.icon--wind::before {
  top: 34%;
  transform: translateX(-50%);
}

.icon--wind::after {
  top: 58%;
  width: 52%;
  transform: translateX(-30%);
}

.icon--warning::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  clip-path: polygon(50% 8%, 92% 88%, 8% 88%);
}

.icon--warning::after {
  content: '!';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: #e74c3c;
}

.storm-alert .icon--warning::after {
  color: #c0392b;
}

.error .icon--warning::before {
  background: #e74c3c;
}

.error .icon--warning::after {
  color: white;
}

/* Weather container */
.weather-container {
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Storm Alert */
.storm-alert {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: pulse 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.alert-icon {
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
  text-align: left;
}

.alert-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.alert-message {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.5;
}

/* Weather Main */
.weather-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Temperature Section */
.temperature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.temperature {
  font-size: 10rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.city-name {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.country-name {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* UV Index */
.uv-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.uv-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.uv-reading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.uv-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  min-width: 2.5ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.uv-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.uv-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.uv-level {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.uv-scale-track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.uv-scale-marker {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #FFD93D;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.uv-scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Daily Trend */
.daily-trend {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem 1.25rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.daily-trend .section-title {
  margin-bottom: 0.75rem;
}

.daily-trend-chart {
  width: 100%;
}

.daily-trend-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.daily-trend-axis {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1;
}

.daily-trend-grid {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}

.daily-trend-tick {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1;
}

.daily-trend-axis-label {
  fill: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 500;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.daily-trend-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.daily-trend-point {
  fill: rgba(255, 255, 255, 0.7);
}

.daily-trend-now {
  fill: white;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 6;
}

.daily-trend-label {
  fill: white;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.daily-trend-label-now {
  font-weight: 600;
}

/* Clothing Section */
.clothing-section {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.clothing-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.clothing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  backdrop-filter: blur(5px);
  transition: transform 0.2s, background 0.2s;
}

.clothing-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.3);
}

.clothing-label {
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.clothing-upsell {
  text-align: center;
  padding: 1rem 0;
}

.clothing-upsell-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.clothing-upsell-btn {
  background: white;
  color: #4a9fad;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.clothing-upsell-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-icon {
  flex-shrink: 0;
}

.info-content {
  flex: 1;
  text-align: left;
}

.info-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
  font-size: 0.9rem;
}

.app-version {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Utility classes */
.hidden {
  display: none !important;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.auth-tab {
  flex: 1;
  padding: 0.65rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}

.auth-tab.active {
  border-color: #6ECEDA;
  background: #f0f9fb;
  color: #4a9fad;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: #6ECEDA;
}

.form-group--checkbox {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  color: #555;
  cursor: pointer;
}

.form-error {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-primary {
  width: 100%;
  padding: 0.85rem;
  background: #6ECEDA;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: #5bb8c4;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-group--horizontal {
  flex-direction: row;
}

.option-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.option-card:has(input:checked) {
  border-color: #6ECEDA;
  background: #f0f9fb;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.option-desc {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.15rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
    padding-top: 80px;
  }
  
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .account-btn,
  .location-toggle {
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
  }
  
  .logo {
    font-size: 1.85rem;
  }

  .unit-toggle {
    padding: 0.4rem 1rem;
    font-size: 1rem;
  }
  
  .weather-icon {
    width: 96px;
    height: 96px;
  }
  
  .temperature {
    font-size: 7rem;
  }
  
  .city-name {
    font-size: 1.6rem;
  }
  
  .country-name {
    font-size: 1rem;
  }

  .clothing-section {
    padding: 1.5rem;
  }

  .daily-trend {
    padding: 1.25rem 1rem 1rem;
  }

  .uv-section {
    padding: 1.25rem 1.25rem 1rem;
  }

  .uv-number {
    font-size: 3rem;
  }

  .clothing-items {
    gap: 1rem;
  }

  .clothing-item {
    padding: 0.65rem 1rem;
  }

  .storm-alert {
    flex-direction: column;
    text-align: center;
  }

  .alert-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.5rem 0.75rem;
  }
  
  .logo {
    font-size: 1.6rem;
  }

  .unit-toggle {
    padding: 0.35rem 0.85rem;
    font-size: 0.9rem;
  }
  
  .weather-icon {
    width: 80px;
    height: 80px;
  }
  
  .temperature {
    font-size: 6rem;
  }
  
  .city-name {
    font-size: 1.4rem;
  }
  
  .country-name {
    font-size: 0.9rem;
  }

  .clothing-section {
    padding: 1.25rem;
  }

  .clothing-items {
    gap: 0.75rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}
