/* Import Fonts — Supermolot немає в Google Fonts (API дає 400); для заголовків — Oswald (схожий насичений гротеск) */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/* ============================================================================
   Retail 2025 foundation (brand colors + fonts preserved)
   ========================================================================== */
:root {
    /* Brand (do not change) */
    --brand-primary: #B84632;
    --brand-primary-2: #d65a4a;
    --brand-secondary: #305d4e;
    --brand-secondary-2: #4a7c6b;

    /* Typography */
    --font-body: 'Jura', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-head: 'Oswald', 'Supermolot', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    /* Neutrals */
    --bg: #ffffff;
    --bg-2: #f6f7f9;
    --text: #1f2937;
    --text-2: #4b5563;
    --border: rgba(17, 24, 39, 0.10);

    /* Shape & elevation */
    --radius-1: 10px;
    --radius-2: 14px;
    --shadow-1: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-2: 0 14px 36px rgba(0,0,0,0.12);

    /* Motion */
    --ease: cubic-bezier(.2,.8,.2,1);

    /* Focus */
    --focus-ring: 0 0 0 4px rgba(184, 70, 50, 0.22);

    /* Layout */
    --header-offset: 96px; /* fixed header height + safe spacing for anchor jumps */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--bg);
}

/* Skip link (a11y, 2025 best practice) */
.skip-link {
    position: fixed;
    left: 12px;
    top: 10px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border: 1px solid rgba(17, 24, 39, 0.12);
    box-shadow: var(--shadow-1);
    transform: translateY(-140%);
    transition: transform 180ms var(--ease);
}

.skip-link:focus-visible {
    transform: translateY(0);
}

/* Заміна цифри 0 на букву о в шрифті Jura для кращої читабельності */
body {
    font-variant-numeric: oldstyle-nums;
}

/* Спеціальний клас для заміни нулів на букву о */
.zero-replacement {
    font-family: 'Jura', sans-serif;
}

