body {
   font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
}

 

.phone-number {
    font-sizee: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

.phone-number:hover {
    background: rgba(0, 0, 0, 0.5);
}





.product-page {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.product-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.thumbnail:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    font-size: 28px;
    margin: 0;
    color: #333;
}

.nadfoto {
     font-size: 28px;
    margin: 0;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.article {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    background-color: #f7f7f7;
    padding: 6px 10px;
    border-left: 4px solid #38b000;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    max-width: 280px;
}

.description {
    font-size: 16px;
    line-height: 1.5;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: black;
    background-color: #eff1f0;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    width: 120px; /* фиксированная ширина */
    text-align: center;
    box-shadow: 0 2px 6px rgba(5, 5, 5, 0.2);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.price:hover {
    transform: scale(1.05);
}


.sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-family: "Montserrat", serif;
    font-weight: bold;

}

.size {
    padding: 10px 15px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 5px;
    background-color: #fff;
    transition: background-color 0.2s;
    font-family: "Montserrat", serif;
    font-weight: bold;

}

.size:hover {
    background-color: #f8f8f8;
}

.add-to-cart-form {
    width: 100%; /* Форма растягивается на всю ширину */
    display: flex; /* Используем flexbox */
    justify-content: center; /* Центрируем кнопку внутри формы */
}

.buy-button {
    background: linear-gradient(45deg, #1abc9c, #16a085); /* Градиентный фон в зелёных тонах */
    border: none; /* Убираем рамку */
    border-radius: 8px; /* Скругленные углы */
    color: #fff; /* Белый текст */
   font-family: "Montserrat", serif;
    font-size: 18px; /* Увеличенный размер текста */
    padding: 12px 24px; /* Отступы внутри кнопки */
    cursor: pointer; /* Курсор "рука" при наведении */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Плавный переход */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Лёгкая тень */
    width: 100%;
}

.buy-button:hover {
    transform: translateY(-3px); /* Поднимаем кнопку при наведении */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Увеличиваем тень */
}

.buy-button:active {
    transform: translateY(0); /* Возвращаем на место при клике */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Уменьшаем тень */
}

.buy-button i {
    margin-right: 8px; /* Отступ между иконкой и текстом */
    font-size: 18px; /* Размер иконки */
}





.size.selected {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #0056b3;
    font-family: "Montserrat", serif;
    font-weight: bold;

}




.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.quantity-btn {
    background: #ddd;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #bbb;
}

.quantity {
    font-size: 14px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}
































.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}




.buy-one-click-button {
    background: linear-gradient(45deg, #f39c12, #e74c3c); /* Градиентный фон */
    border: none; /* Убираем рамку */
    border-radius: 8px; /* Скругленные углы */
    color: #fff; /* Белый текст */
     font-family: "Montserrat", serif;
    font-size: 18px; /* Увеличенный размер текста */
    padding: 12px 24px; /* Отступы внутри кнопки */
    cursor: pointer; /* Курсор "рука" при наведении */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Плавный переход */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Легкая тень */
}

.buy-one-click-button:hover {
    transform: translateY(-3px); /* Поднимаем кнопку при наведении */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Увеличиваем тень */
}

.buy-one-click-button:active {
    transform: translateY(0); /* Возвращаем на место при клике */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Уменьшаем тень */
}


.buy-one-click-button i {
    margin-right: 8px; /* Отступ между иконкой и текстом */
    font-size: 20px; /* Размер иконки */
}






































.size-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #222;
    margin-bottom: -5px;
    letter-spacing: 0.5px;
    
}

.sizes {
    display: flex;
 
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    padding: 10px 0 20px;
}


.size {
    padding: 12px 22px;
    border: 2px solid #ddd;
    border-radius: 14px;
    background: #ffffff;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    user-select: none;
    min-width: 56px;
    text-align: center;
    position: relative;
    
}

.size:hover {
    background-color: #f0f8ff;
    border-color: #1e90ff;
    color: #1e90ff;
}

.size.selected {
    background: linear-gradient(145deg, #1e90ff, #4facfe);
    color: #fff;
    border-color: #1e90ff;
    box-shadow: 0 6px 12px rgba(30, 144, 255, 0.35);
    position: relative;
}

.size.selected::after {
    content: "✓";
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fff;
    color: #1e90ff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}




































 .marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #eff1f0;
  padding: 10px 0;
  position: relative;
  margin-top: 15px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scrollText 15s linear infinite;
}

.marquee span {
  white-space: nowrap;
  font-size: 1.2rem;
  padding-right: 50px; /* Расстояние между копиями */
  font-family: 'Montserrat', sans-serif;
  color: #333;
   padding-left: 130px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}































  .main-content {
            flex: 1;
            padding: 40px 20px;
            text-align: center;
           background: linear-gradient(274deg, #ffffff 0%, #f2e0c9 100%);
            color: black;
        }
        
          .main-content h2 {
           font-size: 29px;
        }

        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            color: #ecf0f1;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #f39c12, #2ecc71, #3498db, #9b59b6);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 1.2em;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #f39c12, #e74c3c);
            border-radius: 2px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-section ul li:hover {
            transform: translateX(5px);
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

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

        .footer-section a::before {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-section a:hover::before {
            opacity: 1;
        }

        .newsletter {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.9);
            color: #2c3e50;
            font-size: 14px;
            min-width: 200px;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
        }

        .newsletter-btn {
            padding: 12px 24px;
            background: linear-gradient(45deg, #f39c12, #e74c3c);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::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.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            transform: translateY(-3px) rotate(360deg);
        }

        .social-link.facebook { background: linear-gradient(45deg, #3b5998, #2d4373); }
        .social-link.instagram { background: linear-gradient(45deg, #e4405f, #c13584); }
        .social-link.telegram { background: linear-gradient(45deg, #0088cc, #006699); }
        .social-link.tiktok {   background: linear-gradient(45deg, #25F4EE, #FE2C55); color:black; }

        .footer-middle {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            margin: 30px 0;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .payment-method {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #bdc3c7;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .payment-method:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: #95a5a6;
        }

        .footer-bottom a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #f39c12;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #f39c12, #e74c3c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bdc3c7;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: #f39c12;
            transform: translateX(5px);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                min-width: auto;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .payment-methods {
                justify-content: center;
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(243, 156, 18, 0.3);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { left: 20%; animation-delay: 2s; }
        .floating-element:nth-child(3) { left: 30%; animation-delay: 4s; }
        .floating-element:nth-child(4) { left: 40%; animation-delay: 6s; }
        .floating-element:nth-child(5) { left: 50%; animation-delay: 8s; }
        .floating-element:nth-child(6) { left: 60%; animation-delay: 10s; }
        .floating-element:nth-child(7) { left: 70%; animation-delay: 12s; }
        .floating-element:nth-child(8) { left: 80%; animation-delay: 14s; }
        .floating-element:nth-child(9) { left: 90%; animation-delay: 16s; }
        
        
        
        
        
        
        
        
        
        
        
        
        
        .in-stock-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  background: #e6f9ed;
  color: #218838;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #b2e2c2;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Montserrat', sans-serif;

  /* Новые свойства */
  max-width: 120px;
  text-align: left;
  margin-left: 0;
  text-align: center;
}
























    /* Стили блока характеристик */
.features-section {
  padding: 40px 20px;
  background: #fdfaf5;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.features-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #444;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card i {
  font-size: 32px;
  color: black;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #333;
}

.feature-card p {
  font-size: 15px;
  color: #666;
}

























 .buy-button {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #32d67f, #1abc9c); /* свежий зелёный градиент */
    background-size: 200%;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition:
        background-position 0.4s ease,
        box-shadow 0.3s ease,
        transform 0.2s ease;
    box-shadow:
        0 4px 12px rgba(50, 214, 127, 0.25);
    text-align: center;
}

.buy-button:hover {
    background-position: right center;
    transform: scale(1.04);
    box-shadow:
        0 6px 20px rgba(50, 214, 127, 0.4),
        0 0 10px rgba(50, 214, 127, 0.2) inset;
}

.buy-button:active {
    transform: scale(0.98);
    box-shadow:
        0 3px 10px rgba(50, 214, 127, 0.3) inset;
}











/* Основные стили и типографика */
.main-header {
    background: linear-gradient(to right, #fefefe, #fdfdfd);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1000;
    border-bottom: 5px solid #f2e0c9; /* Золотистая линия для премиум-акцента */
    font-family: 'Montserrat', sans-serif;
    padding-top: 8px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 35px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    position: relative;
}

.logo {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    flex-grow: 1;
    letter-spacing: -1.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Изменения здесь: отдельные контейнеры для левых и правых иконок */
.header-left-icons,
.header-right-icons {
    display: flex;
    align-items: center;
    gap: 25px; /* Пространство между иконками */
}

/* Стиль для всех иконок */
.icon {
    font-size: 1.8rem;
    color: #444;
    transition: color 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}

.icon:hover {
    color: #ffcc00;
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.7));
}

.burger {
    display: none; /* Скрыт по умолчанию, показывается в мобильной версии */
    font-size: 2.2rem;
    cursor: pointer;
    color: #444;
    transition: color 0.3s ease;
    margin-left: 5px; /* Небольшой отступ от корзины */
}

.burger:hover {
    color: #ffcc00;
}

/* Основная навигация */
.main-nav {
    display: flex;
    justify-content: center;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding-bottom: 6px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #ffcc00;
    transition: width 0.3s ease, left 0.3s ease, background-color 0.2s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: #ffcc00;
    transform: translateY(-3px);
}

.main-nav a:hover::after {
    width: 100%;
    left: 0;
    background-color: #ffd700;
}

 .fa-telegram-plane {
        color: #00aaff;
         font-size: 1.8rem;
    }



@media (max-width: 992px) { /* Для планшетов */
    .container {
        padding: 0 25px;
    }
    .logo {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    .header-left-icons,
    .header-right-icons {
        gap: 20px;
    }
    .icon {
        font-size: 1.6rem;
    }
    .main-nav {
        padding: 15px 0;
    }
    .main-nav ul {
        gap: 35px;
    }
    .main-nav a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) { /* Для большинства мобильных устройств */
    .header-top {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* Левые иконки | Логотип | Правые иконки + бургер */
        align-items: center;
        padding: 15px 20px;
        column-gap: 15px;
    }

    .header-left-icons {
        grid-column: 1 / 2; /* Первая колонка */
        justify-self: start; /* Выравнивание влево */
        gap: 12px;
    }

    .logo {
        grid-column: 2 / 3; /* Вторая (центральная) колонка */
        text-align: center;
        font-size: 2.1rem;
        margin: 0;
        width: auto;
        justify-self: center; /* **Гарантируем центрирование самого элемента логотипа** */
    }
    
    .fa-telegram-plane {
        color: #00aaff;
    }

    .header-right-icons { /* Теперь этот класс включает корзину И бургер */
        grid-column: 3 / 4; /* Третья колонка */
        justify-self: end; /* Выравнивание вправо */
        gap: 12px; /* Пространство между корзиной и бургером */
    }

    .burger {
        display: block; /* Показываем бургер-меню на мобильных */
        margin-left: 0; /* Убираем лишний отступ */
    }

    /* Мобильная навигация */
    .main-nav {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border-top: none;
        transition: max-height 0.7s ease-in-out, padding 0.7s ease-in-out;
        box-shadow: inset 0 3px 10px rgba(0,0,0,0.05);
    }

    .main-nav.open {
        max-height: 600px;
        padding: 25px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        margin-top: 15px;
    }

    .main-nav a {
        padding: 14px 0;
        font-size: 1.4rem;
        font-weight: 600;
        color: #4a4a4a;
    }

    .main-nav a::after {
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-nav a:hover::after {
        width: 75%;
    }
}

@media (max-width: 480px) { /* Для очень маленьких экранов (смартфоны) */
    .container {
        padding: 0 15px;
    }
    .header-top {
        padding: 12px 0;
        column-gap: 10px;
    }
    .header-left-icons,
    .header-right-icons {
        gap: 20px;
    }
    .icon {
        font-size: 1.5rem;
    }
    .logo {
        font-size: 1.7rem;
    }
    .burger {
        font-size: 1.8rem;
    }
    .main-nav ul {
        gap: 20px;
    }
    .main-nav a {
        font-size: 1.2rem;
        padding: 10px 0;
    }
}



