.client-container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.main-content {
    flex: 1;
    width: 100%;
    margin: 0;
}

.hp-field {
    position: absolute;
    left: -5000px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.hidden {
    position: sticky;
    top: 0;
    z-index: 9999;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    top: -20px;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

/* Auto layout */
.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: clamp(15px, 2vw, 20px) clamp(20px, 5vw, 80px);
    gap: clamp(20px, 5vw, 77px);
    position: relative;
    width: 95%;
    height: clamp(70px, 8vw, 113px);
    margin-top: clamp(15px, 3vw, 40px);
    background: rgba(0, 29, 10, 0.3);
    backdrop-filter: blur(13px);
    border-radius: 160px;
    pointer-events: auto;
}

.header-container.inverse{
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: -150%;
    left: 3%;
    width: 94%;
    height: auto;
    margin: 0 auto;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(13px);
    z-index: 999999;
    transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    box-sizing: border-box;
}

.mobile-menu.active {
    top: 15px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 40px;
    display: flex;
    justify-content: flex-start;
}

.mobile-menu-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-menu-logo svg {
    height: 50px;
    width: auto;
}

.mobile-menu-lang {
    width: 40px;
    display: flex;
    justify-content: flex-end;
}

#language-button-mobile {
    padding: 8px 12px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(60, 74, 51, 0.2);
    color: #3C4A33;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.mobile-menu-links li {
    border-bottom: 1px solid rgba(60, 74, 51, 0.1);
    padding: 15px 0;
}

.mobile-menu-links li:last-child {
    border-bottom: none;
}

.mobile-menu-links li a {
    font-size: var(--font-size-l);
    text-decoration: none;
    color: #3C4A33;
    font-weight: 400;
}

.mobile-menu-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #4A5332;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 60px;
    font-size: var(--font-size-l);
    font-weight: 500;
}

.mobile-menu-order svg {
    width: 24px;
    height: 24px;
}

.burger-links {
    display: none;
}

.header-links {
    width: 40%;
}

.header-logo {
    width: 20%;
}

.header-buttons {
    width: 40%;
}

.header-links ul {
    display: flex;
    flex-direction: row;
    gap: 16px;
    white-space: nowrap;
}

.header-link.inverse {
    color: var(--color-text-green);
}

.header-link {
    font-size: var(--font-size-l);
    color: var(--color-white);
    transition: all 0.3s ease !important;
    border-bottom: 1px solid transparent;
}

.header-link.inverse:hover {
    border-bottom: 1px solid var(--color-text-green);
}

.header-link:hover {
    border-bottom: 1px solid var(--color-white);
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo a {
    margin-top: 10px;
}

.header-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

#order-button.inverse {
    color: var(--color-text-green) !important;
    border: 1px solid var(--color-text-green) !important;
}

#order-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 1.5vw, 20px) clamp(16px, 2vw, 24px);
    gap: 10px;
    font-size: var(--font-size-l);
    width: auto;
    min-width: fit-content;
    height: clamp(40px, 4vw, 54px);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    background: none;
    border-radius: 40px;
    flex: none;
    order: 0;
    flex-grow: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#order-button.inverse:hover {
    color: var(--color-white) !important;
    background: var(--color-text-green) !important;
}

#order-button:hover {
    color: var(--color-text-green);
    background: var(--color-white);
}

.mobile-only {
    display: none !important;
}

#language-button.inverse {
    color: var(--color-text-green) !important;
    border: 1px solid var(--color-text-green) !important;
}

#language-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 1.5vw, 20px) clamp(10px, 1.2vw, 16px);
    gap: 4px;
    width: auto;
    min-width: fit-content;
    font-size: var(--font-size-l);
    height: clamp(40px, 4vw, 54px);
    color: var(--color-white);
    border: 1px solid var(--color-white);
    background: none;
    border-radius: 30px;
    flex: none;
    order: 1;
    flex-grow: 0;
    transition: all 0.3s ease;
}

.lang-selector {
    position: relative;
}

#language-button.inverse:hover {
    color: var(--color-white) !important;
    background: var(--color-text-green) !important;
}


#language-button:hover {
    color: var(--color-text-green);
    background: var(--color-white);
}

