/* GeonLab Styles - Wide Version */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');




/* Wide Container */
.main-nav {
    display: flex;
    gap: 20px;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}

.nav-item {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

    .nav-item:hover {
        background: #f8f9fa;
    }

.nav-divider {
    height: 1px;
    background: #dee2e6;
    margin: 5px 0;
}

.nav-dropdown:hover .nav-menu {
    display: block;
}

/* Стили для фильтрации */
.filter-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
}



.filter-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.3s ease;
}

    .filter-select:focus {
        border-color: #007bff;
        outline: none;
    }

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
}

    .price-input:focus {
        border-color: #007bff;
        outline: none;
    }

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-filter {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-apply {
    background: #007bff;
    color: white;
}

    .btn-apply:hover {
        background: #0056b3;
    }

.btn-reset {
    background: #6c757d;
    color: white;
}

    .btn-reset:hover {
        background: #545b62;
    }

.sort-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.sort-btn {
    padding: 8px 15px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
}

    .sort-btn.active {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }

    .sort-btn:hover {
        border-color: #007bff;
    }

.results-info {
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
    text-align: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
}

.no-products {
    text-align: center;
    padding: 40px;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

/* Оригинальные стили из вашего кода */
.featured-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}

.section-subtitle {
    text-align: left;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 15px;
    width: 100%;
}

.product-card {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

.product-image {
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 200px; /* Уменьшена высота */
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007bff;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    z-index: 2;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    z-index: 2;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    z-index: 2;
}

.product-info {
    padding: 1rem; /* Уменьшен padding */
    text-align: center;
}

.product-brand {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-brand {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

    .product-title:hover {
        color: #007bff;
    }

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    min-height: 60px;
}

.product-weight {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 8px;
}

    .add-to-cart-btn:hover {
        background: #333;
    }

/* Hero banner styles */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    width: 1200px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-hero:hover {
        background: #ff5252;
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }



.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%; /* ← ИЗМЕНИ НА 100% */
    padding: 0 20px; /* Добавь отступы */
}



/* Header - Wide */
.geonlab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    height: 80px;
}

.logo a {
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Search - Wider */
.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 4rem;
}

    .header-search form {
        display: flex;
        align-items: center;
    }

    .header-search input {
        flex: 1;
        padding: 14px 20px;
        border: 2px solid var(--border-color);
        border-right: none;
        font-size: 16px;
        outline: none;
        height: 52px;
        border-radius: 8px 0 0 8px;
    }

        .header-search input:focus {
            border-color: var(--accent-blue);
        }

    .header-search button {
        padding: 14px 24px;
        background: var(--accent-blue);
        color: white;
        border: 2px solid var(--accent-blue);
        cursor: pointer;
        transition: background 0.2s;
        height: 52px;
        font-size: 16px;
        border-radius: 0 8px 8px 0;
    }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.account-dropdown, .cart-icon {
    position: relative;
}

    .account-link, .cart-icon a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 1.5rem;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.account-text, .cart-text {
    font-size: 15px;
    font-weight: 600;
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    min-width: 220px;
    display: none;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.account-dropdown:hover .account-menu {
    display: block;
}

.account-item {
    display: block;
    padding: 14px 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

    .account-item:hover {
        background: #f8f9fa;
        color: var(--primary-color);
        text-decoration: none;
    }

    .account-item:last-child {
        border-bottom: none;
    }

.account-divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 0;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main Navigation - Wide */
.main-nav {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    background: white;
    justify-content: center;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 1rem 0;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--accent-blue);
    }

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    min-width: 240px;
    display: none;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-dropdown:hover .nav-menu {
    display: block;
}

.nav-menu-item {
    display: block;
    padding: 14px 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

    .nav-menu-item:hover {
        background: #f8f9fa;
        color: var(--primary-color);
        text-decoration: none;
    }

    .nav-menu-item:last-child {
        border-bottom: none;
    }

.all-categories {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 15px;
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 0;
}

/* Hero Banner - Extra Wide */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}





.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-hero {
    background: #000;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

    .btn-hero:hover {
        background: #333;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

/* Main Content - Wide */
.main-content {
    padding: 0;
    min-height: 60vh;
    

}

/* Featured Products - Classic Grid */
.featured-section {
    padding: var(--section-spacing) 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Classic Products Grid - как на всех сайтах */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки на десктопе */
    gap: 30px;
    width: 100%;
}

/* Product Cards */
.product-card {
    background: white;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.product-image {
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 280px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: white;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #28a745;
    color: white;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b6b;
    color: white;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-brand {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: block;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .product-title:hover {
        color: #007bff;
    }

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-weight {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    
    background: #000;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 8px;
}

    .add-to-cart-btn:hover {
        background: #333;
    }

    .add-to-cart-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

/* Categories Section - Wide */
.categories-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 колонки для категорий */
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
    height: 250px;
}

    .category-card:hover {
        transform: translateY(-8px);
    }

    .category-card img {
        
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .category-card:hover img {
        transform: scale(1.1);
    }

.category-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .category-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }






.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
}

    .btn-outline:hover {
        background: white;
        color: #000;
    }

/* Benefits Section - Wide */
.benefits-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки для преимуществ */
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Sidebar */
.categories-sidebar {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.categories-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 10px;
}

.category-link {
    display: block;
    padding: 12px 0;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    font-weight: 500;
}

    .category-link:hover {
        color: #007bff;
        text-decoration: none;
        padding-left: 8px;
    }

.recommended-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.recommended-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

/* Full-width sections */
.full-width-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}








    

