/*---- stylesheet main----*/

:root {
    --void: #0a0e1a;
    --void-light: #121829;
    --void-lighter: #1a2040;
    --navy: #1e3a5f;
    --navy-light: #2a4a6f;
    --navy-muted: #3a5a7f;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8923e;
    --gold-glow: rgba(212, 168, 83, 0.3);
    --parchment: #f5f0e1;
    --parchment-muted: #c8c0a8;
    --text-primary: #e8e0d0;
    --text-secondary: #a09888;
    --text-muted: #6b6560;
    --heat-red: #e74c3c;
    --cold-blue: #3498db;
    --rain-blue: #2980b9;
    --storm-purple: #8e44ad;
    --sun-gold: #f1c40f;
    --success: #27ae60;
    --warning: #e67e22;
    --danger: #c0392b;
    --algeria-green: #006233;
    --algeria-red: #d21034;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px var(--gold-glow);
    --shadow-glow: 0 0 40px rgba(212, 168, 83, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    --font-display: 'Tajawal', 'Cairo', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-primary);
    background: var(--void);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh
}

::selection {
    background: var(--gold);
    color: var(--void)
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--void-light)
}

::-webkit-scrollbar-thumb {
    background: var(--navy-muted);
    border-radius: var(--radius-full)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold)
}

#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    transition: transform 0.4s ease, background 0.3s ease
}

.site-header.hidden {
    transform: translateY(-100%)
}

.site-header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4)
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.brand:hover .brand-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px var(--gold-glow)
}

.brand-text {
    display: flex;
    flex-direction: column
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--parchment);
    line-height: 1.2
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px
}

.main-nav {
    display: flex;
    align-items: center
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xs)
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(50%)
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212, 168, 83, 0.08)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%
}

.header-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm)
}

.search-wrapper {
    position: relative
}

.search-input {
    width: 260px;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none
}

.search-input::placeholder {
    color: var(--text-muted)
}

.search-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px var(--gold-glow);
    width: 300px
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none
}

.city-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: var(--void-light);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 280px;
    overflow-y: auto;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease
}

.city-suggestions.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.city-suggestion-item {
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-fast);
    font-size: 0.9rem
}

.city-suggestion-item:hover {
    background: rgba(212, 168, 83, 0.1)
}

.city-suggestion-item .city-name {
    font-weight: 600;
    color: var(--text-primary)
}

.city-suggestion-item .city-region {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.15);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: 1rem
}

.icon-btn:hover {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1)
}

.icon-btn:active {
    transform: scale(0.95)
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--parchment);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-sm)
}

.alert-banner {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--danger), #a93226);
    color: white;
    padding: var(--space-sm) var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-md)
}

.alert-banner.visible {
    transform: translateY(0)
}

.alert-banner.info {
    background: linear-gradient(135deg, var(--navy), var(--navy-light))
}

.alert-banner.warning {
    background: linear-gradient(135deg, var(--warning), #d35400)
}

.alert-banner.success {
    background: linear-gradient(135deg, var(--success), #1e8449)
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s
}

.alert-close:hover {
    opacity: 1
}

.main-content {
    position: relative;
    z-index: 1;
    padding-top: 72px
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg)
}

.hero-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center
}

.weather-cube-container {
    perspective: 1000px;
    width: 280px;
    height: 280px;
    margin: 0 auto
}

.weather-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 20s infinite linear
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(-15deg) rotateY(0deg)
    }

    100% {
        transform: rotateX(-15deg) rotateY(360deg)
    }
}

.cube-face {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(10, 14, 26, 0.95));
    border: 1px solid rgba(212, 168, 83, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    backface-visibility: visible;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 30px rgba(212, 168, 83, 0.1)
}

.cube-face.front {
    transform: translateZ(140px)
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(140px)
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(140px)
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(140px)
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(140px)
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(140px)
}

.cube-face .cube-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
    font-weight: 600
}

.cube-face .cube-temp {
    font-size: 2rem;
    font-weight: 800;
    color: var(--parchment)
}

.hero-content {
    text-align: right
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: var(--space-lg)
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--parchment), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl)
}

.hero-stat {
    text-align: center
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold)
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted)
}

.weather-card {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.6), rgba(10, 14, 26, 0.8));
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px)
}

.weather-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none
}

.weather-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1
}

.weather-location {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs)
}

.weather-city {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--parchment)
}

.weather-country {
    font-size: 0.9rem;
    color: var(--text-muted)
}

