.wfp-weather-container {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
}

.wfp-loading {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: #666;
}

.wfp-weather-pro {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* soft shadow */
  max-width: 900px;
  margin: 20px auto;
}

/* Header */
.wfp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.wfp-header-left h2 {
  margin: 0 0 6px 0;
  font-size: 24px !important;
  color: #1e293b;
}

.wfp-header-left p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
}

.wfp-badge {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #ffedd5;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

/* Main Layout */
.wfp-main-content {
  display: flex;
  gap: 32px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .wfp-main-content {
    flex-direction: column;
  }
}

/* Left Card */
.wfp-current-card {
  background: linear-gradient(145deg, #f97316 0%, #ea580c 40%, #dc2626 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
}

.wfp-current-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wfp-current-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 12px;
}

.wfp-current-temp {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.wfp-current-temp .temp-val {
  font-size: 64px;
  font-weight: 700;
}

.wfp-current-temp .temp-unit {
  font-size: 24px;
  font-weight: 500;
  margin-top: 8px;
  margin-left: 4px;
}

.wfp-current-desc {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  text-transform: capitalize;
}

.wfp-current-icon {
  font-size: 72px;
  line-height: 1;
}

.wfp-current-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

.wfp-current-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px 16px;
}

.wfp-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wfp-stat-item .stat-icon {
  font-size: 20px;
  opacity: 0.9;
}

.wfp-stat-item .stat-text {
  display: flex;
  flex-direction: column;
}

.wfp-stat-item .label {
  font-size: 13px;
  opacity: 0.9;
}

.wfp-stat-item .value {
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

/* Right Side Forecasts */
.wfp-forecasts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.wfp-forecasts h3 {
  margin: 0 0 16px 0;
  font-size: 24px !important;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wfp-daily-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.wfp-daily-list::-webkit-scrollbar {
  height: 6px;
}

.wfp-daily-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.wfp-daily-item {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 70px;
}

.day-name {
  font-size: 12px;
  font-weight: 700;
  color: #ea580c;
}

.day-icon {
  font-size: 28px;
  margin: 12px 0;
}

.day-temps {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
}

.day-temps .min {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
}

.day-rain {
  font-size: 12px;
  color: #3b82f6;
  margin-top: 8px;
  font-weight: 600;
}

.wfp-notice {
  padding: 15px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  margin: 20px 0;
  border-radius: 4px;
}
