/* Базовые стили */
:root {
    --primary: #000000;
    --primary-dark: #333333;
    --secondary: #666666;
    --light: #f8f8f8;
    --border: #e5e5e5;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #666666;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #FF7E5F 0%, #FEB47B 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: 1px;
}

.logo-text:hover::after {
    width: 100%;
}

/* Навигационное меню */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.4s var(--ease-out);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    transform-origin: left;
    border-radius: 1px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.9), 
        transparent
    );
    transition: left 0.6s var(--ease-in-out);
    z-index: 2;
}

.nav-menu a:hover {
    color: #FF7E5F;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover::before {
    left: 100%;
}

/* Контакты в хедере */
.nav-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: 0.5px;
}

.phone::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -100%;
    width: 100%;
    height: 1px;
    background: var(--gradient-shimmer);
    transition: left 0.6s var(--ease-in-out);
}

.phone:hover::after {
    width: 100%;
}

.phone:hover::before {
    left: 100%;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.6s var(--ease-in-out);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 90vh;
    background: var(--white);
    z-index: 1000;
    padding: 80px 30px 110px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: 1px;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    transition: left 0.6s var(--ease-in-out);
    z-index: 2;
}

.mobile-nav a:hover {
    color: #FF7E5F;
}

.mobile-nav a:hover::after {
    width: 100%;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-contacts {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

/* Герой секция */
.hero {
    padding: 140px 0 80px;
    background: var(--light);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
}

.image-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Секция категорий */
.categories {
    padding: 0 0 80px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.categories-header {
    background: #000000;
    padding: 10px 0;
    margin-bottom: 60px;
}

.categories-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.categories-header .section-title {
    color: #ffffff;
    margin-bottom: 0;
    text-align: left;
    flex: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s var(--ease-in-out);
    z-index: 1;
}



.category-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Эффект затемнения и увеличения при наведении */
.category-image {
    height: 300px;
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.category-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 2;
}

/* Убедитесь, что картинка выше круга */
.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    z-index: 2;
    position: relative;
    left: 80px;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.category-card:hover .category-image {
    background: #f60;
}

.category-card:hover .category-image::before {
    background: rgba(0, 0, 0, 0.1);
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #e9e9e9;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.category-card:hover .category-image::after {
    width: 310px;
    height: 310px;
    background: linear-gradient(135deg, rgba(250, 149, 124, 0.4), rgba(254, 180, 123, 0.4));
}

.category-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.category-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.category-link::after {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-link {
    transform: translateX(5px);
}

.category-card:hover .category-link::after {
    opacity: 1;
    right: -25px;
}

/* Кнопка "Сделать заказ" */
.btn-order {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-order:hover::before {
    left: 100%;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 126, 95, 0.4);
}

/* Преимущества */
.advantages {
    padding: 0 0 80px;
}

.advantages-header {
    background: #000000;
    padding: 10px 0;
    margin-bottom: 60px;
}

.advantages-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.advantages-header .section-title {
    color: #ffffff;
    margin-bottom: 0;
    text-align: left;
    flex: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 126, 95, 0.1), transparent);
    transition: left 0.5s var(--ease-in-out);
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* CTA секция */
.cta {
    padding: 80px 0;
    background: #7f7d7d;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn {
    position: relative;
    overflow: hidden;
    border: none;
}

.cta .btn-primary {
    background: var(--gradient-primary);
}

.cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.6s var(--ease-in-out);
}

.cta .btn-primary:hover::before {
    left: 100%;
}

.cta .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(255, 126, 95, 0.4);
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Футер */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links li a svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover svg {
    opacity: 1;
    color: #FF7E5F;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    width: fit-content;
    overflow: hidden;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: 0.5px;
}

.contact-info a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    transition: left 0.7s var(--ease-in-out);
    z-index: 2;
}

.contact-info a:hover {
    color: #FF7E5F;
}

.contact-info a:hover::after {
    width: 100%;
}

.contact-info a:hover::before {
    left: 100%;
}

.contact-info span {
    color: #999;
    font-size: 12px;
    line-height: 1.4;
}

.footer-note {
    color: #999;
    font-size: 14px;
    margin-top: auto;
}

.footer-note a {
    color: #FF7E5F;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-note a:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-copyright p {
    color: #999;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    width: fit-content;
    overflow: hidden;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: 0.5px;
}

.footer-legal a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    transition: left 0.7s var(--ease-in-out);
    z-index: 2;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-legal a:hover::before {
    left: 100%;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .nav-menu, .nav-contacts {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features {
        align-items: left;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .categories-header,
    .advantages-header {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    
    .categories-header-content,
    .advantages-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .categories-header .section-title,
    .advantages-header .section-title {
        text-align: center;
    }
    
    .btn-order {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .categories-header,
    .advantages-header {
        padding: 25px 0;
        margin-bottom: 30px;
    }
    
    .btn-order {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-contacts {
        gap: 15px;
    }
    
    .contact-item {
        gap: 10px;
    }
}

/* Оптимизация для снижения нагрузки */
@media (prefers-reduced-motion: reduce) {
    .nav-menu a::after,
    .nav-menu a::before,
    .footer-links a::before,
    .footer-links a::after,
    .cta .btn-primary::before,
    .btn::before,
    .category-card::before,
    .advantage-card::before {
        transition: none;
        animation: none;
    }
    
    .nav-menu a:hover::after,
    .footer-links a:hover::before {
        width: 100%;
    }
    
    .nav-menu a:hover::before,
    .footer-links a:hover::after,
    .cta .btn-primary:hover::before,
    .btn:hover::before,
    .category-card:hover::before,
    .advantage-card:hover::before {
        display: none;
    }
}
/* Стили для нового футера */
.wrap {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

.wrap .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.col {
    display: flex;
    flex-direction: column;
}

.col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.col ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s ease;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.col ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out);
    border-radius: 0.5px;
}

.col ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    transition: left 0.7s var(--ease-in-out);
    z-index: 2;
}

.col ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.col ul li a:hover::after {
    width: 100%;
}

.col ul li a:hover::before {
    left: 100%;
}

.col ul li a svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.col ul li a:hover svg {
    opacity: 1;
    color: #FF7E5F;
    transform: scale(1.1);
}

.note {
    color: #999;
    font-size: 14px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #333;
    line-height: 1.5;
}

.note a {
    color: #FF7E5F !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.note a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF7E5F;
    transition: width 0.3s ease;
}

.note a:hover {
    opacity: 0.8;
}

.note a:hover::after {
    width: 100%;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .wrap {
        padding: 40px 0 20px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .col ul {
        gap: 10px;
    }
    
    .col ul li a {
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .grid {
        gap: 25px;
    }
    
    .col h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .col ul li a {
        font-size: 13px;
    }
    
    .note {
        font-size: 13px;
        margin-top: 20px;
        padding-top: 15px;
    }
}

/* Оптимизация для снижения нагрузки */
@media (prefers-reduced-motion: reduce) {
    .col ul li a::after,
    .col ul li a::before,
    .col ul li a,
    .col ul li a svg {
        transition: none;
    }
    
    .col ul li a:hover {
        transform: none;
    }
    
    .col ul li a:hover::after {
        width: 100%;
    }
    
    .col ul li a:hover::before {
        display: none;
    }
}
/* Стильные стеклянные карточки для футера */
.col {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 18px 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    position: relative;
    overflow: hidden;
}

.col::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.col:hover::before {
    left: 100%;
}

.col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Мобильное нижнее меню */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1001;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 10px;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
}

.mobile-bottom-nav .nav-item svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--primary);
}

.mobile-bottom-nav .nav-item:hover svg,
.mobile-bottom-nav .nav-item.active svg {
    transform: scale(1.1);
    color: var(--primary);
}

/* Центральная круглая кнопка */
.mobile-bottom-nav .nav-center {
    position: relative;
    margin-top: -20px;
}

.nav-center-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-center-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.nav-center-btn:hover::before {
    left: 100%;
}

.nav-center-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
}

.nav-center-btn svg {
    color: white;
    width: 22px;
    height: 22px;
}

/* Показываем меню только на мобильных */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Добавляем отступ для контента */
    body {
        padding-bottom: 70px;
    }
}

/* Плавные переходы для хедера */
.header {
    transition: transform 0.3s ease;
}

/* На очень маленьких экранах корректируем отступы */
@media (max-width: 480px) {
    .mobile-bottom-nav .nav-item {
        font-size: 12px;
    }
    
    .nav-center-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-center-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Тонкая фирменная полоса */
.thin-brand-stripe {
    background: #000000;
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
}

/* Сильно размытые края */
.thin-brand-stripe.strong-blur::before {
    mask: linear-gradient(
        90deg,
        transparent 0%,
        black 40%,
        black 60%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent 0%,
        black 40%,
        black 60%,
        transparent 100%
    );
}

/* С эффектом "рассеивания" */
.thin-brand-stripe.scatter-effect::before {
    mask: linear-gradient(
        90deg,
        transparent 0%,
        black 20%,
        black 30%,
        black 70%,
        black 80%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent 0%,
        black 20%,
        black 30%,
        black 70%,
        black 80%,
        transparent 100%
    );
}
/* Тонкая фирменная полоса с размытыми краями */
.thin-brand-stripe {
    background: #000000;
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Тонкая оранжевая линия с градиентом и размытыми краями */
.thin-brand-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #FF7E5F 15%,
        #FEB47B 50%,
        #FF7E5F 85%,
        transparent 100%
    );
    z-index: 1;
    
    /* Добавляем размытие краев */
    mask: linear-gradient(
        90deg,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Анимированный блик по полоске с размытыми краями */
.stripe-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 15%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.8) 85%,
        transparent 100%
    );
    animation: shine 6s infinite;
    animation-delay: 3s;
    z-index: 2;
    
    /* Размытие для блика */
    mask: linear-gradient(
        90deg,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%
    );
}