.change-lang {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    width: 88px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.change-lang.inverse {
    border: 2px solid var(--color-text-green);
}

.lang-selector:hover .change-lang,
.lang-selector.active .change-lang {
    opacity: 1;
    visibility: visible;
}

.change-lang ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.change-lang ul li a {
    font-size: var(--font-size-l);
    color: var(--color-text-green);
    font-weight: 400;
    transition: all 0.2s ease;
}

.change-lang ul li a:hover {
    opacity: 0.6;
}

.banner-container {
    position: relative;
    width: 100%;
    height: clamp(600px, 100vh, 1080px);
    margin-top: -5px;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.banner-slider:active {
    cursor: grabbing;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-white);
    padding: clamp(150px, 15vw, 200px) clamp(15px, 3vw, 40px) clamp(120px, 12vw, 170px);
}

.banner-content > svg {
    margin-bottom: clamp(10px, 2vw, 25px);
    flex-shrink: 0;
}

.banner-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: clamp(10px, 2vw, 25px);
}

.banner-heading {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 48px);
    line-height: 1.3;
    margin: 0 0 24px 0;
    text-transform: lowercase;
}

.banner-heading-country {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 48px);
    text-transform: uppercase;
}

.banner-heading-country.for-turkey {
    margin: 40px 0;
}

.banner-country-name {
    font-size: clamp(50px, 10vw, 136px);
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-white);
    line-height: 0.9;
    margin-bottom: clamp(10px, 2vw, 30px);
}

.banner-subtitle, .banner-subtitle-country {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--font-size-xl);
    line-height: 1.5;
    margin: 0 0 clamp(15px, 2vw, 35px) 0;
    max-width: 800px;
}

.banner-subtitle-country{
    margin-top: clamp(10px, 2vw, 30px);
}

.banner-button-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
    position: absolute;
    bottom: clamp(40px, 8vw, 100px);
}

.product-order-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    height: 64px;
    background: none;
    border: 1px solid var(--color-text-green);
    border-radius: 40px;
    color: var(--color-text-green);
    text-transform: uppercase;
    font-size: var(--font-size-l);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-order-button:hover {
    background: var(--color-text-green);
    color: var(--color-white);
}

/* Стили для анимации "Добавлено!" */
.product-order-button::after {
    content: 'Добавлено!';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #13BC61;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-order-button.success {
    border-color: #13BC61;
}

.product-order-button.success::after {
    top: 0;
}

#banner-button-catalog {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 1.5vw, 20px) clamp(16px, 2vw, 24px);
    gap: 10px;
    width: auto;
    min-width: fit-content;
    height: clamp(40px, 4vw, 53px);
    color: var(--color-text-green);
    text-transform: uppercase;
    font-family: var(--font-family);
    font-size: var(--font-size-l);
    font-weight: 500;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    flex: none;
    order: 0;
    flex-grow: 0;
    outline: none;
    border: none;
    white-space: nowrap;
}

#banner-button-arrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 2px;
    gap: 10px;
    width: clamp(40px, 4vw, 53px);
    height: clamp(40px, 4vw, 53px);
    background: #FFFFFF;
    border-radius: 70px;
    color: var(--color-text-green);
    flex: none;
    order: 1;
    flex-grow: 0;
    outline: none;
    border: none;
}

.banner-button-container:hover #banner-button-catalog,
.banner-button-container:hover #banner-button-arrow {
    color: var(--color-white);
    background: var(--color-text-green);
}

#banner-button-catalog,
#banner-button-arrow {
    transition: all 0.3s ease;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: clamp(50px, 5vw, 80px);
    height: clamp(50px, 5vw, 80px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(13px);
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--color-text-green);
}

.banner-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.banner-nav:focus {
    outline: none;
}

.banner-nav-prev {
    left: 40px;
}

.banner-nav-next {
    right: 40px;
}

.banner-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.banner-indicator {
    width: 20px;
    height: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(13px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicator.active {
    background: rgba(255, 255, 255, 0.8);
}

.about-container {
    padding: 0 5%;
    margin: clamp(40px, 7vw, 100px) 0;
    display: flex;
    justify-content: center;
}

.about-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: clamp(20px, 3vw, 40px);
    width: 95%;
    min-height: 300px;
    height: auto;
}

.about-content-text {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-text-green);
    width: 50%;
}

.about-content-image {
    width: 50%;
}

.about-content-image img {
    width: 100%;
}

