:root {
    --honey-gold: #f4b41a;
    --honey-bright: #ffd700;
    --bee-black: #1a1a1a;
    --cream-bg: #fffdf5;
    --forest-green: #2e7d32;
    --earth-brown: #5d4037;
    
    --success-green: #27ae60;
    --warning-orange: #e67e22;
    --info-blue: #3498db;
    --alert-red: #e74c3c;
    --neutral-gray: #607d8b;
    --dark-slate: #34495e;
    
    --bg-white: #ffffff;
    --bg-cream: #fdfbf7;
    --bg-yellow-light: #fffdf5;
    --bg-yellow-warm: #fdf9ea;
    --bg-neutral: #f8f9fa;
    
    --border-light: #e0e0e0;
    --border-medium: #d1ccc0;
    --text-primary: #333;
    --text-secondary: #555;
    --text-muted: #666;
    --text-light: #888;
    --text-faint: #999;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 60px;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--bee-black);
    background-color: var(--cream-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

main {
    flex: 1;
    padding: var(--space-lg) var(--space-md);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--honey-bright);
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
}

h2 {
    font-size: 1.8rem;
    color: var(--earth-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.3rem;
    color: var(--bee-black);
}

p {
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--honey-gold);
}

strong {
    font-weight: 700;
}

.alert-bar {
    background: #000;
    color: var(--honey-gold);
    padding: 10px 20px;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}
.alert-left {
    display: flex;
    gap: 25px;
}
.alert-right a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.alert-right a:hover {
    background: rgba(255, 77, 77, 0.1);
    border-color: #ff4d4d;
}
.main-header {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('images/header.png') center/cover no-repeat;
    padding: 45px 0;
    border-bottom: 3px solid var(--honey-gold);
    backdrop-filter: brightness(1.1);
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.55);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.site-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}
.brand-name {
    color: white;
    font-size: 2.6rem;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.seo-subtitle {
    color: var(--honey-gold);
    font-size: 1.25rem;
    margin: 10px 0 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
nav {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--honey-gold);
}
.nav-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.nav-links a {
    color: #ccc;
    text-decoration: none;
    padding: 18px 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background: #222;
    color: var(--honey-gold);
}
.honey-drip {
    height: 4px;
    background: linear-gradient(90deg, var(--honey-gold), #ffcc33, var(--honey-gold));
    box-shadow: 0 2px 10px rgba(255, 170, 0, 0.3);
    clip-path: none;
}

#location-primer {
    display: none;
    background: #fffcf5;
    border: 2px solid var(--honey-gold);
    padding: 15px;
    border-radius: var(--radius-lg);
    margin: 0 auto 25px auto;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

button, .btn {
    font-family: inherit;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--honey-gold);
    color: var(--bee-black);
    padding: 12px 25px;
}

.btn-primary:hover {
    background: var(--honey-bright);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--forest-green);
    color: white;
    padding: 12px 25px;
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
    padding: 10px 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    font-family: inherit;
    padding: 12px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--honey-gold);
}

.card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.card-bordered {
    border-left: 8px solid var(--honey-gold);
}

.metric-card {
    background: white;
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    gap: 20px;
}

.metric-icon {
    flex: 0 0 60px;
    text-align: center;
    font-size: 2.2rem;
}

.metric-content {
    flex: 1;
    padding: 0 20px;
}

.metric-value {
    text-align: right;
    min-width: 110px;
}

.metric-title {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: bold;
}

.metric-desc {
    margin: 3px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gauge-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    width: 0%;
    transition: width 1s ease;
}

#forecast-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.forecast-card {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.forecast-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #bbb;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.news-filter-btn {
    background: var(--bg-neutral);
    border: 2px solid var(--border-light);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #444;
}

.news-filter-btn:hover {
    background: #eee;
    border-color: #bbb;
    transform: translateY(-1px);
}

.news-filter-btn.active {
    background: var(--btn-color, var(--bee-black));
    color: var(--btn-text, #fff);
    border-color: rgba(0,0,0,0.1);
    box-shadow: var(--shadow-md);
}

.news-filter-btn.active:hover {
    background: var(--hvr-bg);
}

#bee-news-feed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-badge {
    background: var(--honey-gold);
    color: var(--bee-black);
    padding: 8px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    font-size: 0.85rem;
}

footer {
    background: var(--bee-black);
    color: #bbb;
    padding: var(--space-lg) var(--space-md);
    border-top: 5px solid var(--honey-gold);
    margin-top: auto;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.footer-socials a {
    color: var(--honey-gold);
    font-size: 2.2rem;
    transition: transform 0.2s ease;
}

.footer-socials a:hover {
    transform: scale(1.1);
}

.footer-info address {
    font-style: normal;
    line-height: 1.6;
}

.map-frame {
    width: 100%;
    max-width: 300px;
    height: 120px;
    border-radius: var(--radius-md);
    border: 1px solid #444;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--text-muted);
}

.text-light {
    color: var(--text-light);
}

.bee-text {
    text-wrap: balance;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }



@media print {
    nav,
    footer,
    .alert-bar,
    button,
    .btn,
    #location-primer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

:focus-visible {
    outline: 3px solid var(--honey-gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-rotate 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.2em;
}

@keyframes spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}
.location-primer-box {
    display: none;
    background: #222;
    border: 1px solid #444;
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 0 auto 40px;
    max-width: 600px;
    text-align: center;
}

.primer-title {
    margin: 0 0 10px;
    color: var(--honey-gold);
    font-size: 1.2rem;
}

.primer-text {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.primer-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-dismiss {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}

.location-primer-box {
    display: none;
    background: #222;
    border: 1px solid #444;
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 0 auto 40px;
    max-width: 600px;
    text-align: center;
}

.primer-title {
    margin: 0 0 10px;
    color: var(--honey-gold);
    font-size: 1.2rem;
}

.primer-text {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.primer-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-dismiss {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
}
.footer-grid {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-flex-container {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}
.footer-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-text-content {
    flex: 1;
}
.brand-title {
    color: white;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.brand-description {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.95rem;
    color: #999;
    max-width: 700px;
    text-wrap: balance;
}
.copyright-text {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #222;
}
.hidden-metadata {
    display: none;
}

@media (max-width: 768px) {
    section[style*="grid-template-columns: repeat(auto-fit"] > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .header-container {
        justify-content: center;
    }
    .header-brand {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .brand-name {
        font-size: 1.8rem;
    }
    nav {
        padding: 0 5px;
    }
    .nav-links {
        flex-wrap: wrap;
    }
    .nav-links a {
        padding: 12px 15px;
        font-size: 0.75rem;
    }
    #forecast-container {
        flex-direction: column;
        gap: 8px;
    }
    .forecast-card {
        width: 100%;
        padding: 10px 15px;
        text-align: left;
    }
    .footer-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .forecast-legend {
        flex-wrap: wrap !important;
        justify-content: space-around !important;
        padding: 10px !important;
        gap: 8px !important;
    }
    .legend-item {
        font-size: 0.7rem !important;
        gap: 4px !important;
    }
}