@keyframes shine {
    0% {
        left: -100%;
    }
    15% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.stripe-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.stripe-logo .logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.stripe-contacts {
    display: flex;
    gap: 30px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-line svg {
    color: #FF7E5F;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-line a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-line a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF7E5F;
    transition: width 0.3s ease;
}

.contact-line:hover a::after {
    width: 100%;
}

.contact-line:hover {
    transform: translateX(3px);
}

.contact-line:hover svg {
    transform: scale(1.1);
    opacity: 1;
    color: #FEB47B;
}

/* Адаптивность для тонкой полосы */
@media (max-width: 768px) {
    .thin-brand-stripe {
        padding: 25px 0 15px;
    }
    
    .stripe-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .stripe-contacts {
        flex-direction: column;
        gap: 12px;
    }
    
    .stripe-logo .logo-text {
        font-size: 22px;
    }
    
    .contact-line a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .thin-brand-stripe {
        padding: 20px 0 12px;
    }
    
    .stripe-logo .logo-text {
        font-size: 20px;
    }
    
    .contact-line a {
        font-size: 13px;
    }
    
    .stripe-shine {
        animation-duration: 4s;
    }
}

/* Дополнительная анимация пульсации для полоски */
@keyframes stripe-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.thin-brand-stripe::before {
    animation: stripe-pulse 3s ease-in-out infinite;
}

  .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: Arial, sans-serif;
        }

        /* Большой оранжевый квадрат */
        .logo-square {
            position: relative;
            width: 50px;
            height: 50px;
            background: #F37043;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Коричневый квадрат внутри */
        .logo-square-inner {
            width: 46px;
            height: 46px;
            background: #561F0F;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Буквы IN */
        .letters-in {
            color: #F37042;
            font-weight: regular;
            font-size: 40px;
            font-family: Arial, sans-serif;
            letter-spacing: -1px;
        }

        /* Текст ИКОПАН справа */
        .logo-text {
            color: #010101;
            font-size: 32px;
            font-weight: bold;
            font-family: Arial, sans-serif;
        }

        /* Альтернативная версия с более точными буквами IN */
        .letters-in-advanced {
            position: relative;
            width: 30px;
            height: 30px;
        }

        .letter-i, .letter-n {
            position: absolute;
            background: #F37042;
        }

        /* Буква I */
        .letter-i {
            width: 6px;
            height: 30px;
            left: 4px;
        }

        /* Буква N */
        .letter-n {
            width: 22px;
            height: 30px;
            left: 12px;
        }

        .letter-n::before {
            content: '';
            position: absolute;
            width: 6px;
            height: 30px;
            background: #F37042;
            left: 0;
        }

        .letter-n::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 30px;
            background: #F37042;
            right: 0;
        }

        /* Стили для слайдера */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: url('img/8.webp');
}

.slide-2 {
    background-image: url('img/6.webp');
}

.slide-3 {
    background-image: url('img/7.webp');
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
    z-index: 2;
}

.image-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

/* Индикаторы слайдов */
.slider-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Кнопки навигации */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--primary);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-indicators {
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 250px;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .image-overlay h3 {
        font-size: 18px;
    }
}