.about-content-text h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: var(--font-size-xxxl);
    line-height: 0.7;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.about-content-text p {
    font-size: var(--font-size-l);
}

.about-numbers-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    text-transform: uppercase;
}

.about-number h2 {
    font-size: clamp(32px, 5.5vw, 76px);
    font-weight: 800;
}

.about-number p {
    font-size: var(--font-size-xl);
    font-weight: 500;
}

.catalog-container,
.order-container {
    width: 100%;
    margin-top: clamp(60px, 10vw, 150px);
    padding: 0 5%;
}

.catalog-container.another,
.order-container.another {
    margin-top: clamp(80px, 14vw, 200px);
}

.catalog-container.with-banner {
    position: relative;
    margin-top: -250px;
    z-index: 99999;
    background-color: var(--color-bg);
    padding-top: 50px;
}

.catalog-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(15px, 2vw, 25px) clamp(15px, 3vw, 40px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: clamp(15px, 3vw, 40px);
}

.catalog-title,
.order-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.catalog-info,
.order-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    width: auto;
}

.breadcrumps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.behind {
    color: var(--color-text-green);
    opacity: 0.4;
}

.catalog-title-h1,
.order-title-h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    color: var(--color-text-green);
}

.catalog-search-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.catalog-search-input {
    border: none;
    border-bottom: 1px solid var(--color-text-green);
    outline: none;
    font-size: var(--font-size-l);
    color: var(--color-text-green);
    background: transparent;
    padding: 15px 40px;
}

.catalog-search-input::placeholder {
    color: var(--color-text-green);
    opacity: 0.3;
    font-size: var(--font-size-l);
    font-weight: 400;
}

.catalog-search-input::-webkit-search-decoration,
.catalog-search-input::-webkit-search-cancel-button,
.catalog-search-input::-webkit-search-results-button,
.catalog-search-input::-webkit-search-results-decoration {
    display: none;
}

.catalog-search-input-icon {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.catalog-search-input-filter {
    position: absolute;
    right: 10px;
    bottom: -15px;
    cursor: pointer;
}

#catalog-items-container {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#catalog-items-container.loading {
    opacity: 0;
    transform: translateY(10px);
}

.hidden {
    display: none !important;
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(40px, 7vw, 100px) 0;
    text-align: center;
    gap: 20px;
}

.not-found img {
    max-width: 300px;
    opacity: 0.5;
}

.not-found h1 {
    font-size: var(--font-size-xxl);
    color: var(--color-text-green);
    opacity: 0.6;
    font-weight: 500;
}

.catalog-categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.catalog-countries-dropdown {
    gap: 10px;
    display: flex;
}

.catalog-categories-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    font-size: var(--font-size-l);
    font-weight: 400;
    color: var(--color-text-green);
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-text-green);
    border-radius: 40px;
    flex: none;
    flex-grow: 0;
    transition: all 0.3s ease;
}

.catalog-categories-button.active {
    background: var(--color-text-green);
    transition: all 0.3s ease;
    color: var(--color-white);
}

.catalog-categories-button>svg {
    display: none;
}

.catalog-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 1.5vw, 20px);
    width: 100%;
}

.catalog-item {
    position: relative;
    cursor: pointer;
    width: 100%;
    display: block;
}

.catalog-item>svg {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.catalog-item:hover>svg {
    filter: brightness(0.7);
}

.catalog-item-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    text-transform: uppercase;
    font-size: var(--font-size-xxl);
    font-weight: 600;
    color: var(--color-white);
}

.href-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: absolute;
    right: 0.1%;
    top: 0;
    width: 16%;
    aspect-ratio: 1;
    border: none;
    background: var(--color-text-green);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.href-arrow>svg {
    width: 40%;
    height: auto;
}

.catalog-item:hover .href-arrow {
    box-shadow: 0 0 15px var(--color-bg-dark);
    background: var(--color-white);
    color: var(--color-text-green);
}

.our-servives-container {
    width: 100%;
    padding: 0 5%;
    margin: clamp(30px, 4vw, 50px) 0 clamp(80px, 14vw, 200px) 0;
}

