:root {
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --primary-light: #4D94FF;
    --accent-color: #FF9900;
    --accent-dark: #E68A00;
    --success-color: #00A86B;
    --warning-color: #FF9900;
    --danger-color: #DC3545;
    --dark-color: #1A1E24;
    --darker-color: #0F1114;
    --light-color: #F5F7FA;
    --medium-gray: #6C757D;
    --border-color: #E1E5E9;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    --gradient-light: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    --gradient-subtle: linear-gradient(135deg, #F0F7FF 0%, #E6F0FA 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== ХЕДЕР ===== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 5000;
}

/* Верхняя полоса */
.header-top {
    background: #1A1E24;
    color: white;
    padding: 0.5rem 0;
    position: relative;
    z-index: 5001;
}

.header-top-content {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-content span,
.header-top-content i,
.header-top-content a {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-top-content i {
    color: #0066CC;
}

/* Основная часть шапки */
.header-main {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: relative;
    z-index: 5002;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color);
    white-space: nowrap;
}

.logo-icon {
    font-size: 1.5rem;
    color: #0066CC;
}

.logo-text {
    color: #1A1E24;
}

.logo-text span {
    color: #0066CC;
}

/* Поиск */
.search-form {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    font-size: 1rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-btn {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.125rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #0066CC;
}

/* Действия в шапке */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 9999;
}

.header-contact {
    text-align: right;
    border-right: 1px solid var(--border-color);
    padding-right: 1rem;
    margin-right: 0.5rem;
}

.contact-phone {
    display: block;
    font-weight: 700;
    color: #1A1E24;
    font-size: 1rem;
    white-space: nowrap;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    white-space: nowrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    color: var(--medium-gray);
    position: relative;
    font-weight: 500;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--bg-light);
    color: #0066CC;
}

.action-icon {
    font-size: 1.125rem;
}

.action-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.action-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 5px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    border: 2px solid white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== ПОЛЬЗОВАТЕЛЬСКОЕ МЕНЮ ===== */
.user-menu {
    position: relative;
    display: inline-block;
    z-index: 100000;
}

.user-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    position: relative;
    z-index: 100001;
}

.user-toggle:hover {
    background: var(--bg-light);
    color: #0066CC;
}

.user-menu .dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 0.1rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
    color: var(--medium-gray);
}

.user-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.02);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100002;
    overflow: hidden;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.15s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    background: white;
}

.dropdown-item i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

.dropdown-item:hover i {
    color: white;
}

.dropdown-item.logout {
    color: var(--danger-color);
}

.dropdown-item.logout i {
    color: var(--danger-color);
}

.dropdown-item.logout:hover {
    background: var(--danger-color);
    color: white;
}

.dropdown-item.logout:hover i {
    color: white;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.25rem 0;
}

/* Навигация */
.header-nav {
    background: #1A1E24;
    position: relative;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    display: block;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.15s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

/* ===== МЕГА-МЕНЮ (ИДЕАЛЬНО РОВНОЕ) ===== */
.nav-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 998;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 0 0 1.5rem 1.5rem;
}

.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Контейнер мега-меню */
.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Сетка - ровно 4 колонки одинаковой ширины */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.mega-menu-grid:last-child {
    margin-bottom: 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Карточка категории - все одинаковой высоты */
.mega-category {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mega-category-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.mega-category-header i {
    width: 22px;
    color: var(--primary-color);
    font-size: 1rem;
}

.mega-category-header h3 {
    color: var(--dark-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0;
}

/* Список ссылок */
.mega-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mega-category li {
    margin: 0;
}

.mega-category li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    border-radius: 0.25rem;
}

.mega-category li a i {
    width: 18px;
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.7rem;
    opacity: 0.7;
}

.mega-category li a:hover {
    color: var(--primary-color);
    padding-left: 0.3rem;
}

.mega-category li a:hover i {
    opacity: 1;
}

/* Ссылка "Все" */
.mega-category .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.15s ease;
}

.mega-category .view-all-link i {
    font-size: 0.7rem;
    transition: transform 0.15s ease;
}

.mega-category .view-all-link:hover {
    color: var(--primary-dark);
    gap: 0.7rem;
}

.mega-category .view-all-link:hover i {
    transform: translateX(3px);
}

/* Бренды в виде сетки тегов */
.mega-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.mega-brand-tag {
    padding: 0.35rem 0.9rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.mega-brand-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Спецпредложения */
.mega-specials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-special-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: var(--gradient-subtle);
    border-radius: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.mega-special-link i {
    width: 20px;
    color: var(--accent-color);
}

.mega-special-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.mega-special-link:hover i {
    color: white;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-outline {
    background: transparent;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-outline:hover:not(:disabled) {
    background: #0066CC;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* ===== КАРТОЧКИ ТОВАРОВ ===== */
.product-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #0066CC;
    box-shadow: 0 15px 35px -5px rgba(0, 102, 204, 0.15);
}

.product-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-badge.discount {
    background: var(--danger-color);
}

.product-badge.new {
    background: #0066CC;
}

.product-info {
    padding: 1.5rem;
}

.product-brand {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #0066CC;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066CC;
}

.old-price {
    font-size: 1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===== ФУТЕР ===== */
.footer {
    background: #0F1114;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066CC, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo i {
    color: #0066CC;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
}

.footer-section h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #0066CC;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: #0066CC;
    color: white;
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-icon {
    width: 20px;
    color: #0066CC;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: #0066CC;
}

/* ===== УВЕДОМЛЕНИЯ ===== */
.notification-popup {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100000;
    animation: slideInRight 0.3s ease forwards;
    border-left: 4px solid var(--primary-color);
}

.notification-popup.success {
    border-left-color: var(--success-color);
}

.notification-popup.error {
    border-left-color: var(--danger-color);
}

.notification-popup.warning {
    border-left-color: var(--warning-color);
}

.notification-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.notification-popup.success .notification-icon {
    color: var(--success-color);
}

.notification-popup.error .notification-icon {
    color: var(--danger-color);
}

.notification-popup.warning .notification-icon {
    color: var(--warning-color);
}

.notification-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.5;
}

.notification-close {
    color: #999;
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

/* ===== АНИМАЦИИ ===== */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ОБЩИЕ СТИЛИ ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-link {
    color: #0066CC;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.section-link:hover {
    color: #0052A3;
}

/* Скрываем дубликаты */
.nav-menu .user-menu,
.nav-menu .user-dropdown,
.nav-menu .dropdown-item {
    display: none;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .search-form {
        order: 3;
        max-width: 100%;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .mega-menu {
        max-height: 80vh;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .mega-menu-container {
        padding: 1.25rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .action-text {
        display: none;
    }
    
    .action-btn {
        padding: 0.5rem;
    }
    
    .header-contact {
        display: none;
    }
}