:root {
    --primary-dark: #225D2D;
    --primary-light: #94B506;
    --accent-yellow: #F3C10A;
    --accent-pink: #E07F9E;
    --bg-light: #F4F2E6;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
    --border-light: #D9D9D9;
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    background: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: var(--primary-dark);
    border-radius: 12px;
    padding: 14px 0;
    margin: 10px;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon svg {
    width: 133px;
    height: 46px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    gap: 30px;
}

.navbar-collapse .btn {
    margin-left: 10px;
}

.nav-link {
    color: var(--white) !important;
    font-size: 16px;
    padding: 0 !important;
}

.nav-link:hover {
    color: var(--primary-light) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-custom {
    border: 1.5px solid var(--primary-light);
    color: var(--primary-light);
    background: transparent;
}

.btn-outline-custom:hover {
    background: transparent;
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.btn-primary-custom {
    background: var(--primary-light);
    color: var(--white);
    border: none;
}

.btn-primary-custom:hover {
    background: var(--accent-yellow);
    color: var(--white);
}

.btn-outline-dark {
    border: 1.5px solid var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.hero {
    position: relative;
    background: linear-gradient(180deg, var(--primary-dark) 30.79%, var(--primary-light) 191.72%);
    border-radius: 12px;
    margin: 10px;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-yellow);
    right: 100px;
    top: 30%;
    opacity: 0.7;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    left: 50%;
    top: 50%;
    opacity: 0.5;
}

.hero-circle-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-pink);
    right: 20%;
    bottom: 10%;
    opacity: 0.5;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 0 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-slider-wrap {
    flex: 0 0 auto;
    width: 600px;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: -100px;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-circle-slider {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-circle-s-1 {
    width: 400px;
    height: 400px;
    background: #F3C10A;
    right: 50px;
    top: 20%;
    opacity: 0.6;
}

.hero-circle-s-2 {
    width: 300px;
    height: 300px;
    background: #E07F9E;
    left: 30%;
    top: 40%;
    opacity: 0.5;
}

.hero-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item img {
    object-fit: cover;
}

.slider-item-center {
    width: 450px;
    height: 450px;
    z-index: 3;
    animation: fadeInCenter 0.8s ease-in-out;
}

.slider-item-center img {
    width: 100%;
    height: 100%;
}

.slider-item-left {
    left: 10px;
    top: 200px;
    width: 200px;
    height: 200px;
    z-index: 2;
    transform: rotate(-45deg);
    filter: blur(8px);
    opacity: 0.9;
    animation: fadeInLeft 0.8s ease-in-out;
}

.slider-item-left img {
    width: 100%;
    height: 100%;
}

.slider-item-center {
    width: 450px;
    height: 450px;
    z-index: 3;
    animation: fadeInCenter 0.8s ease-in-out;
}

.slider-item-center img {
    width: 100%;
    height: 100%;
}

.slider-item-right {
    right: 10px;
    top: 200px;
    width: 200px;
    height: 200px;
    z-index: 2;
    transform: rotate(45deg);
    filter: blur(8px);
    opacity: 0.9;
    animation: fadeInRight 0.8s ease-in-out;
}

.slider-item-right img {
    width: 100%;
    height: 100%;
}

@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-45deg);
    }
    to {
        opacity: 0.9;
        transform: translateX(0) rotate(-45deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotate(45deg);
    }
    to {
        opacity: 0.9;
        transform: translateX(0) rotate(45deg);
    }
}

.slider-item-left img {
    width: 100%;
    height: 100%;
}

.slider-item-right {
    right: 10px;
    top: 200px;
    width: 200px;
    height: 200px;
    z-index: 2;
    transform: rotate(45deg);
    filter: blur(8px);
    opacity: 0.9;
    animation: fadeInRight 0.8s ease-in-out;
}

.slider-item-right img {
    width: 100%;
    height: 100%;
}

@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-45deg);
    }
    to {
        opacity: 0.9;
        transform: translateX(0) rotate(-45deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotate(45deg);
    }
    to {
        opacity: 0.9;
        transform: translateX(0) rotate(45deg);
    }
}

.slider-item.sliding-out {
    animation: slideOut 0.8s ease-in-out forwards;
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.section-title-dark {
    color: var(--primary-dark);
}

.products-section {
    padding: 0 10px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border-light);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.15);
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card-body {
    padding: 16px;
}

.product-card-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.product-card-text {
    font-size: 18px;
    color: var(--black);
    margin: 0;
}