.our-services-content {
    width: 100%;
    background-image: url('../images/site/services.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 500px;
    height: auto;
}

.our-service-block {
    width: 95%;
    height: auto;
    padding: clamp(60px, 15vw, 200px) 0 clamp(30px, 7vw, 100px) clamp(20px, 4vw, 60px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.our-service-title-text {
    text-transform: uppercase;
    font-size: var(--font-size-xxxl);
    font-weight: 700;
    color: var(--color-text-green);
}

.our-service-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: flex-start;
    gap: clamp(10px, 1.5vw, 20px);
    width: 75%;
}

.our-service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(12px, 1.5vw, 20px);
    gap: 8px;
    width: clamp(200px, 47%, 48%);
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 20px;
}

.our-service-item-title {
    text-transform: uppercase;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-green);
}

.our-service-item-text {
    font-size: var(--font-size-l);
    font-weight: 400;
    color: var(--color-text-green);
}

.questions-container {
    width: 100%;
    padding: 0 5%;
}

.question-content {
    width: 100%;
    min-height: clamp(500px, 55vh, 730px);
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 30px;
    justify-content: space-between;
}

.question-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/site/question.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(6px) brightness(0.5);
    transform: scale(1.3);
    z-index: -1;
}

.question-title {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 20px;
    height: 100%;
    padding: clamp(25px, 4vw, 60px) clamp(15px, 3vw, 40px);
}

.question-title-text {
    text-transform: uppercase;
    font-size: clamp(32px, 5.5vw, 76px);
    font-weight: 800;
    color: var(--color-white);
    font-family: var(--font-family);
    line-height: 1;
}

.question-title p {
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.8;
    font-family: var(--font-family);
}

.question-form {
    width: 50%;
    height: 100%;
    padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 40px) clamp(30px, 4vw, 60px) 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.question-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question-form form input,
.question-form form textarea {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 28px 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    gap: 20px;
    border: none;
    color: var(--color-white);
    font-size: var(--font-size-l);
    font-family: var(--font-family);

}

.question-form form textarea {
    height: 200px;
    resize: none;
}

.question-form form input:focus,
.question-form form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-white);
}

.question-form form input::placeholder,
.question-form form textarea::placeholder {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: var(--font-size-l);
    font-family: var(--font-family);
}

.question-form form button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    height: 64px;
    gap: 8px;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    background: none;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: var(--font-size-l);
    font-family: var(--font-family);
}

.question-form form p {
    color: var(--color-white);
    font-size: var(--font-size-base);
    opacity: 0.6;
    font-family: var(--font-family);
    font-weight: 500;
    text-align: left;
}

footer {
    margin-top: clamp(60px, 10vw, 150px);
    background-color: var(--color-footer);
    padding: clamp(25px, 4vw, 60px);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-info-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: start;
    gap: clamp(30px, 7vw, 100px);
    width: 50%;
    flex-wrap: wrap;
}

.footer-info-links ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.footer-info-links ul li a {
    text-decoration: none;
    color: var(--color-white);
    font-size: var(--font-size-l);
    font-family: var(--font-family);
    font-weight: 500;
    text-transform: uppercase;
}

.footer-info-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.footer-info-write-us{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.footer-info-contacts h3,
.footer-info-write-us h3 {
    text-transform: uppercase;
    font-size: var(--font-size-l);
    font-weight: 500;
    color: var(--color-white);
}

.footer-info-write-us a {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--color-white);
}

.footer-info-contact-country,
.footer-info-contact-number {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-white);
}

.footer-info-contact-country {
    opacity: 0.6;
}

/* Стили для контактов с соц. сетями */
.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* Стили для иконок социальных сетей */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.footer-social-link:active {
    transform: scale(0.95);
}

.created-by-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 400;
}

.product-item {
    width: 100%;
    min-height: 400px;
    height: auto;
    background: #B6B6B6;
    backdrop-filter: blur(4.95149px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.product-item-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    flex: 1;
}

.product-item-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.product-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15.485px);
    border-radius: 0px 0px 24px 24px;
}

.product-item-title {
    margin-bottom: 10px;
}

.product-item-about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-order-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    width: 100%;
    height: 53px;
    background: var(--color-text-green);
    border-radius: 40px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    color: var(--color-white);
    font-size: var(--font-size-l);
    font-weight: 400;
    margin: 20px 0 10px 0;
}

.order-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.order-contact-form {
    width: 40%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(249, 249, 249, 0.8);
    border-radius: 40px;
}

