* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--site-bg, var(--bg));
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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


/* header */
.site-header {
    background: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    height: 80px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
/* Десктопное меню */
.desktop-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

    .desktop-nav a {
        text-decoration: none;
        color: var(--menu-text);
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .desktop-nav a:hover {
            color: #007bff;
        }

/* Кнопка гамбургер меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 24px;
    height: 18px;
    cursor: pointer;
    gap: 3px;
}

    .mobile-menu-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--menu-text);
        transition: all 0.3s ease;
    }

.btn.ghost-orange.btn-shop {
    background: transparent;
    margin-left: 20px;
    padding: 12px 32px;
    border: 2px solid var(--btn-bg);
    color: var(--btn-bg);
}

/* Мобильное меню */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--menu-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        text-decoration: none;
        color: var(--menu-text);
        font-weight: 500;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

.mobile-nav-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

/* Адаптивность */
@media (max-width: 1050px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-controls {
        display: none;
    }
}

@media (min-width: 1051px) {
    .mobile-nav {
        display: none !important;
    }
}

.brand .logo {
    display: block;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 18px;
    margin-left: 70px;
    align-items: center;
}

    .site-nav a {
        text-decoration: none;
        color: var(--muted);
        font-weight: 500;
    }

.header-controls {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* cards grid */
.three-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.four-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.card {
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}

/* main content spacing */
.main {
    padding:0;
}






/* === FOOTER GRID === */
.footer-grid {
    padding-top: 65px;
    height: 428px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
}

/* === LEFT LINKS === */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-column span {
    display: block;
    margin-bottom: 6px;
}

.footer-links-column a {
    display: block;
    margin-bottom: 12px;
    line-height: 2.5;
}

/* === RIGHT INFO COLUMN === */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Logo already exists, just spacing */
.footer-logo {
    margin-bottom: 8px;
}

/* === DISCLAIMER === */
.footer-disclaimer {
    line-height: 1.5;
}

/* === CONTACTS === */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-contact-item img {
        width: 20px;
        height: 20px;
    }



.desktop-nav a.active { color: var(--btn-bg); }