.about-section {
    background: var(--bg-light);
    border-radius: 12px;
    margin: 10px;
    padding: 60px 254px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-img {
    width: 100%;
    height: 383px;
    object-fit: cover;
    border-radius: 12px;
}

.clients-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 254px;
    gap: 50px;
    border-radius: 12px;
    margin: 10px;
}

.clients-section .section-title {
    font-family: 'Unbounded', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: var(--primary-dark);
    width: 100%;
    margin: 0;
}

.clients-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    height: 392px;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 16px;
    gap: 20px;
    width: 387px;
    height: 392px;
    background: #FFFFFF;
    border-radius: 12px;
    flex: 1;
    overflow: hidden;
}

.client-card-img {
    width: 387px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.client-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 16px;
    gap: 6px;
    width: 387px;
    height: 136px;
}

.client-card-title {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: var(--primary-dark);
    width: 355px;
    margin: 0;
}

.client-card-text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    width: 355px;
    margin: 0;
}

.advantages-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 254px;
    gap: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 10px;
}

.advantages-section .section-title {
    font-family: 'Unbounded', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: var(--primary-dark);
    width: 100%;
    margin: 0;
}

.advantages-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 285.25px;
    height: 312px;
    flex: 1;
}

.advantage-icon {
    width: 176px;
    height: 176px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 4px solid var(--primary-dark);
}

.advantage-icon i {
    font-size: 64px;
    color: var(--primary-dark);
}

.advantage-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 6px;
    width: 100%;
    height: 116px;
}

.advantage-title {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-dark);
    width: 100%;
    margin: 0;
}

.advantage-text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #000000;
    width: 100%;
    margin: 0;
}

.production-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 254px;
    gap: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    margin: 10px;
}

.production-section .section-title {
    font-family: 'Unbounded', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin: 0;
}

.production-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
}

.production-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 30px 0px 0px;
    gap: 50px;
    width: 590px;
}

.production-text p {
    width: 560px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    margin: 0;
}

.production-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 591px;
    height: 323px;
}

.production-img-main {
    width: 285px;
    height: 323px;
    border-radius: 12px;
    object-fit: cover;
}

.production-images-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 286px;
    height: 323px;
}

.production-img-secondary {
    width: 286px;
    height: 151.5px;
    border-radius: 12px;
    object-fit: cover;
}

.cooperation-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px 254px;
    gap: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.cooperation-section::before {
    content: '';
    position: absolute;
    left: 72.5%;
    top: -90.42%;
    width: 200%;
    height: 200%;
    background: #94B506;
    filter: blur(15px);
    transform: matrix(-0.43, 0.9, 0.9, 0.43, 0, 0);
    z-index: 0;
}

.cooperation-section .cooperation-content {
    position: relative;
    z-index: 1;
}

.cooperation-section .section-title {
    font-family: 'Unbounded', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: var(--primary-dark);
    width: 100%;
    margin: 0;
}

.cooperation-section .cooperation-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    width: 1201px;
}

.cooperation-text {
    width: 743px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    margin: 0;
}

.cooperation-section .btn-primary-custom {
    width: 295px;
    height: 46px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    background: var(--primary-dark);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: none;
}

.production-text p,
.cooperation-text p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.production-img {
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.production-section .row {
    align-items: center;
}

.production-img-1 {
    height: 350px;
    width: 200px;
}

.production-img-2,
.production-img-3 {
    height: 160px;
    width: 200px;
}

.contact-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px 254px;
    gap: 50px;
    background: var(--primary-dark);
    border-radius: 12px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    left: 1390px;
    top: -218px;
    width: 578px;
    height: 556px;
    background: #E07F9E;
    filter: blur(15px);
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    left: -15.68%;
    right: 85.65%;
    top: 6.14%;
    bottom: -26.81%;
    background: #94B506;
    filter: blur(15px);
    transform: matrix(-0.74, 0.67, 0.67, 0.74, 0, 0);
    z-index: 0;
}

.contact-section .contact-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    width: 1201px;
    position: relative;
    z-index: 1;
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    width: 561px;
}

.contact-section .section-title {
    font-family: 'Unbounded', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: #FFFFFF;
    width: 561px;
    margin: 0;
}

.contact-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    width: 305px;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 590px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.contact-form .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 12px;
    gap: 10px;
    width: 289px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
}

.contact-form .form-group-full {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
    width: 590px;
    min-height: 97px;
    background: #FFFFFF;
    border-radius: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    background: transparent;
}