.order-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-contact-form h2 {
    color: var(--color-text-green);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.order-contact-form form input,
.order-contact-form form textarea {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 28px 20px;
    width: 100%;
    background: #f2f2f2;
    border-radius: 30px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    gap: 20px;
    border: none;
    color: var(--color-text-green);
    font-size: var(--font-size-l);
    font-family: var(--font-family);
}

.order-contact-form form textarea {
    height: 200px;
    resize: none;
}

.order-contact-form form input:focus,
.order-contact-form form textarea:focus {
    outline: none;
    border: none;
}

.order-contact-form form input::placeholder,
.order-contact-form form textarea::placeholder {
    color: var(--color-form-inputs-placeholder);
    text-transform: uppercase;
    font-size: var(--font-size-l);
    font-family: var(--font-family);
}

.order-contact-form form button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    height: 64px;
    gap: 8px;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    background: none;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: var(--font-size-l);
    font-family: var(--font-family);
}

.order-contact-form form p {
    color: var(--color-white);
    font-size: var(--font-size-l);
    opacity: 0.6;
    font-family: var(--font-family);
    font-weight: 500;
}

.order-items {
    width: 58%;
    padding: 30px;
    background: rgba(249, 249, 249, 0.8);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-title-h2 {
    color: var(--color-text-green);
    text-transform: uppercase;
    font-size: var(--font-size-xl);
    font-weight: 500;
}

.order-product {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-bg-dark);
}

.order-product-image {
    width: 120px;
    height: 120px;
}

.order-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.order-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.order-product-info h2 {
    font-size: var(--font-size-xxl);
    margin: 0;
    font-weight: bold;
}

.order-product-second-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.order-product-details {
    display: flex;
    flex-direction: column;
}

.order-product-about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
}

.detail-name,
.detail-value {
    font-size: var(--font-size-base);
    color: var(--color-footer);
}

.order-product-controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.order-product-amount {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.order-product-amount p {
    font-size: var(--font-size-base);
    color: var(--color-footer);
    font-weight: 400;
    margin-right: 20px;
}

.order-product-amount button {
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-text-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amount-minus {
    background: none;
    color: var(--color-text-green);
}

.amount-plus {
    background: var(--color-text-green);
    color: white;
}

.amount-value {
    width: 30px;
    text-align: center;
    border: none;
    background: none;
    font-size: var(--font-size-base);
    font-weight: 400;
    margin-left: 12px;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: var(--font-size-s);
    text-decoration: underline;
}

.order-button {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#cart-total-container {
    font-size: var(--font-size-xxl);
    color: var(--color-footer);
    font-weight: bold;
    width: 100%;
    text-align: right;
    margin-bottom: 20px;
}

.empty-cart-message p a {
    border-bottom: 1px solid var(--color-text-green);

}

.order-button button {
    width: 100%;
    padding: 20px;
    background: var(--color-text-green);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: var(--font-size-l);
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s;
}

.order-button button:hover {
    opacity: 0.9;
}

.order-button p {
    font-size: var(--font-size-base);
    color: #999;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(217, 217, 217, 0.2);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(17px);
}

.modal.show {
    display: flex;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease-out;
}



@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: #ccc;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--color-text-green);
}

.modal-content img {
    width: auto;
    height: 250px;
    margin-top: -40px;
}

.modal-content h2 {
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-size: var(--font-size-xxl);
    color: var(--color-text-green);
}

.modal-content p {
    margin: 0 0 40px 0;
    font-size: var(--font-size-l);
    color: #666;
    line-height: 1.5;
}

.modal-btn {
    background: var(--color-text-green);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-size: var(--font-size-l);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 400;

}

.modal-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
    width: 100%;
    padding-bottom: 20px;
    grid-column: 1 / -1;
    /* Занимает все колонки грида */
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-link,
.pagination-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #3C4A33;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.pagination-link:hover,
.pagination-arrow:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.pagination-link.active {
    background-color: #4A5332;
    color: #FFFFFF;
    cursor: default;
    transform: none;
}

.pagination-arrow {
    background-color: transparent;
    color: #4A5332;
}

.pagination-arrow:hover {
    background-color: rgba(74, 83, 50, 0.1);
}

.pagination-arrow.disabled {
    color: #D1D1D1;
    cursor: default;
    pointer-events: none;
}

.pagination-arrow.disabled:hover {
    background-color: transparent;
    transform: none;
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: #3C4A33;
}