 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-top: 70px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 10px 15px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
.header-container a {
            text-decoration: none;
}

        .logo { 
            font-size: 1.0rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .logo::before {
            content: url('/images/logo_mascot.jpg');
            margin-right: 8px; float: left;
        }

        .search-container {
            flex: 1;
            max-width: 400px;
            margin: 0 15px;
            position: relative;
        }

        .search-container input {
            width: 100%;
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 0.9rem;
            outline: none;
        }

        .search-container button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
        }

        .search-container button::after {
           content: url('/images/searh.jpg');
           // content: "??";
        }

        .header-icons {
            display: flex;
            align-items: center;
        }

        .icon {
            margin-left: 15px;
            font-size: 1.2rem;
            color: #2c3e50;
            cursor: pointer;
            position: relative;
        }


.icon.prais_pdf::before {
            content: url('/images/pdf.jpg');
        }
.icon.dostavka::before {
            content: url('/images/dostavka50.jpg');
        }



.icon.magazin::before {
            content: url('/images/magazin50x50.jpg');
        }

        .icon.phone::before {
            content: url('/images/tel_zakaz.jpg');
        }

.icon.email::before {
            content: url('/images/e-mail_zakaz.jpg');
        }


        .icon.cart::before {
        content: url('/images/cart-img.jpg');
            //content: "??";
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #2c3e50;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
.container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 0px;
            min-height: 20px;
        }

.hero2 {
            background: linear-gradient(135deg, #fafa73, #ceff4a);
            color: #3e6506;
            padding: 2px 2px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 0px;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
            min-height: calc(100vh - 140px);
        }

        .hero {
            background: linear-gradient(135deg, #53db34, #8ead44);
            color: white;
            padding: 40px 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 30px;
        }

        .hero h1 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            height: 180px;
            background-color: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-size: 3rem;
        }

        .product-info {
            padding: 15px;
        }

        .product-info h3 {
            margin-bottom: 10px;
            font-size: 1.1rem;
            height: 60px;
        }

        .product-info p {
            color: #e74c3c;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .btn {
            display: inline-block;
            background-color: #34b320;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: center;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #6ff959;
        }

        .btn:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
        }

        /* Cart Modal */
        .cart-modal {
            position: fixed;
            top: 0;
            right: -100%;
            width: 90%;
            max-width: 400px;
            height: 100%;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 1200;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .cart-modal.active {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        .close-cart::after {
            content: "";
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 20px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item-image {
            width: 60px;
            height: 60px;
            background-color: #f8f8f8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #e74c3c;
            font-weight: bold;
        }

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

        .quantity-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .remove-item {
            background: none;
            border: none;
            color: #e74c3c;
            cursor: pointer;
            padding: 5px;
            margin-left: 10px;
        }

        .remove-item::after {
            content: "";
        }

        .cart-total {
            padding: 20px 0;
            border-top: 2px solid #eee;
        }

        .total-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }

        .checkout-btn {
            background-color: #27ae60;
            width: 100%;
        }

        .checkout-btn:hover {
            background-color: #219a52;
        }

        .empty-cart {
            text-align: center;
            color: #7f8c8d;
            padding: 40px 0;
        }

        .empty-cart::before {
  content: url('/images/cart-img.jpg');          
            //content: "??";
            font-size: 3rem;
            display: block;
            margin-bottom: 15px;
        }

        /* Order Form */
        .order-form {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }

        .order-form.active {
            display: block;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #097209;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-group.error input,
        .form-group.error textarea {
            border-color: #e74c3c;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .form-buttons {
            display: flex;
            gap: 10px;
        }

        .back-to-cart {
            background-color: #95a5a6;
            flex: 1;
        }

        .back-to-cart:hover {
            background-color: #7f8c8d;
        }

        .submit-order {
            background-color: #27ae60;
            flex: 2;
        }

        .submit-order:hover {
            background-color: #219a52;
        }

        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .success-message {
            text-align: center;
            padding: 40px 20px;
            color: #27ae60;
        }

        .success-message::before {
            content: url('/images/ok2.jpg');
            //content: "?";
            font-size: 3rem;
            display: block;
            margin-bottom: 15px;
        }

        /* Hidden form for server submission */
        .hidden-form {
            display: none;
        }

        /* Modal Menu */
        .modal-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100%;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 1100;
            padding: 20px;
            overflow-y: auto;
        }

        .modal-menu.active {
            right: 0;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        .close-menu::after {
            content: "";
        }

        .menu-list {
            list-style: none;
        }

        .menu-list li {
            margin-bottom: 15px;
        }

        .menu-list a {
            text-decoration: none;
            color: #333;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: color 0.3s;
        }

        .menu-list a::before {
            margin-right: 10px;
            width: 20px;
            display: inline-block;
        }

        .menu-list li:nth-child(1) a::before {
            content: "-";
        }

        .menu-list li:nth-child(2) a::before {
            content: "-";
        }

        .menu-list li:nth-child(3) a::before {
            content: "-";
        }

        .menu-list li:nth-child(4) a::before {
            content: "-";
        }

        .menu-list a:hover {
            color: #3498db;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 15px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 0 8px 10px;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            margin: 0 10px 10px;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            font-size: 0.8rem;
            color: #bbb;
        }

.content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content h1 {
    color: #333;
    margin-bottom: 15px;
}

.content p {
    color: #666;
    line-height: 1.6;
}



        /* Media Queries */
        @media (max-width: 768px) {
            .search-container {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .header-icons .icon.phone {
                //display: none;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .products {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .cart-modal {
                width: 95%;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 5px;
            }

            .logo {
                font-size: 1.2rem;
               margin: 0px;
             
            }
            .logo span{
                display: none;
            }

           .header-icons .icon.prais_pdf {
                display: none;
            }

           .header-icons .icon.dostavka {
                display: none;
            }

            .icon {
                margin-left: 3px;
                font-size: 1.1rem;
            }

            .container {
                padding: 15px 10px;
            }

            .hero {
                padding: 30px 15px;
            }

            .cart-item {
                flex-direction: column;
                text-align: center;
            }

            .cart-item-image {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .cart-item-controls {
                margin-top: 10px;
            }

            .form-buttons {
                flex-direction: column;
            }
        }

/* Слайдер */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .slider-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            position: relative;
        }

        .slider-wrapper {
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .slider-track {
            display: flex;
            transition: transform 0.3s ease;
            touch-action: pan-y;
        }

        .slide {
            min-width: 100%;
            padding: 40px 30px;
            background: linear-gradient(135deg, #48cc2e 0%, #8ead44 100%);
            color: white;
            text-align: center;
        }

        .slide h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .slide p {
            font-size: 1.1em;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Индикаторы */
        .slider-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: #48cc2e;
        }

        /* Кнопки навигации */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
        }

        .nav-btn {
            padding: 10px 20px;
            background: #31ab19;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .nav-btn:hover {
            background: #44f621;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .slider-container {
                margin: 20px auto;
                padding: 15px;
            }

            .slide {
                padding: 30px 20px;
            }

            .slide h3 {
                font-size: 1.3em;
            }

            .slide p {
                font-size: 1em;
            }

            .nav-btn {
                padding: 8px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .slide {
                padding: 25px 15px;
            }

            .slide h3 {
                font-size: 1.2em;
            }

            .slider-nav {
                flex-direction: column;
                align-items: center;
            }

            .nav-btn {
                width: 80%;
                margin-bottom: 10px;
            }
        }
    
     /* Слайдер конец */