* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234a8f3e' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #4a8f3e;
    transition: color 0.3s;
}

a:hover {
    color: #366e2d;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4a8f3e, #6dbd60);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 143, 62, 0.3);
    z-index: 1;
    height: 44px;
}

.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 143, 62, 0.4);
    color: #fff;
    background: linear-gradient(45deg, #3d7a32, #5ca951);
}

.button:hover:before {
    animation: shimmer 1.5s infinite;
}

.button--full {
    width: 100%;
}

.button--pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 143, 62, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 143, 62, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 143, 62, 0);
    }
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #4a8f3e, #BE3144);
}

.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header__content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    flex: 0 0 auto;
}

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex: 0 0 auto;
    text-align: right;
}

.header__callback {
    font-size: 12px;
    color: #666;
    text-align: right;
    line-height: 1.2;
}

.logo__img {
    height: 40px;
}

.phone {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, rgba(74, 143, 62, 0.1), rgba(74, 143, 62, 0.05));
    border-bottom: 2px solid #4a8f3e;
}

.phone:hover {
    transform: scale(1.05);
    color: #4a8f3e;
}

.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #f0f7ee 0%, #e9f5e6 50%, #e1f0d8 100%);
    color: #333;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(rgba(190, 49, 68, 0.1), transparent);
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(rgba(74, 143, 62, 0.15), transparent);
    z-index: 0;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.hero__info {
    text-align: center;
}

.hero__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #4a8f3e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 400;
}

.hero__price {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(45deg, #BE3144, #e84c5e);
    box-shadow: 0 4px 15px rgba(190, 49, 68, 0.3);
    animation: pulse-light 3s infinite;
    margin: 0;
    height: 44px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(190, 49, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(190, 49, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(190, 49, 68, 0);
    }
}

.hero__image {
    text-align: center;
    margin-top: 10px;
}

.hero__img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__img:hover {
    filter: brightness(1.05);
}

.hero__call-text {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
    display: block;
}

.hero__call-text a {
    font-weight: 700;
    color: #4a8f3e;
}

.hero__call-text a:hover {
    text-decoration: underline;
}

.product-description {
    padding: 40px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.product-description:before {
    content: '🍃';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(20deg);
}

.product-description:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(rgba(74, 143, 62, 0.1), transparent);
    z-index: 0;
}

.product-description__text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.varieties {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.variety-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #f9f9f9, #f0f0f0);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.variety-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #4a8f3e, #6dbd60);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.variety-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.variety-item:hover:before {
    opacity: 1;
}

.variety-item__icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 20px;
    background-color: rgba(74, 143, 62, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.variety-item:hover .variety-item__icon {
    transform: scale(1.1);
    background-color: rgba(74, 143, 62, 0.2);
}

.variety-item__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #4a8f3e;
    transition: color 0.3s ease;
}

.variety-item:hover .variety-item__title {
    color: #366e2d;
}

.variety-item__text {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.gifts {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.gifts:before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.05);
    z-index: 0;
}

.gifts:after {
    content: '🎁';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 50px;
    opacity: 0.08;
    transform: rotate(-15deg);
}

.gifts__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.gifts__image {
    text-align: center;
}

.gifts__img {
    max-width: 150px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gifts__img:hover {
    filter: brightness(1.05);
}

.gifts__list {
    width: 100%;
    max-width: 600px;
}

.gift-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gift-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(190, 49, 68, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left: 3px solid #BE3144;
}

.gift-item:hover:before {
    opacity: 1;
}

.gift-item__icon {
    font-size: 28px;
    margin-right: 20px;
    color: #BE3144;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gift-item:hover .gift-item__icon {
    transform: rotate(10deg) scale(1.1);
}

.gift-item__text {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #e9f5e6 0%, #f0f7ee 100%);
    position: relative;
    overflow: hidden;
}

.contact:before {
    content: '✉️';
    position: absolute;
    top: 15%;
    left: 5%;
    font-size: 40px;
    opacity: 0.08;
    transform: rotate(-10deg);
}

.contact:after {
    content: '';
    position: absolute;
    top: 70%;
    right: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(190, 49, 68, 0.05);
    z-index: 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-top: 5px solid #4a8f3e;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #b3b3b3;
    background-color: #f5f5f5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a8f3e;
    box-shadow: 0 0 0 3px rgba(74, 143, 62, 0.1);
    background-color: #fff;
}

.form-group:focus-within label {
    color: #4a8f3e;
}

.footer {
    background: linear-gradient(to bottom, #333 0%, #222 100%);
    color: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #4a8f3e, #BE3144, #4a8f3e);
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer__info {
    text-align: center;
}

.footer__logo {
    margin-bottom: 15px;
}

.footer__copyright,
.footer__work-hours,
.footer__company,
.footer__address,
.footer__email-info {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer__email-info a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer__email-info a:hover {
    color: #6dbd60;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__phone,
.footer__email {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer__phone:hover,
.footer__email:hover {
    color: #6dbd60;
    transform: translateX(3px);
}

.footer__legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color 0.3s;
}

.footer__legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .header__callback {
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hero__content {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .hero__info {
        flex: 1;
        text-align: left;
        padding-right: 20px;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin-top: 15px;
        gap: 20px;
    }

    .hero__image {
        flex: 1;
        margin-top: 0;
    }

    .hero__img {
        max-width: 90%;
    }

    .product-description {
        padding: 60px 0;
    }

    .product-description__text {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .varieties {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .variety-item__icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .variety-item__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .variety-item__text {
        font-size: 16px;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer__info {
        text-align: left;
    }

    .footer__contacts {
        align-items: flex-end;
    }

    .footer__legal {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero__call-text {
        text-align: left;
        font-size: 16px;
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .header__callback {
        font-size: 14px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__subtitle {
        font-size: 22px;
    }

    .hero__img {
        max-width: 90%;
    }

    .hero__actions {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .header__content {
        justify-content: center;
    }

    .header__contact {
        align-items: center;
        text-align: center;
    }
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    display: inline-block;
}

.checkbox-group label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked+label:before {
    background-color: #4a8f3e;
    border-color: #4a8f3e;
}

.checkbox-group input[type="checkbox"]:checked+label:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:focus+label:before {
    box-shadow: 0 0 0 3px rgba(74, 143, 62, 0.1);
}

.checkbox-group label:hover:before {
    border-color: #b3b3b3;
    background-color: #f5f5f5;
}

.agreement-link {
    color: #4a8f3e;
    text-decoration: underline;
    transition: color 0.3s;
}

.agreement-link:hover {
    color: #366e2d;
}

.form-message {
    margin: 15px 0;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-message--success {
    background-color: rgba(74, 143, 62, 0.1);
    color: #4a8f3e;
    border-left: 3px solid #4a8f3e;
}

.form-message--error {
    background-color: rgba(190, 49, 68, 0.1);
    color: #BE3144;
    border-left: 3px solid #BE3144;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}