* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        h1, h2, h3, h4 {
            color: #c2185b;
            margin-bottom: 15px;
        }

        p {
            margin-bottom: 15px;
        }

        a {
            text-decoration: none;
            color: #2c5530;
            transition: color 0.3s;
        }

        a:hover {
            color: #4a7c59;
        }

        .btn {
            display: inline-block;
            background-color: #c2185b;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #f8bbd0;
        }

        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #c2185b;
            margin: 15px auto;
        }

        /* Шапка */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #4a7c59;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            font-weight: 500;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #4a7c59;
            cursor: pointer;
        }

        /* Герой секция */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('i.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 0;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* О нас */
        .about {
            background-color: white;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            
           
        }

        .about-image img {
            width: 500px;
            height: 500px;
            display: block;
        }

        /* Популярные товары */
        .products {
            background-color: #f5f5f5;
            
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 18px;
            font-weight: 600;
            color: #c2185b;
            margin-bottom: 15px;
        }

        /* Преимущества */
        .features {
            background-color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: #f9f9f9;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 40px;
            color: #4a7c59;
            margin-bottom: 20px;
        }

        /* Отзывы */
        .testimonials {
            background-color: #f5f5f5;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        /* Контакты */
        .contact {
            background-color: white;
        }

        .contact-container {
            display: flex;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            font-size: 20px;
            color: #4a7c59;
            margin-right: 15px;
            margin-top: 5px;
        }

        .form-group {
            margin-bottom: 200px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        textarea.form-control {
            min-height: 150px;resize: vertical;
        }

        /* Подвал */
        footer {
            background-color: #2c5530;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #4a7c59;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
        }

        .footer-col ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: #4a7c59;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 40px 0;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
        }




        

        .header-content1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo1 {
            font-size: 1.8rem;
            font-weight: bold;
        }

       

        /* Герой секция */
        .hero1 {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1487070183333-3c0a47163bda?ixlib=rb-4.0.3');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 0;
        }

        .hero1 h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero1 p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn1 {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn1:hover {
            background: #ff5252;
        }

        /* Секция с цветами */
        .flowers-section1 {
            padding: 4rem 0;
        }

        .section-title1 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: #333;
        }

        .flowers-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .flower-card1 {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .flower-card1:hover {
            transform: translateY(-5px);
        }

        .flower-image1 {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .flower-info1 {
            padding: 1.5rem;
        }

        .flower-title1 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .flower-price1 {
            font-size: 1.5rem;
            color: #ff6b6b;
            font-weight: bold;
            margin-bottom: 1rem;
        }










        /* Форма заказа */
        .order-section1 {
            background: white;
            padding: 4rem 0;
        }

        .order-form1 {
            max-width: 600px;
            margin: 0 auto;
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group1 {
            margin-bottom: 1.5rem;
        }
.btn6{
            display: inline-block;
            background-color: #4a7c59;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            display: flex;
            border: none;
            cursor: pointer;
            justify-content: center;
            margin-left: 60px;
}


 /* Product Section */
        .product {
            padding: 60px 0;
                min-height: 80vh;
    display: flex;
    align-items: center;

        }

        .product-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
                width: 100%;

        }

        .product-image {
            background: #ffff;
            height: 500px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
        }

        .product-details h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #2d5016;
        }

        .product-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: #666;
            line-height: 1.8;
        }

        .specifications {
            margin-bottom: 30px;
        }

        .specifications h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #333;
        }

        .specifications ul {
            list-style: none;
            padding-left: 0;
        }

        .specifications li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .specifications li::before {
            content: "•";
            color: #4a7c3a;
            font-size: 1.5em;
            position: absolute;
            left: 0;
            top: -5px;
        }

        .price-section {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
        }

        .price {
            font-size: 2em;
            font-weight: bold;
            color: #2d5016;
        }

        .add-to-cart {
            background: #4a7c3a;
            color: white;
            border: none;
            padding: 7px 10px;
            font-size: 1.1em;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .add-to-cart:hover {
            background: #3a6c2a;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .product-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-image {
                height: 300px;
            }

            .header-top {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        .lk{
    width: 26px;
}

.add-to-cart1 {
            background: #4a7c3a;
            color: white;
            border: none;
            padding: 7px 10px;
            font-size: 1.1em;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .add-to-cart1:hover {
            background: #3a6c2a;
        }