/* Заміна нулів в телефонних номерах */
.phone-number {
    font-family: 'Jura', sans-serif;
    font-feature-settings: "tnum" 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Accessibility: focus */
:where(a, button, input, textarea, select, .btn, .nav-link):focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Performance/UX: render below-the-fold sections lazily (supported browsers only) */
@supports (content-visibility: auto) {
    section:not(.hero) {
        content-visibility: auto;
        contain-intrinsic-size: 1px 900px;
    }
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 500;
    text-align: center;
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: white;
    box-shadow: 0 8px 25px rgba(184, 70, 50, 0.4);
    font-weight: 600;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(184, 70, 50, 0.35);
    background: linear-gradient(135deg, #d65a4a, #b84632);
}

.btn-secondary {
    background: linear-gradient(135deg, #305d4e, #4a7c6b);
    color: white;
    border: none;
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(48, 93, 78, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4a7c6b, #305d4e);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(48, 93, 78, 0.28);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(48, 93, 78, 0.96), rgba(74, 124, 107, 0.94));
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Scroll progress (subtle, modern) */
.header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: calc(var(--scroll-progress, 0) * 100%);
    background: linear-gradient(90deg, rgba(184,70,50,0.0), rgba(184,70,50,0.95), rgba(214,90,74,0.95));
    border-top-right-radius: 999px;
    box-shadow: 0 4px 10px rgba(184,70,50,0.18);
    pointer-events: none;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Enhanced navbar on scroll */
.header.scrolled {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(20px);
}

.header.scrolled .navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: auto;
    height: clamp(44px, 5vw, 64px);
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #B84632;
}

.nav-menu {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0.40rem 0.70rem;
    border-radius: 8px;
    transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.nav-link:hover {
    color: #B84632;
    background: rgba(255, 255, 255, 0.12);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
    border-color: rgba(184, 70, 50, 0.3);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(184, 70, 50, 0.40);
    color: rgba(255,255,255,0.98);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #B84632;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(184, 70, 50, 0.4);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Special style for Activities link */
.nav-link[href="#activities"] {
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.96) !important;
    font-weight: 700;
}

.nav-link[href="#activities"]:hover {
    background: rgba(255,255,255,0.14);
}

.nav-link[href="#activities"]::after {
    display: none;
}

/* Language switch */
.lang-btn{
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    transition: background 180ms var(--ease), transform 180ms var(--ease), border-color 180ms var(--ease);
}
.lang-btn:hover{
    background: rgba(255,255,255,0.14);
    transform: translateY(-1px);
}
.lang-btn.active{
    background: rgba(184, 70, 50, 0.18);
    border-color: rgba(184, 70, 50, 0.40);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Активний стан гамбургер меню */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Блокування скролу коли меню відкрите */
body.menu-open {
    overflow: hidden;
}

/* Back to top */
.to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1500;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(48, 93, 78, 0.92);
    color: rgba(255,255,255,0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease);
}

.to-top.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.to-top:hover {
    background: rgba(48, 93, 78, 0.98);
    transform: translateY(-2px) scale(1.01);
}

/* 
ПОПЕРЕДНІ СТИЛІ HERO СЕКЦІЇ (для відновлення):

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #305d4e 0%, #4d927c 50%, #6bb08f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}
*/

/* Hero Section - Static Background Design */
.hero {
    padding: clamp(110px, 12vh, 140px) 0 clamp(56px, 8vh, 88px);
    min-height: min(92vh, 860px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/backgroundnew.jpg');
    background-image: image-set(
        url('assets/backgroundnew.jpg.webp') type('image/webp'),
        url('assets/backgroundnew.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Removed slider styles - using static background */

/* Hero Overlay for better text readability - minimal opacity */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(90deg, rgba(11, 18, 32, 0.70), rgba(11, 18, 32, 0.35) 55%, rgba(11, 18, 32, 0.12));
    z-index: 2;
}

/* Removed all geometric background effects */

/* Ensure hero container is above background */
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

/* Removed floating background elements */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glow {
    0% { text-shadow: 0 4px 20px rgba(184, 70, 50, 0.5); }
    100% { text-shadow: 0 4px 30px rgba(184, 70, 50, 0.8), 0 0 40px rgba(184, 70, 50, 0.3); }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes buttonPulse {
    0% { transform: translateY(-3px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
    100% { transform: translateY(-3px) scale(1); }
}

@keyframes logoRotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.02); }
    50% { transform: rotate(0deg) scale(1.05); }
    75% { transform: rotate(-5deg) scale(1.02); }
    100% { transform: rotate(0deg) scale(1); }
}

.hero-title {
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    line-height: 1.1;
}

.highlight {
    color: #B84632;
    position: relative;
    text-shadow: 0 4px 20px rgba(184, 70, 50, 0.5);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #B84632, #d65a4a);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(184, 70, 50, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slogan {
    margin-bottom: 2rem;
}

.hero-slogan h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 700;
    color: #B84632;
    text-align: center;
    text-shadow: 0 4px 20px rgba(184, 70, 50, 0.5);
    background: linear-gradient(135deg, #B84632, #d65a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

.hero-description {
    font-size: clamp(1.0rem, 1.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    text-align: center;
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
    /* Simple container without glass effects */
    padding: 20px;
    max-width: 75%;
    margin: 0 auto 0 40%;
}

.hero-img {
    max-width: 75%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    /* Add rotation animation */
    animation: logoRotate 8s ease-in-out infinite;
}

.hero-img:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Removed slider navigation dots - using static background */

/* Removed glass effects from hero-image */

/* Hero image styles - ensure visibility */
.hero-image .hero-img {
    max-width: 75% !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    object-fit: contain !important;
}

/* Inline hero image in title */
.hero-image-inline {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    max-width: 150px;
    height: 50px;
}

.hero-img-inline {
    height: clamp(64px, 8vw, 96px);
    width: auto;
    vertical-align: middle;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: none;
    transition: all 0.3s ease;
}

.hero-img-inline:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Updated section headers without logos */
.section-header {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 56px);
}

.section-title {
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.2px;
}

.section-subtitle {
    font-size: clamp(1.0rem, 1.4vw, 1.15rem);
    color: var(--text-2);
}

/* About Section */
.about {
    padding: clamp(56px, 6vw, 88px) 0;
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text h3 {
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-secondary);
    text-align: left;
    padding: 18px 18px;
    background: var(--bg-2);
    border-radius: var(--radius-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand-primary);
    margin-bottom: 1.5rem;
}

.naming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.naming-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius-1);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-1);
}

.naming-number {
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
 align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.naming-item p {
    margin: 0;
    color: var(--text-2);
    line-height: 1.5;
}

.about-text ul {
    margin-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #B84632;
    font-weight: bold;
}

.about-stats {
    margin-top: 3rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(48, 93, 78, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B84632, #d65a4a, #B84632);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 20px 20px 0 0;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(48, 93, 78, 0.2);
    border-color: rgba(184, 70, 50, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #B84632, #d65a4a);
}

.stat-card:hover .stat-number {
    color: #B84632;
    transform: scale(1.05);
    text-shadow: 2px 2px 8px rgba(184, 70, 50, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #305d4e, #4a7c6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-card:hover .stat-icon i {
    filter: drop-shadow(0 4px 8px rgba(184, 70, 50, 0.4));
    transform: scale(1.1);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #305d4e;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(48, 93, 78, 0.1);
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #B84632;
    font-weight: 700;
}

/* Animation for stat cards appearance */
.stat-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.3s; }
.stat-card:nth-child(3) { animation-delay: 0.5s; }

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

@keyframes shimmer {
    0% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive design for statistics */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Promo carousel */
#promo{margin-top:72px;padding:20px 0 8px}
#promo .section-title{text-align:center;margin-bottom:16px;letter-spacing:.2px}
.promo-carousel{position:relative;overflow:hidden;border-radius:16px;background:var(--bg-2);border:1px solid var(--border);padding:12px;box-shadow:var(--shadow-1)}
.promo-carousel::before,.promo-carousel::after{content:"";position:absolute;top:12px;bottom:12px;width:36px;pointer-events:none;z-index:2}
.promo-carousel::before{left:12px;background:linear-gradient(90deg,var(--bg-2) 0%,rgba(246,247,249,0) 100%)}
.promo-carousel::after{right:12px;background:linear-gradient(270deg,var(--bg-2) 0%,rgba(246,247,249,0) 100%)}
.promo-track{display:flex;gap:14px;scroll-behavior:smooth;overflow-x:auto;padding:6px 6px 10px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.promo-track::-webkit-scrollbar{height:6px}
.promo-track::-webkit-scrollbar-thumb{background:rgba(17,24,39,0.20);border-radius:99px}
.promo-card{min-width:300px;max-width:460px;flex:0 0 auto;border-radius:14px;background:var(--bg);border:1px solid var(--border);box-shadow:0 6px 14px rgba(0,0,0,.06);scroll-snap-align:start;transition:transform .18s ease, box-shadow .18s ease}
.promo-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-2)}
.promo-card img{width:100%;height:220px;object-fit:cover;border-top-left-radius:14px;border-top-right-radius:14px;display:block;background:var(--bg-2)}
.promo-card .caption{padding:12px 12px 14px;font-size:14px;color:var(--text-2)}
.promo-nav{position:absolute;top:50%;transform:translateY(-50%);background:#B84632;color:#fff;border:none;border-radius:50%;width:40px;height:40px;opacity:.92;cursor:pointer;box-shadow:0 8px 18px rgba(184,70,50,.35);z-index:3}
.promo-nav:hover{opacity:1}
.promo-nav.prev{left:8px}
.promo-nav.next{right:8px}
@media (max-width:768px){.promo-card{min-width:72vw}.promo-card img{height:180px}}

/* Legacy stat-item styles - keeping for compatibility */
.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #305d4e, #4a7c6b);
    border-radius: 15px;
    border-left: 4px solid #B84632;
    box-shadow: 0 5px 15px rgba(48, 93, 78, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(48, 93, 78, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #B84632 !important;
    margin-bottom: 0.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #B84632, #B84632);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(184, 70, 50, 0.3));
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (background-clip: text) {
    .stat-number {
        color: #B84632 !important;
        -webkit-text-fill-color: #B84632 !important;
        text-shadow: 2px 2px 4px rgba(184, 70, 50, 0.5);
    }
    
    .stat-label {
        color: #305d4e !important;
        -webkit-text-fill-color: #305d4e !important;
        text-shadow: 1px 1px 2px rgba(48, 93, 78, 0.3);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .stat-number {
        color: #B84632 !important;
        -webkit-text-fill-color: #B84632 !important;
        text-shadow: none;
        background: none;
    }
    
    .stat-label {
        color: #305d4e !important;
        -webkit-text-fill-color: #305d4e !important;
        text-shadow: none;
        background: none;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .stat-number {
        color: #B84632 !important;
        -webkit-text-fill-color: #B84632 !important;
        text-shadow: 2px 2px 4px rgba(184, 70, 50, 0.5);
        background: none;
    }
    
    .stat-label {
        color: #305d4e !important;
        -webkit-text-fill-color: #305d4e !important;
        text-shadow: 1px 1px 2px rgba(48, 93, 78, 0.3);
        background: none;
    }
    
    .about-stats .stat-item {
        background: linear-gradient(135deg, #305d4e, #4a7c6b);
        border-color: #B84632;
    }
}

.stat-label {
    color: #ffffff !important;
    font-size: 1.2rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    position: relative;
    z-index: 10;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (background-clip: text) {
    .stat-label {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(48, 93, 78, 0.3);
    }
}

/* Values Section with background */
.values {
    padding: 80px 0;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(48, 93, 78, 0.10), transparent 60%),
                radial-gradient(900px 500px at 85% 30%, rgba(184, 70, 50, 0.10), transparent 55%),
                var(--bg-2);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #B84632;
    position: relative;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Value item logo removed - no longer needed */

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.value-item h3 {
    color: #B84632;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Stores Section */
.stores {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

/* Google Maps Section */
.maps-section {
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.maps-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.maps-search h3 {
    color: #B84632;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #B84632;
    box-shadow: 0 0 0 3px rgba(184, 70, 50, 0.1);
}

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 70, 50, 0.3);
}

.search-hint {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

.maps-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.google-maps {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Places API Styles */
.place-info {
    padding: 15px;
    min-width: 200px;
}

.place-info h3 {
    margin: 0 0 10px 0;
    color: #305d4e;
    font-size: 16px;
    font-weight: 600;
}

.place-info p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.btn-directions {
    background: linear-gradient(135deg, #B84632 0%, #A03A2A 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-directions:hover {
    background: linear-gradient(135deg, #A03A2A 0%, #8B2F22 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 70, 50, 0.3);
}

/* Autocomplete dropdown */
.pac-container {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    margin-top: 5px;
}

.pac-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.pac-item:hover {
    background-color: #f8f9fa;
}

.pac-item-selected {
    background-color: #e8f5e8;
}

.pac-matched {
    font-weight: 600;
    color: #305d4e;
}

/* Search Options */
.search-options {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.search-type {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
}

.search-type label:hover {
    background: rgba(48, 93, 78, 0.1);
    border-color: rgba(48, 93, 78, 0.3);
}

.search-type input[type="radio"] {
    margin: 0;
    accent-color: #305d4e;
}

.search-type input[type="radio"]:checked + span {
    color: #305d4e;
    font-weight: 600;
}

.search-type label:has(input:checked) {
    background: rgba(48, 93, 78, 0.15);
    border-color: #305d4e;
}

/* Enhanced Search Box */
.search-box {
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(48, 93, 78, 0.2);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #305d4e;
    box-shadow: 0 0 0 3px rgba(48, 93, 78, 0.1);
    background: rgba(255, 255, 255, 1);
}

.search-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, #305d4e 0%, #2a5245 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2a5245 0%, #244a3e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(48, 93, 78, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Search Results */
.search-results {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px;
    border-bottom: 1px solid rgba(48, 93, 78, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 8px;
}

.search-result-item:hover {
    background: rgba(48, 93, 78, 0.05);
    transform: translateX(5px);
}

.search-result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.search-result-name {
    font-weight: 600;
    color: #305d4e;
    margin-bottom: 4px;
}

.search-result-address {
    font-size: 14px;
    color: #666;
}

/* Results Header */
.results-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(48, 93, 78, 0.1);
}

.results-header h4 {
    margin: 0;
    color: #305d4e;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 30px 20px;
    color: #666;
}

.no-results i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

.no-results h4 {
    margin: 0 0 10px 0;
    color: #305d4e;
    font-size: 18px;
}

.no-results p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-type {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-type label {
        justify-content: center;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-btn {
        min-width: auto;
    }
}

.maps-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
    font-size: 1.1rem;
}

.maps-loading i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #B84632;
}

/* Список магазинів: компактний локатор (багато точок на одній сторінці) */
.stores-locator {
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.stores-locator-head {
    margin-bottom: 1.25rem;
}

.stores-locator-lead {
    margin: 0 0 0.5rem;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 52rem;
}

.stores-locator-meta {
    margin: 0;
    font-size: 0.88rem;
    color: #6c757d;
    font-weight: 500;
}

.stores-locator-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-bottom: 1rem;
    align-items: flex-end;
}

.stores-locator-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 12rem;
}

.stores-locator-field-grow {
    flex: 1 1 16rem;
    min-width: min(100%, 14rem);
}

.stores-locator-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.store-list-select,
.store-list-search {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s ease;
}

.store-list-select:focus,
.store-list-search:focus {
    outline: none;
    border-color: #B84632;
}

.stores-locator-scroll {
    max-height: min(52vh, 520px);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    background: #fafbfc;
    scrollbar-gutter: stable;
}

.stores-locator-list {
    padding: 0.25rem 0;
}

.stores-locator-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.stores-locator-all {
    background: transparent !important;
    color: #B84632 !important;
    border: 2px solid #c94e3c !important;
    box-shadow: none !important;
}

.stores-locator-all:hover {
    background: rgba(184, 70, 50, 0.08) !important;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.85rem 1rem;
    margin: 0 0.35rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid transparent;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.store-row:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: #eee;
}

.store-row--filtered-out,
.store-row--page-hidden {
    display: none !important;
}

.store-row-body {
    flex: 1 1 14rem;
    min-width: 0;
}

.store-row-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.store-row-city {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #B84632;
    background: rgba(184, 70, 50, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.store-row-badge {
    font-size: 0.72rem;
    color: #856404;
    background: #fff3cd;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    font-weight: 600;
}

.store-row-name {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-row-address {
    margin: 0;
    font-size: 0.88rem;
    color: #5c636a;
    line-height: 1.45;
}

.store-row-phone {
    margin-top: 0.35rem;
    font-size: 0.85rem;
}

.store-row-phone a {
    color: #B84632;
    font-weight: 600;
    text-decoration: none;
}

.store-row-phone a:hover {
    text-decoration: underline;
}

.store-row-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.store-row-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    background: #fff;
    color: #495057;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.store-row-btn:hover {
    border-color: #B84632;
    color: #B84632;
}

.store-row-btn-primary {
    border-color: #B84632;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: #fff;
}

.store-row-btn-primary:hover {
    color: #fff;
    filter: brightness(1.05);
}

.store-row-btn span {
    display: none;
}

@media (min-width: 480px) {
    .store-row-btn span {
        display: inline;
    }
}

.store-row-no-coords {
    font-size: 0.78rem;
    color: #868e96;
    max-width: 8rem;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .stores-locator {
        padding: 1.1rem 1rem;
    }

    .stores-locator-scroll {
        max-height: min(48vh, 420px);
    }

    .store-row {
        padding: 0.75rem 0.85rem;
    }
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.store-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Store card logo removed - no longer needed */

.store-image {
    height: 250px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

.store-info {
    padding: 2rem;
}

.store-info h3 {
    color: #B84632;
    margin-bottom: 1rem;
}

.store-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.store-info i {
    color: #B84632;
    width: 20px;
}

.map-btn {
    margin-top: 1rem;
    padding: 10px 16px;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 70, 50, 0.3);
}

/* Responsive Maps */
@media (max-width: 768px) {
    .maps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .maps-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .google-maps {
        height: 300px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
}

 /* Products Section */
.products {
    padding: 80px 0;
    background: white;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.product-category {
    text-align: center;
    padding: clamp(18px, 2.5vw, 28px);
    background: var(--bg);
    border-radius: var(--radius-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-1);
    transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.product-category:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.product-category h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.product-category p {
    color: var(--text-2);
}

/* Activities Section - updated without logos */
.activities {
    padding: clamp(56px, 6vw, 88px) 0;
    background: var(--bg-2);
}

.activities-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.activities-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.activities-logo .activities-logo-img {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.activities-logo .activities-logo-img:hover {
    transform: scale(1.1);
}
 
/* Old activities-grid styles removed - now using carousel */
 
 .activity-category {
    background: #305d4e;
     padding: 2rem;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
 }
 
 .activity-category:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }
 
 .activity-category .category-icon {
     width: 60px;
     height: 60px;
     margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
 }
 
 .activity-category h3 {
    color: white;
     margin-bottom: 1rem;
     text-align: center;
     font-size: 1.3rem;
    font-weight: 700;
 }
 
 .activity-category p {
    color: rgba(255, 255, 255, 0.9);
     text-align: center;
     margin-bottom: 1.5rem;
    font-weight: 500;
 }
 
 .activity-files {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }
 
 .file-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: linear-gradient(135deg, #f8f9fa, #e9ecef);
     border-radius: 10px;
     border-left: 3px solid #305d4e;
 }
 
 .file-item i {
     color: #305d4e;
     font-size: 1.2rem;
     width: 20px;
 }
 
 .file-item span {
     flex: 1;
     color: #333;
     font-size: 0.9rem;
 }
 
 .btn-small {
     padding: 8px 16px;
     font-size: 14px;
    background: linear-gradient(135deg, #B84632, #d65a4a);
     color: white;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
 }
 
 .btn-small:hover {
    transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(184, 70, 50, 0.3);
}

/* Image Preview Styles for Activities */
.file-item-image {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
}

.image-preview {
    text-align: center;
    margin-bottom: 1rem;
}

.activity-preview-img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.activity-preview-img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.file-title {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.file-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
}

 /* Loading and empty states */
 .activities-loading {
     text-align: center;
     padding: 3rem;
     color: #666;
 }

 .activities-loading i {
     font-size: 2rem;
    color: #B84632;
     margin-bottom: 1rem;
 }

 .activities-empty {
     text-align: center;
     padding: 3rem;
     color: #666;
 }

 .activities-empty i {
     font-size: 3rem;
     color: #ccc;
     margin-bottom: 1rem;
 }
 


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-category {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.product-category h3 {
    color: #333;
    margin-bottom: 1rem;
}

.product-category p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.contact-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-logo .contact-logo-img {
    width: 85px;
    height: 85px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-logo .contact-logo-img:hover {
    transform: scale(1.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 2rem;
    color: #B84632;
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    margin-bottom: 0;
    color: #666;
}

.contact-item a {
    color: #B84632;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Спеціальні кольори для соціальних мереж */
.contact-item .fab.fa-facebook {
    color: #1877F2;
}

.contact-item .fab.fa-tiktok {
    color: #000000;
}

.contact-item .fab.fa-instagram {
    color: #E4405F;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B84632;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #B84632;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #B84632;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(184, 70, 50, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #d65a4a, #B84632);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 70, 50, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

.footer-credits {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-credits span {
    color: #999;
}

.footer-credits a {
    color: #B84632;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-credits a i {
    transition: transform 0.3s ease;
}

.footer-credits a:hover i {
    transform: rotate(10deg) scale(1.1);
}

/* Fallback for when Font Awesome is not loaded */
.footer-credits a i:before {
    content: "🤖";
    font-style: normal;
}

/* ============================================================================
НОВІ СТИЛІ ДЛЯ ГОЛОВНОЇ СТОРІНКИ (script-db.js)
============================================================================ */

/* Loading and Error Indicators */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #B84632;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.error-indicator {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.error-message {
    color: #c33;
}

.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Activities Controls */
.activities-controls {
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #B84632;
    box-shadow: 0 0 0 3px rgba(184, 70, 50, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filter {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-filter:hover {
    background: #f8f9fa;
    border-color: #B84632;
}

.category-filter.active {
    background: #B84632;
    color: white;
    border-color: #B84632;
}

/* Activity Cards */
/* Activities Carousel */
.activities-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    align-items: flex-start;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 1rem;
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #305d4e;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    margin-left: 1rem;
}

.carousel-next {
    margin-right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(48, 93, 78, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #305d4e;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(48, 93, 78, 0.6);
}

/* Activity Card in Carousel */
.activity-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
    background: #f8f9fa;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.activity-image:hover {
    transform: scale(1.02);
}

/* Lazy loading стилі */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Плейсхолдер для завантаження */
.activity-image:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.activity-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 150px;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #305d4e;
    margin-bottom: 0.8rem;
    font-family: 'Jura', sans-serif;
}

.activity-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.activity-category {
    background: #305d4e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-date {
    color: #999;
    font-size: 0.9rem;
}

/* Modal для перегляду зображень */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    width: 95vw;
    height: 95vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.image-modal img:hover {
    transform: scale(1.02);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.image-modal-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.image-modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Jura', sans-serif;
}

.image-modal-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive для модального вікна */
@media (min-width: 1920px) {
    .image-modal-content {
        width: 90vw;
        height: 90vh;
        padding: 30px;
    }
    
    .image-modal img {
        max-width: 85vw;
        max-height: 85vh;
    }
}

@media (max-width: 1200px) {
    .image-modal-content {
        width: 98vw;
        height: 98vh;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .image-modal-content {
        width: 100vw;
        height: 100vh;
        padding: 10px;
    }
    
    .image-modal-close {
        top: -35px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .image-modal-info {
        bottom: -50px;
        padding: 0.8rem;
    }
    
    .image-modal-title {
        font-size: 1.1rem;
    }
    
    .image-modal-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .image-modal-content {
        width: 100vw;
        height: 100vh;
        padding: 5px;
    }
    
    .image-modal-close {
        top: -30px;
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }
    
    .image-modal-info {
        bottom: -45px;
        padding: 0.6rem;
    }
    
    .image-modal-title {
        font-size: 1rem;
    }
    
    .image-modal-description {
        font-size: 0.75rem;
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-slide {
        padding: 0 0.5rem;
        min-height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        margin-left: 0.5rem;
    }
    
    .carousel-next {
        margin-right: 0.5rem;
    }
    
    .activity-image {
        max-height: 400px;
    }
    
    .activity-content {
        padding: 1.2rem;
        min-height: 120px;
    }
    
    .activity-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        padding: 0 0.25rem;
        min-height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .activity-image {
        max-height: 300px;
    }
    
    .activity-content {
        padding: 1rem;
        min-height: 100px;
    }
    
    .activity-title {
        font-size: 1.1rem;
    }
}

.activity-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #305d4e;
    color: white;
    font-weight: 600;
    border-radius: 15px 15px 0 0;
}

.activity-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.activity-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.activity-featured {
    color: #f59e0b !important;
    font-weight: 600;
}

.activity-content {
    padding: 1.5rem;
    background: #305d4e;
    color: white;
    border-radius: 0 0 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.activity-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Activity Image */
.activity-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.activity-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-image img:hover {
    transform: scale(1.05);
}

/* Activity End Date */
.activity-end-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-end-date i {
    color: #ff6b6b;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.activity-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.activity-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Store Cards */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.store-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.store-name {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.store-main {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9rem;
}

.store-content {
    padding: 1.5rem;
}

.store-location,
.store-contact,
.store-description {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.store-location i,
.store-contact i {
    margin-top: 0.25rem;
    color: #B84632;
    min-width: 16px;
}

.store-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.store-actions {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.store-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.no-results h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.no-results p {
    color: #888;
    font-size: 1.1rem;
}

/* Modal Windows */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Notifications */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    max-width: 400px;
    z-index: 10001;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f8f9fa;
    color: #333;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-warning {
    border-left: 4px solid #f59e0b;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .activity-actions,
    .store-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

.footer-credits a i.fas:before {
    content: "";
}

.footer-credits a:hover {
    color: #d65a4a;
    text-decoration: underline;
}

.footer-credits strong {
    font-weight: 600;
    color: #B84632;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #305d4e, #4a7c6b);
        width: 100%;
        height: calc(100vh - 70px);
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        margin: 0.5rem 1rem;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        margin: 0.3rem 0;
        border-radius: 8px;
    }
    
    .nav-link[href="#activities"] {
        font-size: 1.2rem;
        padding: 0.9rem 1.5rem;
        margin: 0.5rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        display: block;
        max-width: 100%;
        margin: 2rem auto 0;
        text-align: center;
    }
    
    /* Disable parallax on mobile */
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-logo {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .about-content .about-logo .about-logo-img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .section-header .values-logo .values-logo-img,
    .section-header .activities-logo .activities-logo-img,
    .section-header .contact-logo .contact-logo-img,
    .section-header .stores-logo .stores-logo-img,
    .section-header .products-logo .products-logo-img,
    .section-header .about-header-logo .about-header-logo-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .about-text .about-text-logo .about-text-logo-img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .values-grid .value-item .value-item-logo .value-item-logo-img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .stores-grid .store-card .store-card-logo .store-card-logo-img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
         .values-grid {
         grid-template-columns: 1fr;
     }
     
     .naming-grid {
         grid-template-columns: 1fr;
     }
     
     .activities-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     
     /* activities-grid removed - now using carousel */
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-credits {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Logo sizes for very small screens */
    .section-header .about-header-logo .about-header-logo-img,
    .section-header .values-logo .values-logo-img,
    .section-header .activities-logo .activities-logo-img,
    .section-header .stores-logo .stores-logo-img,
    .section-header .products-logo .products-logo-img,
    .section-header .contact-logo .contact-logo-img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .about-content .about-logo .about-logo-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .about-text .about-text-logo .about-text-logo-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .values-grid .value-item .value-item-logo .value-item-logo-img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .footer-credits {
        font-size: 0.8rem;
        gap: 0.2rem;
    }
    
    .stores-grid .store-card .store-card-logo .store-card-logo-img {
        width: 25px !important;
        height: 25px !important;
    }
    
    .header .logo .logo-img {
        width: 100px !important;
        height: 100px !important;
    }
    
    .footer .logo .logo-img {
        width: 80px !important;
        height: 80px !important;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #B84632;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d65a4a;
}

/* Header and footer logo styles */
.header .logo .logo-img {
    width: 130px !important;
    height: 130px !important;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.footer .logo .logo-img {
    width: 120px !important;
    height: 120px !important;
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Logo visibility styles - simplified for transparent logos */
.header .logo .logo-img,
.footer .logo .logo-img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-image .hero-img {
    display: block !important;
    max-width: 75% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Global logo styles for all devices - simplified */
*[class*="logo"] img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure logos are visible in all contexts - simplified */
.logo img,
.logo-img,
[class*="logo-img"] {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Specific logo selectors for transparent logos */
img[src*="1755103367862542_transparent.png"],
img[src*="1755103368254400_transparent.png"] {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* New logo styles */
img[src*="@logo.png"] {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Force all images to be visible */
img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional logo visibility rules */
.about-header-logo img,
.about-logo img,
.about-text-logo img,
.values-logo img,
.value-item-logo img,
.stores-logo img,
.store-card-logo img,
.products-logo img,
.activities-logo img,
.contact-logo img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Remove white background from logos - gentle approach */
    mix-blend-mode: multiply !important;
}

/* Simple white background removal for logos */
img[src*="1755103367862542.png"],
img[src*="1755103368254400.png"] {
    mix-blend-mode: multiply !important;
    background: transparent !important;
}

/* Force transparent background for logo containers */
.about-header-logo,
.about-logo,
.about-text-logo,
.values-logo,
.value-item-logo,
.stores-logo,
.store-card-logo,
.products-logo,
.activities-logo,
.contact-logo,
.logo {
    background: transparent !important;
}

/* Logo background styles - simplified for transparent logos */
.logo-img,
[class*="logo-img"] {
    background: transparent !important;
}

/* Method 5: Using CSS isolation for better blend mode control */
.logo,
.about-header-logo,
.about-logo,
.about-text-logo,
.values-logo,
.value-item-logo,
.stores-logo,
.store-card-logo,
.products-logo,
.activities-logo,
.contact-logo {
    isolation: isolate !important;
}

/* Method 6: Alternative blend modes */
.logo-img,
[class*="logo-img"] {
    mix-blend-mode: screen !important;
    background: transparent !important;
}

/* Method 7: Using CSS backdrop-filter for background removal */
img[src*="1755103367862542.png"],
img[src*="1755103368254400.png"] {
    backdrop-filter: contrast(1.2) brightness(1.1) !important;
    background: transparent !important;
}

/* Method 8: Force all images to have no background */
img {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Method 9: Advanced blend modes for white background removal */
img[src*="1755103367862542.png"],
img[src*="1755103368254400.png"] {
    mix-blend-mode: color-burn !important;
    background: transparent !important;
}

/* Method 10: Using CSS filters for advanced background removal */
.logo-img,
[class*="logo-img"] {
    filter: 
        brightness(1.05) 
        contrast(1.15) 
        saturate(1.1) 
        hue-rotate(0deg) !important;
    background: transparent !important;
}

/* Method 11: Force logo containers to have specific background colors */
.about-header-logo,
.about-logo,
.about-text-logo,
.values-logo,
.value-item-logo,
.stores-logo,
.store-card-logo,
.products-logo,
.activities-logo,
.contact-logo {
    background: rgba(255, 255, 255, 0) !important;
    background-color: rgba(255, 255, 255, 0) !important;
}

/* Method 12: Using CSS transforms for better visual integration */
img[src*="1755103367862542.png"],
img[src*="1755103368254400.png"] {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
}

/* Hero section enhanced styles */
.hero {
    position: relative;
    overflow: hidden;
}

/* Removed duplicate background overlays */

/* Ensure hero content is above background overlay */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Gallery Section - Horizontal Scroll */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-container {
    position: relative;
    margin-top: 2rem;
}

.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.gallery-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-item {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #B84632, #d65a4a);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(184, 70, 50, 0.3);
}

.gallery-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 70, 50, 0.4);
    background: linear-gradient(135deg, #d65a4a, #B84632);
}

.gallery-nav-btn:active {
    transform: translateY(0);
}

/* Responsive gallery */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 250px;
        height: 250px;
    }
    
    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 200px;
        height: 200px;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Mobile-specific background enhancements */
@media (max-width: 768px) {
    /* Reduce background blur on mobile for better performance */
    .store-card,
    .product-category,
    .value-item,
    .contact-form,
    .stat-item,
    .naming-item,
    .contact-item {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
    
    /* Adjust hero section for mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    /* Removed mobile slider dots */
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-image-inline {
        max-width: 100px;
        height: 40px;
        margin: 0 10px;
    }
    
    .hero-img-inline {
        height: 80px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        font-weight: 600;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .hero-slogan h2 {
        font-size: 1.8rem;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    /* Ensure buttons are visible on mobile */
    .hero .btn {
        margin: 0.5rem;
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Further mobile optimizations */
    .hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
        font-weight: 900;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .hero-slogan h2 {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    /* Hero image for very small screens */
    .hero-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 100%;
        margin: 1.5rem auto 0;
        text-align: center;
    }
    
    .hero-img {
        max-width: 70% !important;
        margin: 0 auto;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure all content is readable on small screens */
    .section-title {
        font-size: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile statistics styling */
    .stat-item {
        padding: 1.5rem;
        margin: 0.5rem 0;
        background: linear-gradient(135deg, #7fb8a8, #6baa9a) !important;
        border: 2px solid #e9ecef !important;
    }
    
    .stat-number {
        font-size: 2.8rem !important;
        color: #B84632 !important;
        -webkit-text-fill-color: #B84632 !important;
        text-shadow: 2px 2px 4px rgba(184, 70, 50, 0.5) !important;
        background: none !important;
    }
    
    .stat-label {
        font-size: 1.1rem !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
        background: none !important;
    }
}

/* Responsive white background for hero */
@media (max-width: 1024px) {
    .hero {
        background-position: left center !important;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('assets/backgroundnew.jpg') !important;
        background-size: cover !important;
        background-position: 10% center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Mobile logo styles */
    .hero-img {
        max-width: 80% !important;
        margin: 0 auto;
        animation: logoRotate 8s ease-in-out infinite;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure hero image container is visible on mobile */
    .hero-image {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 100%;
        margin: 2rem auto 0;
        text-align: center;
    }
    
    /* Mobile hero text styling */
    .hero-title {
        font-size: 2.5rem;
        font-weight: 900;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .hero-slogan h2 {
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    /* Tablet statistics styling */
    .stat-item {
        padding: 1.8rem;
        background: linear-gradient(135deg, #7fb8a8, #6baa9a) !important;
        border: 2px solid #e9ecef !important;
    }
    
    .stat-number {
        font-size: 3rem !important;
        color: #B84632 !important;
        -webkit-text-fill-color: #B84632 !important;
        text-shadow: 2px 2px 4px rgba(184, 70, 50, 0.5) !important;
        background: none !important;
    }
    
    .stat-label {
        font-size: 1.1rem !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
        background: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        background-image: url('assets/backgroundnew.jpg') !important;
        background-size: cover !important;
        background-position: 15% center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Small mobile logo styles */
    .hero-img {
        max-width: 70% !important;
        margin: 0 auto;
        animation: logoRotate 8s ease-in-out infinite;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* ============================================================================
NAVIGATION OPTIMIZATION
============================================================================ */

/* Оптимізація навігації для середніх екранів */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
    }
    
    .nav-item.social-icons {
        margin-left: 0.3rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .social-link i {
        font-size: 13px;
    }
}

/* Додаткові стилі для компактної навігації */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
    }
    
    .nav-link[href="#activities"] {
        font-size: 1.05rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================================================================
NAVIGATION SOCIAL ICONS
============================================================================ */

.nav-item.social-icons {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: 0.3rem;
    padding: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B84632, #d55a42);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 70, 50, 0.4);
    background: linear-gradient(135deg, #d55a42, #B84632);
}

.social-link i {
    font-size: 14px;
}

/* Social icons responsive */
@media (max-width: 768px) {
    .nav-item.social-icons {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
        order: 10; /* Переміщуємо соціальні іконки в кінець меню */
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .social-link i {
        font-size: 18px;
    }
}

/* ============================================================================
HERO BACKGROUND POSITIONING
============================================================================ */

/* Позиціонування фону вже налаштовано в основних стилях hero */

/* ============================================================================
FOOTER SOCIAL LINKS RESPONSIVE
============================================================================ */

@media (max-width: 768px) {
    .social-links {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ============================================================================
   Retail 2025 polish overrides (keep brand colors/fonts)
   These overrides come last to gently modernize without rewriting HTML.
   ========================================================================== */

/* Buttons: less "bouncy", more premium */
.btn {
    border-radius: 999px;
    transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}

/* ============================================================================
   Responsive fixes (mobile-first) + collision-safe utilities
   ========================================================================== */

/* Fix class collisions: `.search-box` is used in multiple sections with different layouts.
   We scope the intended behaviors to their sections to prevent random overrides. */
.maps-search .search-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: static;
    align-items: stretch;
}

.maps-search .search-box input {
    flex: 1;
    min-width: 0;
}

.maps-search .search-btn {
    white-space: nowrap;
}

.activities-controls .search-box {
    position: relative;
    display: block;
    margin-bottom: 1rem;
}

/* Mobile nav/menu: make menu offset match real header height and allow scrolling inside menu */
@media (max-width: 768px) {
    :root {
        --header-offset: 78px;
    }

    .nav-menu {
        top: var(--header-offset);
        height: calc(100vh - var(--header-offset));
        height: calc(100dvh - var(--header-offset));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 3rem;
    }

    /* Maps search row should stack cleanly on phones */
    .maps-search .search-box {
        flex-direction: column;
    }

    .maps-search .search-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --header-offset: 72px;
    }

    .maps-section {
        padding: 1rem;
        border-radius: 16px;
    }

    .google-maps {
        height: 260px;
    }
}

.btn-primary,
.btn-secondary {
    box-shadow: var(--shadow-1);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
    animation: none !important;
    box-shadow: var(--shadow-2);
}

/* Sections & cards: consistent radius + softer shadows */
.card,
.product-category,
.value-item,
.activity-card,
.store-card,
.stat-card,
.naming-item {
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    border: 1px solid var(--border);
}

/* Navigation: reduce heavy effects */
.header {
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.nav-link {
    transition: transform 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease), color 160ms var(--ease);
}

.nav-link:hover {
    transform: translateY(-1px);
}

/* Typography rhythm */
.section-title {
    letter-spacing: 0.2px;
}

.section-subtitle {
    color: var(--text-2);
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.5rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* ============================================================================
CAREER SECTION STYLES
============================================================================ */

.career {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.career-text {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #B84632;
}

.career-text h3 {
    color: #B84632;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.career-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.career-contact {
    background: linear-gradient(135deg, #305d4e, #4a7c6b);
    padding: 1.5rem;
    border-radius: 15px;
    color: white;
}

.career-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.career-phone i {
    font-size: 1.5rem;
    color: #B84632;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-phone strong {
    color: #B84632;
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.career-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.career-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #B84632;
}

.career-form h4 {
    color: #B84632;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.career-form .form-group {
    margin-bottom: 1.5rem;
}

.career-form .form-group input,
.career-form .form-group select,
.career-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Jura', sans-serif;
}

.career-form .form-group input:focus,
.career-form .form-group select:focus,
.career-form .form-group textarea:focus {
    outline: none;
    border-color: #B84632;
    box-shadow: 0 0 0 3px rgba(184, 70, 50, 0.1);
    transform: translateY(-2px);
}

.career-form .form-group select {
    cursor: pointer;
    background: white;
}

.career-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.career-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.career-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 70, 50, 0.6);
}

.career-form .btn i {
    font-size: 1.2rem;
}

/* Career Section Responsive */
@media (max-width: 768px) {
    .career-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .career-text,
    .career-form {
        padding: 1.5rem;
    }
    
    .career-text h3 {
        font-size: 1.5rem;
    }
    
    .career-form h4 {
        font-size: 1.3rem;
    }
    
    .career-phone {
        flex-direction: row;
        text-align: center;
        gap: 0.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        flex-wrap: nowrap;
    }
    
    .career-phone i {
        margin: 0 auto;
    }
    
    .career-phone strong {
        font-size: 1.3rem;
        font-weight: 900;
    }
}

@media (max-width: 480px) {
    .career {
        padding: 60px 0;
    }
    
    .career-text,
    .career-form {
        padding: 1rem;
    }
    
    .career-text h3 {
        font-size: 1.3rem;
    }
    
    .career-form h4 {
        font-size: 1.2rem;
    }
    
    .career-form .form-group input,
    .career-form .form-group select,
    .career-form .form-group textarea {
        padding: 0.8rem;
        font-size: 14px;
    }
    
    .career-form .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .career-phone {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .career-phone strong {
        font-size: 1.2rem;
        font-weight: 900;
    }
}