.weather-update {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-xs)
}

.weather-update i {
    color: var(--success)
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1
}

.weather-temp-display {
    text-align: center
}

.weather-temp {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--parchment), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.weather-condition {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm)
}

.weather-icon-main {
    font-size: 5rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px var(--gold-glow));
    animation: floatIcon 3s ease-in-out infinite
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.weather-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    position: relative;
    z-index: 1
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-fast)
}

.detail-card:hover {
    background: rgba(212, 168, 83, 0.05);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-3px)
}

.detail-card-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: var(--space-sm)
}

.detail-card-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--parchment)
}

.detail-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-xs)
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    position: relative
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--parchment);
    position: relative;
    padding-right: var(--space-lg)
}

.section-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold), transparent);
    border-radius: var(--radius-full)
}

.section-actions {
    display: flex;
    gap: var(--space-sm)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--void);
    box-shadow: 0 4px 15px var(--gold-glow)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow)
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid rgba(212, 168, 83, 0.15)
}

.btn-secondary:hover {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold);
    border-color: var(--gold)
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent
}

.btn-ghost:hover {
    color: var(--gold);
    background: rgba(212, 168, 83, 0.05)
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed
}

.hourly-section {
    padding: var(--space-3xl) 0
}

.hourly-scroll {
    overflow-x: auto;
    padding-bottom: var(--space-md);
    scrollbar-width: thin;
    scrollbar-color: var(--navy-muted) var(--void-light)
}

.hourly-scroll::-webkit-scrollbar {
    height: 6px
}

.hourly-scroll::-webkit-scrollbar-track {
    background: var(--void-light);
    border-radius: var(--radius-full)
}

.hourly-scroll::-webkit-scrollbar-thumb {
    background: var(--navy-muted);
    border-radius: var(--radius-full)
}

.hourly-container {
    display: flex;
    gap: var(--space-md);
    min-width: max-content
}

.hourly-card {
    min-width: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.hourly-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.hourly-card:hover {
    background: rgba(212, 168, 83, 0.05);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-5px)
}

.hourly-card:hover::before {
    opacity: 1
}

.hourly-time {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm)
}

.hourly-icon {
    font-size: 1.8rem;
    color: var(--parchment);
    margin: var(--space-sm) 0
}

.hourly-temp {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--parchment)
}

.hourly-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs)
}

.forecast-section {
    padding: var(--space-3xl) 0
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-md)
}

.forecast-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.forecast-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.forecast-card:hover {
    background: rgba(212, 168, 83, 0.05);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

.forecast-card:hover::after {
    opacity: 1
}

.forecast-day {
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: var(--space-xs)
}

.forecast-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md)
}

.forecast-icon {
    font-size: 2.5rem;
    color: var(--parchment);
    margin: var(--space-md) 0;
    filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.2))
}

.forecast-condition {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    min-height: 40px
}

.forecast-temps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.forecast-high {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heat-red)
}

.forecast-low {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cold-blue)
}

.sea-section {
    padding: var(--space-3xl) 0
}

.sea-card {
    background: linear-gradient(145deg, rgba(30, 58, 95, 0.5), rgba(10, 14, 26, 0.7));
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden
}

.sea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none
}

.sea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    position: relative;
    z-index: 1
}

.sea-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-fast)
}

.sea-item:hover {
    background: rgba(212, 168, 83, 0.05);
    transform: translateY(-3px)
}

.sea-item-icon {
    font-size: 2.5rem;
    color: var(--cold-blue);
    margin-bottom: var(--space-sm);
    animation: waveBob 2s ease-in-out infinite
}

@keyframes waveBob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.sea-item-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--parchment)
}

.sea-item-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-xs)
}

.sea-tips {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1
}

.sea-tips-title {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm)
}

.sea-tips-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm)
}

.sea-tips-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary)
}

.sea-tips-list li i {
    color: var(--gold);
    font-size: 0.8rem
}

.map-section {
    padding: var(--space-3xl) 0
}

.map-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative
}

.map-wrapper {
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.1)
}

#weatherMap {
    width: 100%;
    height: 100%
}

.map-controls {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    flex-wrap: wrap
}

.map-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid rgba(212, 168, 83, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary)
}

.map-btn:hover {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold);
    border-color: var(--gold)
}

.map-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--void);
    border-color: var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow)
}

.map-legend {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 168, 83, 0.15);
    font-size: 0.85rem;
    z-index: 500;
    min-width: 200px
}