.contact-form textarea {
    resize: none;
    min-height: 73px;
}

.contact-form .form-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 590px;
    height: 48px;
}

.contact-form .form-note {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    width: 405px;
    margin: 0;
}

.contact-form .btn-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 176px;
    height: 46px;
    background: var(--primary-light);
    border: none;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    cursor: pointer;
}

.footer {
    background: var(--primary-dark);
    border-radius: 12px;
    margin: 10px;
    padding: 40px 10px 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
}

.footer-tagline {
    color: var(--white);
    opacity: 0.7;
    margin-top: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: var(--white);
    font-size: 16px;
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: var(--white);
    font-size: 16px;
}

.contact-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.7;
}

.catalog-header {
    padding: 60px 10px 30px;
}

.catalog-title {
    font-family: var(--font-heading);
    font-size: 50px;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-filter {
    background: var(--bg-light);
    color: var(--primary-dark);
    border: 1.5px solid var(--primary-dark);
    padding: 10px 20px;
}

.btn-filter.active,
.btn-filter:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.catalog-section {
    padding: 0 10px 60px;
}

.catalog-category {
    margin-bottom: 50px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .header {
        margin: 10px;
    }

    .navbar-collapse {
        background: var(--primary-dark);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .navbar-nav {
        gap: 15px;
        margin-bottom: 15px;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-slider-wrap {
        width: 100%;
        height: 350px;
        margin-top: 30px;
    }

    .slider-item-center {
        width: 280px;
        height: 280px;
    }

    .slider-item-left,
    .slider-item-right {
        width: 200px;
        height: 200px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-section,
    .advantages-section,
    .contact-section {
        padding: 40px 20px;
    }

    .about-text p,
    .production-text p,
    .cooperation-text p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header {
        margin: 10px 5px;
        padding: 10px 0;
    }

    .logo-icon svg {
        width: 80px;
        height: 28px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero {
        margin: 5px;
        min-height: auto;
    }

    .hero-wrapper {
        flex-direction: column;
        padding: 30px 15px;
    }

    .hero-slider-wrap {
        width: 100%;
        height: 280px;
        margin-top: 20px;
    }

    .slider-item-center {
        width: 200px;
        height: 200px;
    }

    .slider-item-left,
    .slider-item-right {
        width: 150px;
        height: 150px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-card-title,
    .client-card-title,
    .advantage-title {
        font-size: 18px;
    }

    .product-card-text,
    .client-card-text,
    .advantage-text {
        font-size: 14px;
    }

    .about-img {
        height: 250px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .catalog-title {
        font-size: 32px;
    }

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

    .category-title {
        font-size: 24px;
    }
}

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

.modal-overlay.active {
    display: flex;
}

.modal-popup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    width: 670px;
    height: auto;
    min-height: 424px;
    background: #F4F2E6;
    border-radius: 12px;
    position: relative;
    box-sizing: border-box;
}

.modal-popup .modal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

.modal-popup .modal-title {
    font-family: 'Unbounded', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: #225D2D;
    width: 100%;
    margin: 0;
}

.modal-popup .modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 26px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.modal-popup .modal-close::before,
.modal-popup .modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000000;
    top: 50%;
    left: 50%;
}

.modal-popup .modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-popup .modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-popup .modal-text {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    margin: 0;
}

.modal-popup .modal-contacts {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    margin: 0;
}

.modal-popup .modal-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.modal-popup .btn-modal-outline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 178px;
    height: 46px;
    border: 1.5px solid #94B506;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #94B506;
    text-decoration: none;
    background: transparent;
}

.modal-popup .btn-modal-primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 178px;
    height: 46px;
    background: #94B506;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
}

.modal-request {
    width: 670px;
    min-height: 581px;
}

.modal-request .modal-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.modal-request .form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.modal-request .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 12px;
    gap: 10px;
    width: 289px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
    flex: 1;
}

.modal-request .form-group input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    background: transparent;
}

.modal-request .form-group input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.modal-request .form-group-full {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
    width: 590px;
    height: 97px;
    background: #FFFFFF;
    border-radius: 6px;
    box-sizing: border-box;
}

.modal-request .form-group-full textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    background: transparent;
}

.modal-request .form-group-full textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.modal-request .modal-form-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.modal-request .form-note {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    width: 405px;
    margin: 0;
}

.modal-request .btn-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    width: 176px;
    height: 46px;
    background: #94B506;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}
}