.advantage-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary); /* Черный цвет */
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    color: #FF7E5F; /* Оранжевый при наведении */
    transform: scale(1.1);
}

/* Секция контактов */
.contacts-section {
    padding: 80px 0;
    background: var(--light);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s var(--ease-in-out);
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span,
.contact-item a {
    color: var(--text);
    line-height: 1.4;
    font-size: 14px;
}

.contact-item a {
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: #FF7E5F;
}

/* Карточка дилеров */
.dealer-card {
    display: flex;
    flex-direction: column;
}

.dealer-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.dealer-subtitle {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.dealer-btn {
    margin-top: auto;
    width: 100%;
}

/* Карточка формы */
.form-card {
    grid-column: span 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-btn {
    width: 100%;
    margin-top: 10px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contacts-grid {
        margin-top: 30px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contacts-section {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon svg {
        width: 40px;
        height: 40px;
    }
}
/* Модальное окно для своего видео */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 100%;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .video-container video {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .video-modal {
        padding: 10px;
    }
    
    .video-container video {
        max-height: 50vh;
    }
}

/* Стили для копирайта в футере */
.footer-bottom {
    background: #000000;
    border-top: 1px solid #333;
    padding: 25px 0;
    margin-top: 40px;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
    position: relative;
}

.copyright p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Красивые эффекты при наведении */
.copyright p {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.copyright p::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.copyright:hover p {
    color: #ffffff;
}

.copyright:hover p::after {
    width: 100%;
}

/* Альтернативный вариант с иконкой */
.copyright.with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copyright.with-icon svg {
    width: 16px;
    height: 16px;
    color: #999;
    transition: color 0.3s ease;
}

.copyright.with-icon:hover svg {
    color: #FF7E5F;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .copyright {
        font-size: 13px;
    }
}
/* Стили для выпадающих меню в мобильном навбаре */
.mobile-bottom-nav .dropdown {
    position: relative;
}

.mobile-bottom-nav .nav-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 10px;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    cursor: pointer;
}

/* Крупные стили для выпадающих меню */
.dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    border-radius: 16px; /* Увеличили скругление */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); /* Более заметная тень */
    padding: 12px; /* Увеличили отступы */
    min-width: 200px; /* Увеличили минимальную ширину */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1002;
    margin-bottom: 15px;
    
    /* Гарантируем, что меню не выйдет за экран */
    max-width: calc(100vw - 40px);
    word-wrap: break-word;
    
    /* Улучшаем читаемость */
    border: 2px solid var(--light); /* Добавляем границу */
}

/* Увеличиваем стрелочку */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent; /* Увеличили стрелочку */
    border-top-color: var(--white);
}

/* Позиционирование для первого элемента (Продукция) */
.mobile-bottom-nav .dropdown:nth-child(1) .dropdown-menu {
    left: 25%;
    transform: translateX(-25%) translateY(-10px);
}

/* Позиционирование для второго элемента (Услуги) */
.mobile-bottom-nav .dropdown:nth-child(2) .dropdown-menu {
    left: 75%;
    transform: translateX(-75%) translateY(-10px);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Активное состояние для первого элемента */
.mobile-bottom-nav .dropdown:nth-child(1).active .dropdown-menu {
    transform: translateX(-25%) translateY(0);
}

/* Активное состояние для второго элемента */
.mobile-bottom-nav .dropdown:nth-child(2).active .dropdown-menu {
    transform: translateX(-75%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px; /* Увеличили расстояние между иконкой и текстом */
    padding: 14px 16px; /* Увеличили отступы */
    color: var(--text);
    text-decoration: none;
    border-radius: 12px; /* Увеличили скругление */
    transition: all 0.3s ease;
    font-size: 16px; /* Увеличили размер текста */
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.3;
    
    /* Улучшаем контрастность */
    background: var(--white);
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateX(5px); /* Добавляем анимацию */
}

.dropdown-item svg {
    width: 20px; /* Увеличили иконки */
    height: 20px;
    flex-shrink: 0;
}


/* Увеличиваем основной текст в навбаре */
.mobile-bottom-nav .nav-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 12px; /* Увеличили размер текста */
    gap: 6px; /* Увеличили расстояние */
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    cursor: pointer;
    font-weight: 500; /* Сделали текст полужирным */
}

.mobile-bottom-nav .nav-trigger svg {
    width: 26px; /* Увеличили иконки в навбаре */
    height: 26px;
    transition: all 0.3s ease;
}

/* Оверлей для закрытия при клике вне меню */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1001;
    display: none;
}

.dropdown-overlay.active {
    display: block;
}
@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 140px;
        max-width: calc(100vw - 40px);
    }
    
    .dropdown-item {
        font-size: 11px;
        padding: 8px 10px;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Сдвигаем меню ближе к центру на очень маленьких экранах */
    .mobile-bottom-nav .dropdown:nth-child(1) .dropdown-menu {
        left: 40%;
        transform: translateX(-40%) translateY(-10px);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(2) .dropdown-menu {
        left: 60%;
        transform: translateX(-60%) translateY(-10px);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(1).active .dropdown-menu {
        transform: translateX(-40%) translateY(0);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(2).active .dropdown-menu {
        transform: translateX(-60%) translateY(0);
    }
}

@media (max-width: 360px) {
    .dropdown-menu {
        min-width: 130px;
        max-width: calc(100vw - 30px);
    }
    
    .dropdown-item {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .mobile-bottom-nav .dropdown:nth-child(1) .dropdown-menu {
        left: 45%;
        transform: translateX(-45%) translateY(-10px);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(2) .dropdown-menu {
        left: 55%;
        transform: translateX(-55%) translateY(-10px);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(1).active .dropdown-menu {
        transform: translateX(-45%) translateY(0);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(2).active .dropdown-menu {
        transform: translateX(-55%) translateY(0);
    }
}

/* Увеличиваем центральную кнопку */
.nav-center-btn {
    width: 60px; /* Увеличили центральную кнопку */
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-center-btn svg {
    color: white;
    width: 26px; /* Увеличили иконку в центральной кнопке */
    height: 26px;
}

.nav-center span {
    font-size: 12px; /* Увеличили текст под центральной кнопкой */
    font-weight: 500;
}

@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 180px;
        max-width: calc(100vw - 30px);
        padding: 10px;
    }
    
    .dropdown-item {
        font-size: 15px;
        padding: 12px 14px;
        gap: 10px;
    }
    
    .dropdown-item svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-bottom-nav .nav-trigger {
        font-size: 11px;
    }
    
    .mobile-bottom-nav .nav-trigger svg {
        width: 24px;
        height: 24px;
    }
    
    /* Сдвигаем меню ближе к центру на очень маленьких экранах */
    .mobile-bottom-nav .dropdown:nth-child(1) .dropdown-menu {
        left: 40%;
        transform: translateX(-40%) translateY(-10px);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(2) .dropdown-menu {
        left: 60%;
        transform: translateX(-60%) translateY(-10px);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(1).active .dropdown-menu {
        transform: translateX(-40%) translateY(0);
    }
    
    .mobile-bottom-nav .dropdown:nth-child(2).active .dropdown-menu {
        transform: translateX(-60%) translateY(0);
    }
}

@media (max-width: 360px) {
    .dropdown-menu {
        min-width: 170px;
        max-width: calc(100vw - 20px);
    }
    
    .dropdown-item {
        font-size: 14px;
        padding: 10px 12px;
        white-space: normal; /* Разрешаем перенос текста */
        text-align: left;
    }
    
    .mobile-bottom-nav .nav-trigger {
        font-size: 10px;
    }
    
    .nav-center-btn {
        width: 55px;
        height: 55px;
    }
    
    .nav-center-btn svg {
        width: 24px;
        height: 24px;
    }
}
/* Увеличиваем область клика для пожилых людей */
.dropdown-item {
    min-height: 50px; /* Минимальная высота для удобного тапа */
    align-items: center;
}

/* Делаем активное состояние более заметным */
.mobile-bottom-nav .nav-trigger.active {
    color: var(--primary);
    transform: scale(1.05);
}

.mobile-bottom-nav .nav-trigger.active svg {
    transform: scale(1.15);
    color: var(--primary);
}

/* Улучшаем контрастность для слабовидящих */
.dropdown-menu {
    background: #ffffff;
    border: 2px solid #f0f0f0;
}

.dropdown-item {
    color: #333333; /* Более темный текст для лучшего контраста */
}

/* Добавляем подсветку при фокусе для навигации с клавиатуры */
.dropdown-item:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Стили для страницы стеновых панелей */

/* Хлебные крошки */
.breadcrumbs {
    padding: 20px 0;
    background: var(--light);
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-nav a:hover {
    color: var(--primary);
}

.breadcrumbs-separator {
    color: var(--text-light);
}

.breadcrumbs-current {
    color: var(--primary);
    font-weight: 500;
}

/* Герой секция страницы */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.page-hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.page-hero-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Фильтр категорий */
.categories-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* Сетка панелей */
.panels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.panel-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.panel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.panel-card:hover .panel-image img {
    transform: scale(1.05);
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-card:hover .panel-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quick-view:hover {
    background: var(--primary);
    color: var(--white);
}

.panel-content {
    padding: 24px;
}

.panel-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.panel-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.panel-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.spec-item svg {
    color: var(--primary);
}

.panel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Модальное окно быстрого просмотра */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quick-view-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--light);
}

.quick-view-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.quick-view-content .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 36px;
    }
    
    .panels-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .panel-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .panel-actions .btn {
        width: 100%;
    }
    
    .modal-content {
        margin: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .panels-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-features {
        justify-content: center;
    }
}

/* Хлебные крошки */
.breadcrumbs {
    padding: 20px 0;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    margin-top: 80px; /* Для десктопа */
}

.breadcrumbs-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.breadcrumbs-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.breadcrumbs-nav a:hover {
    color: var(--primary);
}

.breadcrumbs-separator {
    color: var(--text-light);
    margin: 0 2px;
    flex-shrink: 0;
}

.breadcrumbs-current {
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .breadcrumbs {
        padding: 18px 0;
        margin-top: 70px;
    }
    
    .breadcrumbs-nav {
        font-size: 13px;
        gap: 6px;
    }
}

/* Адаптивность для мобильных устройств - ИСПРАВЛЕНИЕ */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 15px 0;
        margin-top: 80px; /* Уменьшаем отступ для мобильных */
        position: relative;
        z-index: 999; /* Выше других элементов */
    }
    
    .breadcrumbs-nav {
        font-size: 12px;
        gap: 4px;
        align-items: center;
    }
    
    .breadcrumbs-nav a {
        white-space: normal;
        line-height: 1.3;
        padding: 2px 0;
    }
    
    .breadcrumbs-current {
        white-space: normal;
        line-height: 1.3;
        max-width: none; /* Убираем ограничение ширины */
    }
    
    .breadcrumbs-separator {
        margin: 0 1px;
    }
}

/* Адаптивность для маленьких мобильных */
@media (max-width: 480px) {
    .breadcrumbs {
        padding: 12px 0;
        margin-top: 80px;
        background: #f8f8f8;
    }
    
    .breadcrumbs-nav {
        font-size: 11px;
        gap: 3px;
    }
    
    .breadcrumbs-current {
        font-size: 11px;
        font-weight: 600; /* Делаем более заметным */
    }
    
    /* Упрощаем на очень маленьких экранах */
    .breadcrumbs-nav a:nth-child(1) {
        display: none; /* Скрываем "Главная" */
    }
    
    .breadcrumbs-nav a:nth-child(2) {
        display: none; /* Скрываем разделитель после Главной */
    }
    
    .breadcrumbs-nav a:nth-child(3)::before {
        content: "← ";
        font-weight: bold;
    }
}

/* Для очень маленьких экранов (менее 360px) */
@media (max-width: 360px) {
    .breadcrumbs {
        padding: 10px 0;
        margin-top: 80px;
    }
    
    .breadcrumbs-nav {
        font-size: 10px;
    }
    
    .breadcrumbs-current {
        font-size: 10px;
    }
}


.panel-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.panel-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.panel-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.panel-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Основные стили кнопок */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

/* Вторичная кнопка (серая) */
.btn-secondary {
    background: var(--gradient-primary);
    color: #ffffff;
    border: 1px solid;
}

.btn-secondary:hover {
    border-color: #0ba553;
}

/* Акцентная кнопка (оранжевая) */
.btn-accent {
    background: linear-gradient(135deg, #FF7E5F 0%, #FEB47B 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #FF6B4A 0%, #FDA269 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

/* Эффект блеска для оранжевой кнопки */
.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

/* Стили для сетки кнопок в карточках */
.panel-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.panel-buttons .btn {
    padding: 12px 8px;
    font-size: 14px;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 768px) {
    .panel-buttons {
        gap: 60px;
    }
    
    .panel-buttons .btn {
        padding: 14px 12px;
        font-size: 15px;
    }
}

/* Стили для модального окна заказа */
#selectedProductInfo {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary);
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}
/* Стили для валидации */
input:valid {
    border-color: var(--border);
}

input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

input:valid:not(:placeholder-shown) {
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

/* Подсказки для полей */
.form-group {
    position: relative;
}

.valid-feedback {
    color: #38a169;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.invalid-feedback {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

input:valid:not(:placeholder-shown) + .valid-feedback {
    display: block;
}

input:invalid:not(:focus):not(:placeholder-shown) + .invalid-feedback {
    display: block;
}

/* Стили для логотипа на карточках категорий */
.category-card {
    position: relative;
    overflow: hidden;
}

/* Логотип с помощью ::before */
.category-card::before {
    content: 'IN';
    position: absolute;
    z-index: 10;
    top: 15px;
    left: 15px;
    
    /* Стили для квадрата с текстом */
    width: 40px;
    height: 40px;
    background-color: #561F0F; /* Коричневый цвет из вашего логотипа */
    color: #F37043; /* Оранжевый цвет текста */
    border: 2px solid #F37043; /* Оранжевая рамка */
    
    /* Центрируем текст */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 35px;
    font-family: Arial, sans-serif;
    letter-spacing: -1px;
    
    /* Тень для лучшей видимости */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Текст "ИКОПАН" рядом с квадратом */
.category-card::after {
    content: 'ИКОПАН';
    position: absolute;
    z-index: 10;
    top: 13px;
    left: 65px; /* 40px (ширина квадрата) + 15px (отступ) + 10px (промежуток) */
    
    color: #ffffff; /* Черный цвет как в логотипе */
    font-weight: 300;
    font-size: 30px;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* Легкая тень для читаемости */
    white-space: nowrap;
}

/* Альтернативный вариант - только квадрат с IN (если текст "ИКОПАН" мешает) */
/*
.category-card::after {
    display: none;
}
*/

/* Адаптивность */
@media (max-width: 768px) {
    .category-card::before {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 10px;
        left: 10px;
    }
    
    .category-card::after {
        font-size: 18px;
        top: 10px;
        left: 55px; /* 35px + 10px + 10px */
    }
}

@media (max-width: 480px) {
    .category-card::before {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 8px;
        left: 8px;
    }
    
    .category-card::after {
        font-size: 16px;
        top: 8px;
        left: 48px; /* 30px + 8px + 10px */
    }
}

/* Для карточек с видео (услуги) - убедимся, что логотип поверх видео */
.category-image {
    position: relative;
}

.category-card::before,
.category-card::after {
    z-index: 11; /* Выше чем видео */
}