.map-legend h4 {
    margin-bottom: var(--space-sm);
    color: var(--gold);
    font-size: 0.9rem
}

.legend-gradient {
    height: 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xs)
}

.legend-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted)
}

.stats-section {
    padding: var(--space-3xl) 0
}

.stats-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap
}

.stats-tab {
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid rgba(212, 168, 83, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary)
}

.stats-tab:hover {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold)
}

.stats-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--void);
    border-color: var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl)
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.stat-card:hover {
    background: rgba(212, 168, 83, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

.stat-card:hover::before {
    opacity: 1
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--gold)
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--parchment)
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-xs)
}

.stat-change {
    font-size: 0.8rem;
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs)
}

.stat-change.up {
    color: var(--heat-red)
}

.stat-change.down {
    color: var(--cold-blue)
}

.chart-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: 450px;
    position: relative
}

.tips-section {
    padding: var(--space-3xl) 0
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg)
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s
}

.tip-card:hover {
    background: rgba(212, 168, 83, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3)
}

.tip-card:hover::before {
    opacity: 1
}

.tip-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease
}

.tip-card:hover .tip-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.25), rgba(212, 168, 83, 0.1))
}

.tip-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--parchment);
    margin-bottom: var(--space-sm)
}

.tip-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7
}

.tip-severity {
    display: inline-block;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700
}

.tip-severity.high {
    background: rgba(231, 76, 60, 0.15);
    color: var(--heat-red)
}

.tip-severity.medium {
    background: rgba(230, 126, 34, 0.15);
    color: var(--warning)
}

.tip-severity.low {
    background: rgba(39, 174, 96, 0.15);
    color: var(--success)
}

.warnings-section {
    padding: var(--space-3xl) 0
}

.warnings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg)
}

.warning-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s
}

.warning-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

.warning-card:hover::before {
    opacity: 1
}

.warning-card.heat::before {
    background: var(--heat-red)
}

.warning-card.cold::before {
    background: var(--cold-blue)
}

.warning-card.storm::before {
    background: var(--storm-purple)
}

.warning-card.wind::before {
    background: var(--warning)
}

.warning-card.sea::before {
    background: var(--rain-blue)
}

.warning-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md)
}

.warning-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem
}

.warning-icon.heat {
    background: rgba(231, 76, 60, 0.15);
    color: var(--heat-red)
}

.warning-icon.cold {
    background: rgba(52, 152, 219, 0.15);
    color: var(--cold-blue)
}

.warning-icon.storm {
    background: rgba(142, 68, 173, 0.15);
    color: var(--storm-purple)
}

.warning-icon.wind {
    background: rgba(230, 126, 34, 0.15);
    color: var(--warning)
}

.warning-icon.sea {
    background: rgba(41, 128, 185, 0.15);
    color: var(--rain-blue)
}

.warning-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--parchment)
}

.warning-status {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.warning-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md)
}

.warning-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.warning-time {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.warning-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700
}

.warning-badge.active {
    background: rgba(231, 76, 60, 0.2);
    color: var(--heat-red)
}

.warning-badge.watch {
    background: rgba(230, 126, 34, 0.2);
    color: var(--warning)
}

.warning-badge.safe {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success)
}

.news-section {
    padding: var(--space-3xl) 0
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg)
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast)
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 168, 83, 0.2)
}

.news-image {
    height: 180px;
    overflow: hidden;
    position: relative
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.news-card:hover .news-image img {
    transform: scale(1.1)
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.9), transparent)
}

.news-content {
    padding: var(--space-lg)
}

.news-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--space-sm)
}

.news-category.weather {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold)
}

.news-category.alert {
    background: rgba(231, 76, 60, 0.15);
    color: var(--heat-red)
}

.news-category.climate {
    background: rgba(52, 152, 219, 0.15);
    color: var(--cold-blue)
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--parchment);
    margin-bottom: var(--space-sm);
    line-height: 1.5
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md)
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted)
}

.ad-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    margin: var(--space-xl) 0;
    position: relative
}

.ad-label {
    position: absolute;
    top: -10px;
    right: var(--space-md);
    background: var(--void);
    padding: 0 var(--space-sm);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

.ad-placeholder {
    min-height: 90px;
    display: block;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    width: 100%;
    min-height: 250px;
    overflow: hidden;
    text-align: center;
    font-size: 0.85rem
}

.ad-sidebar {
    min-height: 250px
}

.shader-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: var(--space-xl) 0;
    border: 1px solid rgba(212, 168, 83, 0.1)
}

