.hero {
    width: 100%;
    height: 560px;
    background-color: #E8F3F0;
}

@media (min-width: 768px) {
    .hero {
        height: 600px;
    }
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 640px) {
    .hero__container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__container {
        padding: 0 2rem;
    }
}

.hero__title {
    color: #052E31;
    font-size: 3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

.hero__subtitle {
    color: #5F777B;
    font-size: 1rem;
    max-width: 42rem;
    margin: 0 0 2.5rem 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.125rem;
    }
}

.hero__search {
    width: 100%;
    max-width: 42rem;
}

.hero__search-form {
    position: relative;
    width: 100%;
}

.hero__search-input {
    width: 100%;
    height: 3.5rem;
    padding: 0 3.5rem 0 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #0CAF60;
    background-color: #ffffff;
    color: #5F777B;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.hero__search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 175, 96, 0.2);
}

.hero__search-input::placeholder {
    color: rgba(95, 119, 123, 0.6);
}

.hero__search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background-color: #0CAF60 !important;  /* Примари цвет всегда */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
}

.hero__search-button:hover {
    background-color: rgba(12, 175, 96, 0.8); /* Тусклее при наведении */
}

.hero__search-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;  /* Иконка белая */
    display: block;
}

.hero__popular {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__popular-text {
    color: #5F777B;
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
}

.hero__popular-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.hero__popular-item {
    display: flex;
    align-items: center;
}

.hero__popular-link {
    color: #0CAF60;  /* Примари цвет */
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.hero__popular-link:hover {
    color: #052E31;  /* Темно-зеленый как в навбаре */
}

.hero__popular-comma {
    color: #5F777B;
    margin-right: 0.25rem;
    line-height: 1.5;
}

.hero__popular-item:last-child .hero__popular-comma {
    display: none;
}

@media (max-width: 640px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__popular {
        flex-direction: row;
        align-items: center;
    }
}