#shaderCanvas {
    width: 100%;
    height: 100%
}

.api-status {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 83, 0.2);
    color: var(--success);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast)
}

.api-status.error {
    color: var(--danger);
    border-color: rgba(192, 57, 43, 0.3)
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--void);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--gold-glow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible
}

.scroll-top:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px var(--gold-glow)
}

.site-footer {
    background: linear-gradient(180deg, var(--void-light), var(--void));
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl)
}

.footer-brand {
    max-width: 300px
}

.footer-brand .brand {
    margin-bottom: var(--space-md)
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-md)
}

.footer-social {
    display: flex;
    gap: var(--space-sm)
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.15);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 1rem
}

.social-link:hover {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px)
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--parchment);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm)
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent)
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: var(--space-sm)
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm)
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: var(--space-sm)
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s
}

.footer-links a:hover i {
    opacity: 1
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: 0.9rem
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.9rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md)
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted)
}

.footer-copyright a {
    color: var(--gold);
    text-decoration: none
}

.footer-copyright a:hover {
    text-decoration: underline
}

.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 168, 83, 0.2);
    border-top-color: var(--gold);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.slide-up {
    animation: slideUp 0.5s ease forwards
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width:1200px) {
    .forecast-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl)
    }
}

@media(max-width:992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-content {
        text-align: center
    }

    .hero-subtitle {
        margin: 0 auto var(--space-xl)
    }

    .hero-stats {
        justify-content: center
    }

    .weather-cube-container {
        margin-bottom: var(--space-xl)
    }

    .forecast-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .warnings-grid {
        grid-template-columns: 1fr
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sea-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .header-inner {
        padding: 0 var(--space-md)
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--void-light);
        padding: var(--space-md);
        border-bottom: 1px solid rgba(212, 168, 83, 0.1)
    }

    .main-nav.active {
        display: block
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-xs)
    }

    .mobile-menu-btn {
        display: block
    }

    .search-input {
        width: 180px
    }

    .search-input:focus {
        width: 200px
    }

    .hero-title {
        font-size: 2.2rem
    }

    .weather-details-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .forecast-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .tips-grid {
        grid-template-columns: 1fr
    }

    .news-grid {
        grid-template-columns: 1fr
    }

    .sea-grid {
        grid-template-columns: 1fr
    }

    .sea-tips-list {
        grid-template-columns: 1fr
    }

    .map-wrapper {
        height: 350px
    }

    .section-title {
        font-size: 1.4rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-brand {
        max-width: 100%
    }

    .footer-social {
        justify-content: center
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%)
    }

    .footer-links a {
        justify-content: center
    }

    .footer-contact-item {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:480px) {
    .forecast-grid {
        grid-template-columns: 1fr
    }

    .weather-temp {
        font-size: 3.5rem
    }

    .hero-title {
        font-size: 1.8rem
    }

    .weather-cube-container {
        width: 200px;
        height: 200px
    }

    .cube-face {
        width: 200px;
        height: 200px
    }

    .cube-face.front {
        transform: translateZ(100px)
    }

    .cube-face.back {
        transform: rotateY(180deg) translateZ(100px)
    }

    .cube-face.right {
        transform: rotateY(90deg) translateZ(100px)
    }

    .cube-face.left {
        transform: rotateY(-90deg) translateZ(100px)
    }

    .cube-face.top {
        transform: rotateX(90deg) translateZ(100px)
    }

    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(100px)
    }
}

.hidden {
    display: none !important
}

.text-center {
    text-align: center
}

.mb-0 {
    margin-bottom: 0
}

.mt-xl {
    margin-top: var(--space-xl)
}





@media (max-width:768px) {

    .header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .brand-text {
        display: none;
    }

    .header-controls {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
        gap: 6px;
    }

    .search-wrapper {
        flex: 1;
        min-width: 0;
    }

    .search-input {
        width: 100%;
        min-width: 0;
    }

    .search-input:focus {
        width: 100%;
    }

    #locationBtn {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
    }

    .mobile-menu-btn {
        flex-shrink: 0;
    }
}

@media (max-width:480px) {

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    #locationBtn {
        width: 34px;
        height: 34px;
    }

    .search-input {
        font-size: 14px;
        padding: 0.55rem 2rem 0.55rem 0.8rem;
    }
}