@font-face {
    font-family: 'Fixel Display';
    src: local('FixelDisplay Light'),
    local('FixelDisplay-Light'),
    url('../fonts/FixelDisplay-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel Display';
    src: local('FixelDisplay Regular'),
    local('FixelDisplay-Regular'),
    url('../fonts/FixelDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel Display';
    src: local('FixelDisplay Meduim'),
    local('FixelDisplay-Meduim'),
    url('../fonts/FixelDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel Display';
    src: local('FixelDisplay SemiBold'),
    local('FixelDisplay-SemiBold'),
    url('../fonts/FixelDisplay-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel Text';
    src: local('FixelText Regular'),
    local('FixelText-Regular'),
    url('../fonts/FixelText-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel Text';
    src: local('FixelText Medium'),
    local('FixelText-Meduim'),
    url('../fonts/FixelText-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fixel Text';
    src: local('FixelText SemiBold'),
    local('FixelText-SemiBold'),
    url('../fonts/FixelText-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

:root {
    --color-EDDDDD: #EDDDDD;
    --color-5D6D48: #5D6D48;
    --color-373433: #373433;
    --color-B8BAA3: #B8BAA3;
    --color-12100F: #12100F;
    --color-A55937: #A55937;
    --color-FFFFFF: #FFFFFF;
    --color-676767: #676767;
    --color-A77169: #A77169;
    --color-8B9CAB: #8B9CAB;
    --color-5D6D480D: #5D6D480D;
    --color-B70D05: #B70D05;
    --color-181818: #181818;
    --color-F7F7F6: #F7F7F6;
    --color-B2BDC933: #B2BDC933;
    --color-B2BDC980: #B2BDC980;;
}

*, :before, :after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-12100F);
    font-family: 'Fixel Display', sans-serif;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1700px;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper-content {
    flex: 1;
}

.row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
}

.col-sm-3, .col-3 {
    grid-column: span 3;
}

.col-sm-6, .col-6 {
    grid-column: span 6;
}

.col-sm-9, .col-9 {
    grid-column: span 9;
}

.col-sm-12, .col-12 {
    grid-column: span 12;
}

.not-found-block, .success-block {
    margin: 80px auto 120px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-block > img {
    max-width: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 40px;
    order: -1;
}

.success-block .success-bold {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--color-5D6D48);
    margin-block: 30px;
}

.not-found-block > img {
    max-width: 520px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 60px;
}

.not-found-block > h1, .success-block > h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 25px;
}

.not-found-block > p {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.35px;
    text-align: center;
    margin-bottom: 60px;
}

.success-block p {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 20px;
}

.success-block p:first-child {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: var(--color-5D6D48);
}

.success-block p:last-child {
    margin-bottom: 40px;
}

.success-block p > a {
    text-decoration: underline;
    color: var(--color-5D6D48);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    list-style: none;
    background-color: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.breadcrumb > li {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.breadcrumb > li a {
    color: var(--color-12100F);
}

.breadcrumb > li a:hover {
    text-decoration: underline;
}

.breadcrumb > li:first-of-type > a {
    color: var(--color-5D6D48);
}

.breadcrumb > li:not(:first-of-type):not(:last-of-type) > a {
    color: var(--color-676767);
}

.breadcrumb > li:last-of-type {
    pointer-events: none;
}

.breadcrumb > li:last-of-type a, .breadcrumb > li:last-of-type:before {
    color: var(--color-373433);
}

.breadcrumb > li + li:before {
    padding: 0 14px;
    content: "/";
    color: var(--color-676767);
}

.custom-dropdown {
    position: relative;
    display: flex;
    width: max-content;
    justify-self: end;
    gap: 4px;
}

.custom-dropdown > label {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-676767);
}

.dropdown-toggle {
    border: none;
    background: none;
    outline: none;
    font-family: "Fixel Display", sans-serif;
    gap: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-12100F);
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(-180deg);
}

.custom-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 0;
    margin: 6px 0 0;
    background: white;
    border-radius: 6px;
    list-style: none;
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000026;
    opacity: 0;
    transform: translateY(-5px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.custom-dropdown.open .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.custom-dropdown .dropdown-menu li {
    padding: 5px 10px;
    cursor: pointer;
    color: var(--color-676767);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    transition: background 0.2s;
}

.custom-dropdown .dropdown-menu li:hover {
    background: rgba(0, 0, 0, 0.05);
}

.custom-dropdown .dropdown-menu .active {
    color: var(--color-12100F);
}


.page-header {
    display: flex;
    flex-direction: column;
}

.page-title {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    margin-top: 40px;
}

.page-title-desc{
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

#toast {
    position: fixed;
    width: 100%;
    z-index: 99999;
}

#toast > .container {
    position: relative;
}

#top {
    background-color: var(--color-EDDDDD);
    position: relative;
    height: 38px;
}

#top::after, .menu-item:not(.has-children)::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(184, 186, 163, 0.6) 0%, var(--color-5D6D48) 50%, rgba(184, 186, 163, 0.6) 100%);
}

header {
    position: relative;
}

.top-bar {
    display: grid;
    grid-template-columns: 5fr 400px 5fr;
    align-items: center;
    height: 100%;
}

.top-bar a {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.02em;
    color: var(--color-373433);
    width: fit-content;
}

.top-bar a:hover {
    opacity: 75%;
}

.top-bar-social svg {
    stroke: var(--color-373433);
}

.top-bar > a:first-of-type {
    font-weight: 500;
}

.top-bar-menu {
    display: flex;
    justify-content: center;
    gap: 13px;
}

.top-bar-menu > a {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-373433);
}

.top-bar-social {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 7px;
}

.top-bar-social > div {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.w-100 {
    width: 100%;
}

.header {
    display: grid;
    padding-block: 30px 42px;
    grid-template-columns: 1fr 125px 1fr;
    align-items: center;
    gap: 85px;
}

.header-logo {
    width: fit-content;
    justify-self: center;
}

.header-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.header-contact-phone > a {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--color-5D6D48);
    display: flex;
    align-items: end;
    gap: 4px;
    width: fit-content;
    transition: color 150ms ease-out;
}

.header-contact-phone > a:hover {
    color: var(--color-B8BAA3);
    text-decoration: underline;
}

.header-contact-phone > a > svg {
    stroke: var(--color-5D6D48);
    transition: stroke 150ms ease-out;
}

.header-contact-phone > a:hover > svg {
    stroke: var(--color-B8BAA3);
}

.header-contact-time {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.03em;
    color: var(--color-373433);
    margin-top: 2px;
}

.header-actions {
    display: flex;
    justify-content: end;
    gap: 10px;
    height: 24px;
}

.header-actions a {
    position: relative;
    display: flex;
}

.header-search-icon {
    cursor: pointer;
    justify-self: end;
    justify-content: flex-end;
}

.header-search-button {
    position: absolute;
    top: -3px;
    right: 0;
    border: none;
    background: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-5D6D48);
    cursor: pointer;
}

.social-link svg,
.mobile-menu-close > svg,
.header-actions a > svg,
.header-actions a > svg > path,
.mobile-icons svg {
    stroke: var(--color-12100F);
    transition: stroke 150ms ease-out;
}

.social-link svg:hover, .mobile-menu-close > svg:hover, .header-actions a > svg:hover, .header-actions a > svg:hover > path {
    stroke: var(--color-B8BAA3);
}

.header-cart-total, .header-wishlist-total {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 0;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    background-color: var(--color-A55937);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    color: var(--color-FFFFFF);
    transform: translate(50%, -50%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-list {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.menu-item {
    height: 48px;
}

.menu-link {
    height: 100%;
    font-size: 18px;
    line-height: 22px;
    display: block;
    font-weight: 500;
    color: var(--color-12100F);
    transition: all 0.3s ease-out;
}

.menu-link.sale {
    color: var(--color-A55937);
}

.menu-link.new {
    color: var(--color-5D6D48);
}

.has-children .submenu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: var(--color-FFFFFF);
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0px 4px 4px -2px #00000026;
}

.has-children:hover .submenu {
    visibility: visible;
    opacity: 1;
}

.submenu-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    padding: 0;
    padding-block: 20px;
}

.submenu-link {
    display: block;
    width: fit-content;
    color: var(--color-12100F);
    transition: color 0.3s;
}

.menu-link:hover, .submenu-link:hover, .menu-item.has-children:hover > .menu-link {
    color: var(--color-5D6D48);
    text-decoration: underline;
}

.see-all {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--color-5D6D48);
}

/*
Input styles
 */
.form-group {
    position: relative;
    width: 100%;
}

.form-control {
    border: none;
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--color-676767);
    background-color: transparent;
    margin: 0 auto;
    height: 21px;
    outline: none !important;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    color: var(--color-373433);
    transition: all .2s ease-in-out;
    text-overflow: ellipsis;
    padding: 0 0 6px 0;
}

.form-group .text-danger {
    position: absolute;
    color: var(--color-B70D05);
    font-size: 12px;
}

.form-group.has-error > .form-control, .form-group:has(.text-danger) > .form-control {
    border-bottom: 1px solid var(--color-B70D05);
}

.control-label {
    position: absolute;
    bottom: 6px;
    left: 0;
    text-align: left;
    display: inline-block;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    color: var(--color-373433);
    cursor: text;
    transition: all 150ms ease-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}

.form-control:hover, .form-control:focus {
    outline: none !important;
    border-bottom: 1px solid var(--color-5D6D48);
}

.form-control:hover {
    border-color: var(--color-676767);
}

.form-control:hover ~ label {
    color: var(--color-676767);
}

.form-control:focus ~ label, .form-control:not(:placeholder-shown) ~ label,
.form-control:-webkit-autofill ~ label {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    bottom: 25px;
    color: var(--color-676767);
}

.password-show {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.password-show:focus > svg {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--color-12100F);
}

/*
Button styles
 */
.btn {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    background-color: var(--color-5D6D48);
    max-width: 207px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    transition: all 200ms ease-out;
    color: var(--color-FFFFFF);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.35px;
    user-select: none;
}

.btn:hover {
    background-color: var(--color-FFFFFF);
    color: var(--color-5D6D48);
    border: 2px solid var(--color-5D6D48);
}

.btn-secondary {
    background-color: var(--color-FFFFFF);
    color: var(--color-5D6D48);
    border: 2px solid var(--color-5D6D48);
}

.btn-secondary:hover {
    background-color: var(--color-5D6D48);
    color: var(--color-FFFFFF);
}

.btn-buy {
    width: 100%;
    max-width: unset;
    padding-block: 12px;
    opacity: 0;
    visibility: hidden;
}

.btn-buy:disabled, #button-cart:disabled {
    background-color: var(--color-B2BDC980);
    color: var(--color-5D6D48);
    border: 2px solid var(--color-5D6D48);
    cursor: not-allowed;
}

/*
Radio button styles
*/
.radio-container {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-676767);
}

.radio {
    width: fit-content;
}

.radio-container:has(label input:checked) {
    border-bottom: 1px solid var(--color-5D6D48);
}

.radio label {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    padding-inline-start: 30px;
    position: relative;
    cursor: pointer;
}

.radio label input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.radio label:has(input:disabled) {
    cursor: not-allowed;
    opacity: 50%;
}

.radio label .radio-checkmark::before {
    content: "";
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    inset-inline-start: 0;
    height: 18px;
    width: 18px;
    border: 1px solid var(--color-B8BAA3);
    border-radius: 50%;
}

.radio:hover label .radio-checkmark::before {
    border: 1px solid var(--color-5D6D48) !important;
}

.radio:hover label {
    color: var(--color-5D6D48);
    text-decoration: underline;
}

.radio label .radio-checkmark::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    left: 9px;
    border-radius: 50%;
    background-color: var(--color-5D6D48);
    transition: all .2s ease-out;
}

.radio label input:checked + .radio-checkmark::before {
    border: 1px solid var(--color-B8BAA3);
    background-color: var(--color-5D6D48);
}

.radio label input:checked + .radio-checkmark::after {
    transform: translate(-50%, -50%) scale(1);
    background-color: var(--color-B8BAA3);
}

.radio-description {
    padding-inline-start: 32px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-373433);
}

.header-cart-icon {
    cursor: pointer;
}

#cart.active {
    transform: translateX(0);
}

footer {
    background-color: var(--color-5D6D48);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 50px 40px;
    border-bottom: 1px solid var(--color-FFFFFF);
    grid-column-gap: 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-instagram {
    margin-bottom: 6px;
    width: fit-content;
}

.footer-instagram:hover {
    opacity: 75%;
}

.footer-newsletter {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-FFFFFF);
}

.footer-newsletter:hover {
    text-decoration: underline
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-self: center;
}

.footer-menu > li > a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-FFFFFF);
}

.footer-menu > li > a:hover {
    opacity: 75%;
}

.footer-menu > li:first-child {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-B8BAA3);
    margin-bottom: 4px;
}

.footer-copyright {
    padding-block: 16px;
    color: var(--color-FFFFFF);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-icons {
    display: flex;
    gap: 7px;
    align-items: center;
}

.footer-contact-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-B8BAA3);
    margin-bottom: 10px;
    max-width: 275px;
}

.footer-contact-phone > a, .footer-email {
    letter-spacing: 0.01em;
    color: var(--color-FFFFFF);
    width: fit-content;
    transition: color 150ms ease-out;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.footer-contact-time {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: var(--color-B8BAA3);
    margin-top: 2px;
    margin-bottom: 10px;
}

.footer-contact-phone > a:hover, .footer-email:hover {
    opacity: 75%;
    text-decoration: underline;
}

.slideshow {
    margin-top: 36px;
}

.slideshow .slick-list {
    overflow: hidden;
    border-radius: 20px;
}

.slideshow .slick-track {
    height: 660px;
}

.slideshow-slide {
    position: relative;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    filter: brightness(0.75);
}

.slideshow-block {
    position: absolute;
    left: 60px;
    bottom: 35%;
    max-width: 730px;
    width: fit-content;
    z-index: 1;
    transform: translateY(50%);
}

.slideshow-block > div {
    margin-bottom: 20px;
    color: var(--color-FFFFFF);
}

.slideshow-block h2 {
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
}

.slideshow-block p {
    font-size: 24px;
    line-height: 38px;
}

.slideshow-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slideshow-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.slideshow-dots li button {
    font-size: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 4px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: var(--color-B8BAA3);
    border-radius: 50%;
}

.slideshow .slideshow-dots .slick-active button {
    background: var(--color-5D6D48);
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-676767);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 5px 0 #00000014;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-FFFFFF);
    z-index: 100;
}

#scrollToTop svg {
    stroke: var(--color-676767);
}

#scrollToTop:hover {
    background-color: var(--color-5D6D48);
    border-color: var(--color-5D6D48);
}

#scrollToTop:hover svg {
    stroke: var(--color-FFFFFF);
}

.product-slider-buttons {
    display: flex;
    gap: 12px;
}

.product-slider-container {
    margin-block: 80px;
}

.product-slider-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.product-slider-title > h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
}

.product-slider-buttons > a {
    cursor: pointer;
}

.product-slider-buttons > a path {
    color: var(--color-5D6D48);
    transition: color 150ms ease-out;
}

.product-slider-buttons > a:hover path {
    color: var(--color-B8BAA3);
}

.product-slider .slick-track {
    display: flex !important;
    margin-left: 0;
}

.product-slider .slick-list {
    margin: 0 -10px;
}

.product-slide {
    margin: 0 10px;
    height: inherit !important;
}

.products-item-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    height: max-content;
}

.product-item-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item-container:hover .product-wishlist, .product-item-container:hover .btn-buy {
    opacity: 1;
    visibility: visible;
}

.product-image {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

.product-wishlist {
    position: absolute;
    display: flex;
    top: 16px;
    padding: 0;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.product-wishlist.active {
    visibility: visible;
    opacity: 1;
}

.product-wishlist.active:hover {
    opacity: 75%;
}

.product-wishlist svg {
    fill: transparent;
    stroke: var(--color-A77169);
    transition: all 0.3s ease-out;
}

.product-wishlist:hover svg, .product-wishlist.active svg {
    fill: var(--color-A77169);
}

.product-container .product-wishlist {
    visibility: hidden;
    opacity: 0;
}

.product-item-container > h4 {
    margin: 20px 0 6px;
}

.product-item-container > h4 > a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-12100F);

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-item-container > .product-model {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-373433);
    margin: 0 0 12px;
    flex-grow: 1;
}

.product-item-container .product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 0 17px;
    flex-grow: 1;
}

.product-review {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    color: var(--color-373433);
    margin-left: 5px;
}

.product-item-container .product-price {
    display: flex;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    align-items: end;
    height: 24px;
    margin: 0 0 20px;
}

.product-item-container .product-status {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-A77169);
}

.product-item-container .product-price .price-new {
    color: var(--color-A77169);
}

.product-item-container .product-price .price-old {
    color: var(--color-373433);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration: line-through;
}

.product-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.product-badge {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    border-radius: 3px;
    color: var(--color-FFFFFF);
    background-color: var(--color-5D6D48);
    padding: 2px 6px;
    text-align: center;
    user-select: none;
}

.product-badge.sale {
    background-color: var(--color-A77169);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75);
}

.banner {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.banner-block {
    position: absolute;
    left: 60px;
    bottom: 35%;
    max-width: 790px;
    width: fit-content;
    z-index: 1;
    transform: translateY(50%);
}

.banner-block > div {
    margin-bottom: 40px;
    color: var(--color-FFFFFF);
}

.banner-block h2 {
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
}

.banner-block p {
    font-size: 24px;
    line-height: 38px;
}

.category-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    margin-bottom: 120px;
}

/*.product-category-container {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*    grid-gap: 20px;*/
/*    height: max-content;*/
/*}*/

.product-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.category-product-total {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-676767);
}

.pagination-wrapper {
    margin-top: 10px;
    grid-column: span 3;
}

.pagination-wrapper .inner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.pagination-wrapper .inner-wrapper .pagination {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    list-style-type: none;
}

.pagination-wrapper .inner-wrapper .pagination li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
}

.pagination-wrapper .inner-wrapper .pagination li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--color-5D6D48);
}

.pagination-wrapper .inner-wrapper .pagination li a:hover {
    font-weight: 600;
}

.pagination-wrapper .inner-wrapper .pagination li.active {
    background: var(--color-5D6D48);
}

.pagination-wrapper .inner-wrapper .pagination li.active span {
    color: var(--color-FFFFFF);
    font-weight: 600;
}

.product-info #product .wrapper-product-select {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.product-info #product .wrapper-product-select .container-options,
.product-info #product .wrapper-product-select .container-quantity {
    margin-bottom: 0 !important;
}

.product-info #product .wrapper-product-select .container-options h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 7px;
}

.container-options .form-group {
    margin-bottom: 10px;
}

.container-options .form-group .text-danger {
    position: unset;
}

.custom-select-wrapper {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.custom-select {
    border: 1px solid var(--color-5D6D48);
    border-radius: 10px;
    padding: 14px 10px;
    background-color: var(--color-FFFFFF);
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.selected-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-select::after {
    content: '';
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: var(--color-5D6D48);
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.375 12.8333L12 17M12 17L7.625 12.8333M12 17L12 7' stroke='%23373433' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
}

.custom-select-wrapper.open .custom-select::after {
    transform: translateY(-50%) rotate(-180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--color-5D6D48);
    z-index: 10;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.custom-select-wrapper.open .select-options {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 8px;
    cursor: pointer;
}

.select-option:hover {
    background: #f0f0f0;
}

.radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 1px solid var(--color-5D6D48);
    background-color: var(--color-FFFFFF);
    color: var(--color-5D6D48);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    min-width: 100px;
    flex-basis: 48%;
}

.radio-btn:hover {
    background-color: var(--color-5D6D48);
    color: var(--color-FFFFFF);
}

.radio-btn:has(input:checked) {
    background-color: var(--color-5D6D48);
    color: var(--color-FFFFFF);
    border-color: var(--color-5D6D48);
}

.custom-form-group-label {
    font-weight: bold;
    color: var(--color-373433);
    display: block;
    margin-bottom: 10px;
}

.checkbox-form-group > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    background: var(--color-F7F7F6);
    padding: 11px;
    border-radius: 10px;
    border: 1px solid var(--color-B8BAA3);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.custom-checkbox-wrapper:hover {
    border-color: var(--color-5D6D48);
    background: var(--color-B2BDC933);
}

.custom-checkbox-label:hover {
    color: var(--color-5D6D48);
}

.custom-checkbox-input {
    margin-right: 10px;
    accent-color: var(--color-5D6D48);
    width: 16px;
    height: 16px;
}

.custom-checkbox-image {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.custom-checkbox-label {
    font-size: 14px;
    color: var(--color-373433);
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

#product-search #content .row .form-group,
#product-search #content .row #button-search,
#product-search #content .row .col-sm-6 {
    grid-column: span 4;
}

#product-search #content .row .search-form #input-search,
#product-search #content .row .col-sm-6 .form-control {
    height: 100% !important;
}

#product-search #content .row .search-form #input-search {
    padding-left: 5px;
}

#product-search #content .row .search-form .control-label {
    left: 3px;
    bottom: 20px;
}

#product-search #content .row .search-form .form-control:focus ~ label,
#product-search #content .row .search-form .form-control:not(:placeholder-shown) ~ label,
#product-search #content .row .search-form .form-control:-webkit-autofill ~ label {
    left: 5px;
    bottom: 50px;
}

#product-search .row #content {
    grid-column: span 12;
}

#product-search #content .product-category-container .custom-dropdown label {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#product-search #content .sort-row {
    grid-template-columns: 1fr !important;
}

#product-search #content .sort-row .col-xs-6 {
    justify-self: flex-end;
}

#product-search #content .row #button-search {
    max-width: unset;
}

#product-search #content .row .col-sm-3 {
    grid-column: span 12;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

#product-search #content .row .col-sm-3 .checkbox-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

#product-search #content h2 {
    padding: 20px 0;
}

#product-search #content .text-empty {
    margin: 0 0 10px 0;
}

.home-subscribe {
    background-color: var(--color-A77169);
    border-radius: 20px 100px 0 20px;
    position: relative;
    margin-block: 80px 120px;
}

.subscribe-block {
    width: 55%;
    margin-inline: 5% auto;
    padding-block: 25px;
    color: var(--color-FFFFFF);
}

.home-subscribe > img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.home-subscribe .subscribe-banner-images {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.home-subscribe .subscribe-banner-images a {
    flex: 1;
}

.subscribe-block > h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 15px;
}

.subscribe-block > .subscribe-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 40px;
}

.subscribe-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-FFFFFF);
    max-width: 780px;
    width: 100%;
    margin-top: 10px;
}

.subscribe-action > a {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0.35px;
    color: var(--color-FFFFFF);
}

.subscribe-action > a:hover {
    opacity: 75%;
}

.cart-header {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    padding-block: 20px;
    display: flex;
    justify-content: space-between;
}

.cart-header span {
    font-weight: 400;
    color: var(--color-5D6D48);
}

#cart {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    max-width: 550px;
    width: 100%;
    height: 100dvh;
    background: var(--color-FFFFFF);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

#cart ul {
    flex: 1;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cart-result {
    background: var(--color-5D6D480D);
    width: 100%;
    padding-block: 30px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.cart-total > p:first-child {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;

}

.cart-total > p:last-child {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

.cart-result .btn {
    max-width: unset;
}

.cart-not-found {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    padding-top: 20px;
}

.cart-item-container {
    position: relative;
}

.cart-first-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #5D6D48 0%, rgba(184, 186, 163, 0.6) 100%);
}

.cart-item-container:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #5D6D48 0%, rgba(184, 186, 163, 0.6) 100%);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr;
    gap: 12px;
    padding-block: 15px;
}

.cart-item > a {
    display: flex;
    height: fit-content;
}

.cart-item img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-caption {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-caption > a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-12100F);
    transition: all 0.3s ease-out;
}

.cart-item-caption > a:hover {
    color: var(--color-5D6D48);
    text-decoration: underline;
}

.cart-item-model {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-373433);
}

.cart-item-option {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-676767);
}

.product-block-buy {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-block-buy > form {
    width: 100%;
}

.product-quantity-input {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    border: 1px solid var(--color-5D6D48);
    border-radius: 10px;
    padding: 3px 10px;
    width: 110px;
    justify-content: space-between;
    background-color: var(--color-FFFFFF);
}

.quantity-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    cursor: pointer;
    color: var(--color-373433);
    width: 20px;
    height: 20px;
}

.quantity-value {
    width: 30px;
    color: var(--color-373433);
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

.cart-action-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-676767);
    display: flex;
    gap: 2px;
    align-items: center;
    padding: 0;
}

.cart-remove > svg {
    stroke: var(--color-676767);
    transition: all 0.3s ease-out;
}

.cart-remove:hover {
    text-decoration: underline;
    color: var(--color-A77169);
}

.cart-remove:hover > svg {
    stroke: var(--color-A77169);
}

.cart-price-block {
    display: flex;
    flex-direction: column;
    align-items: end;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.cart-price-block > .price-new {
    color: var(--color-A77169);
}

.cart-price-block > .price-old {
    color: var(--color-373433);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-decoration: line-through;
}

.forgotten-link {
    position: absolute;
    right: 0;
    top: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-A55937);
}

.account-container {
    width: 33%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 100px auto 120px;
}

.account-container h1 {
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
}

.account-container p {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 90px;
}

.forgotten-link:hover {
    text-decoration: underline;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 60px;
}

.account-container .btn {
    max-width: unset;
}

.account-container > #content {
    width: 100%;
    max-width: 385px;
}

.account-container .form-group, .information-container .form-group {
    margin-bottom: 60px;
}

#information-contact fieldset {
    border-radius: 5px;
    padding: 20px 10px;
    border-color: 1px solid var(--color-5D6D48);
    margin-bottom: 20px;
}

.checkout-page {
    margin-block: 40px 120px;
}

#account-wishlist {
    margin-block: 60px 20px;
}

.wishlist-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.checkout-page h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.information-container {
    margin-bottom: 120px;
}

.information-container h1 {
    margin-bottom: 40px;
}

#information-information #content > div {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    font-family: "Fixel Text", sans-serif;
}

.info-box h3 {
    font-family: "Fixel Display", sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--color-5D6D48);
    margin-bottom: 20px;
    gap: 6px;
}

.info-box p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-373433);
}

.info-box ul {
    padding-left: 10px;
    list-style: none;
    margin-block: 5px 30px;
}

.info-box ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}

.info-box ul li > span {
    font-weight: 500;
}

.info-box ul li::before {
    content: "•";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-box p.highlight {
    color: var(--color-5D6D48);
    margin-top: 10px;
}


.sidebar {
    width: 66%;
}

.sidebar > p {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
}

.sidebar > p > svg {
    display: none;
}

.sidebar > p:after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-5D6D48) 0%, rgba(184, 186, 163, 0.6) 100%);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.sidebar ul li a {
    color: var(--color-12100F);
    transition: all 0.3s ease-out;
}

.sidebar ul li a.active {
    font-weight: 600;
    color: var(--color-5D6D48);
    text-decoration: underline;
}

.sidebar ul li a.logout {
    color: var(--color-676767);
}

.sidebar ul li a:hover {
    color: var(--color-5D6D48);
    text-decoration: underline;
}

#account-newsletter #content p {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.35px;
    max-width: 650px;
    margin-bottom: 30px;
}

#account-newsletter .form-group:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 3px;
    user-select: none;
}

input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--color-5D6D48);
    cursor: pointer;
}

input[type="checkbox"] ~ label {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
}

#account-password #content {
    margin-top: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-F7F7F6);
    border-radius: 12px;
    border-spacing: 0;
}

.table > thead > tr > td {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.6px;
    color: var(--color-181818);
}

.info-row .table > thead > tr > td:first-of-type, .info-row .table > tbody > tr > td:first-of-type {
    padding: 10px 0;
}

.table tbody td {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.6px;
}

.table th, .table td {
    padding: 15px;
}

.table tbody tr {
    position: relative;
    z-index: 0;
}

.table tbody tr.active {
    background-color: var(--color-5D6D48);
    color: var(--color-FFFFFF);
}

.table tbody tr::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-5D6D48) 0%, rgba(184, 186, 163, 0.6) 100%);
}

.info-link-more {
    font-family: "Fixel Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-5D6D48);
}

.info-link-more.active {
    color: var(--color-FFFFFF);
}

.table .info-more {
    width: 140px;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.table .info-row td:first-of-type {
    padding: 0 15px;
}

.table .info-row {
    border-bottom: 3px solid var(--color-5D6D48);
}

.order-info-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-block: 30px;
    position: relative;
}

.order-info-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    height: 100%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--color-5D6D48) 0%, rgba(184, 186, 163, 0.6) 100%);
}

.order-info-block > div > .order-info-item:first-of-type {
    margin-bottom: 20px;
}

.order-info-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.order-info-actions > a {
    display: flex;
    gap: 6px;
    align-items: center;
}

.order-info-actions > a > span {
    display: none;
}

.table tfoot tr:not(:first-of-type):after {
    display: none;
}

.table tfoot td {
    padding: 8px;
}

.address-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.address-container .address-block {
    padding-block: 20px;
    position: relative;
    max-width: 400px;
    margin-bottom: 12px;
}

.address-container .address-block:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-5D6D48) 0%, rgba(184, 186, 163, 0.6) 100%);
}

.address-container .address-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.address-actions a {
    color: var(--color-676767);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    transition: all 0.3s ease-out;
}

.address-actions svg {
    stroke: var(--color-676767);
}

.address-actions a:hover {
    text-decoration: underline;
}

.address-actions a.edit:hover {
    color: var(--color-8B9CAB);
}

.address-actions a.edit:hover svg {
    stroke: var(--color-8B9CAB);
}

.address-actions a.delete:hover {
    color: var(--color-A77169);
}

.address-actions a.delete:hover svg {
    stroke: var(--color-A77169);
}

.address-container .btn {
    margin-top: 10px;
}

.product-container {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 20px;
    margin-block: 20px 120px;
}

.product-image-container {
    display: flex;
    gap: 20px;
    --product-view-height: 650px;
    width: 100%;
}

.product-image-container .f-thumbs.is-classic.is-vertical {
    height: var(--product-view-height, 100%);
    --f-thumb-gap: 20px;
    max-width: 162px;
    width: 100%;
}

.f-carousel__viewport {
    border-radius: 20px;
}

.f-carousel__thumbs.f-thumbs.is-classic {
    --f-thumb-width: 100%;
    --f-thumb-height: 162px;
}

.f-thumbs.is-classic {
    --f-thumb-border-radius: 10px;
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 40px;
    --f-button-svg-height: 40px;
    --f-button-svg-stroke-width: 1px;
    padding-block: 60px;
    order: -1;
}

#productCarousel {
    height: var(--product-view-height);
    width: 100%;
    position: relative;
}

#productCarousel .f-carousel__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 10px;
}

#productCarousel .f-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#productCarousel .f-carousel__nav {
    opacity: 0;
    transition: opacity 0.15s;
}

.f-thumbs.is-vertical .f-thumbs__track {
    padding: 0 !important;
}

.f-thumbs__slide__button {
    --f-thumb-opacity: 1;
}

.fancybox__footer .f-thumbs__slide {
    --f-thumb-width: 80px;
    --f-thumb-height: 80px;
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    --f-thumb-outline-color: var(--color-5D6D48);
}

#productCarousel .f-carousel__nav .f-button {
    --f-button-prev-pos: 0;
    --f-button-next-pos: 0;
}

#productCarousel .f-carousel__nav .f-button, .f-carousel__thumbs .f-button svg {
    color: var(--color-5D6D48);
}

.product-image-container .is-classic .is-nav-selected .f-thumbs__slide__button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-5D6D48);
}

.product-info .article {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-676767);
    margin-bottom: 20px;
}

.product-info .title-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    align-items: start;
    gap: 20px;
}

.product-info h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
}

.product-info .product-wishlist {
    position: relative;
    visibility: unset;
    opacity: 1;
    top: 0;
    right: 0;
}

.product-info .model {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--color-373433);
    margin-bottom: 20px;
}

.product-info .rating-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.product-info .rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-info .rating-block .review-count {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-676767);
    margin-left: 8px;
}

.product-info .rating-block > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-5D6D48);
    transition: all 0.3s ease-out;
}

.product-info .rating-block > a:hover {
    text-decoration: underline;
    color: var(--color-373433);
}

.product-info .price {
    display: flex;
    gap: 6px;
    align-items: end;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

.product-info .subscription-price {
    color: #d59090;
}

.product-info .subscription-price span {
    color: #d59090;
    font-weight: 600;
}

.product-info .status {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-A77169);
    margin-bottom: 5px;
}

.product-info .price .price-new {
    color: var(--color-A77169);
}

.product-info .price .price-old {
    color: var(--color-373433);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-decoration: line-through;
}

.product-info .short-description {
    margin-block: 40px;
    padding-bottom: 10px;
    position: relative;
}

.product-info .short-description, .product-info .short-description * {
    font-family: "Fixel Text", sans-serif !important;
    font-size: 16px !important;
    line-height: 21px !important;
    color: var(--color-373433) !important;
}

.product-info .short-description:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #5D6D48 0%, rgba(184, 186, 163, 0.6) 100%);
}

.product-info .btn {
    max-width: unset;
}

.container-quantity {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 30px;
}

.container-quantity label {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

.container-quantity .product-quantity-input {
    padding: 14px 10px;
    width: 150px;
}

.container-quantity .quantity-value {
    font-size: 20px;
    line-height: 21px;
}

.nav-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    gap: 60px;
}

.nav-tabs:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 186, 163, 0.6) 0%, var(--color-5D6D48) 50%, rgba(184, 186, 163, 0.6) 100%);
}

.nav-tabs .tab-link {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    padding-bottom: 20px;
    position: relative;
}

.nav-tabs .tab-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--color-5D6D48);
    border-radius: 2px;
    z-index: 1;
    transform: translateX(-50%);
}

.nav-tabs .tab-link.active {
    color: var(--color-5D6D48);
}

.tab-content {
    margin-bottom: 60px;
}

.tab-content #tab-description, .tab-content #tab-ingredients, .tab-content #tab-description *, .tab-content #tab-ingredients * {
    font-family: "Fixel Text", sans-serif !important;
    font-size: 16px !important;
    line-height: 21px !important;
    color: var(--color-373433) !important;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-no-review {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.product-no-review > div {
    font-weight: 600;
    font-size: 26px;
    line-height: 31px;
}

.product-no-review > img {
    max-width: 200px;
    width: 100%;
    object-fit: cover;
}

#form-review > h2 {
    margin: 20px 0;
}

#form-review .form-group {
    margin-bottom: 20px;
}

#form-review .form-group .help-block {
    margin-top: 10px;
}

#form-review .form-group.rating-points {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#form-review .form-group.rating-points .radio label {
    padding: 0 0 0 25px;
}

#form-review .form-group:has(#input-review) label {
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    color: var(--color-373433);
}

#form-review .form-group #input-review {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--color-676767);
    background-color: transparent;
    margin: 4px auto 0 auto;
    height: 150px;
    outline: none !important;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    color: var(--color-373433);
    transition: all .2s ease-in-out;
    text-overflow: ellipsis;
    padding: 6px;
}

#form-review #review .row .text-left .page-result,
#form-review #review .row .text-left .custom-pagination-show-more {
    display: none;
}

#form-review #review .row .text-left .pagination {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
}

#form-review #review .row .text-left .pagination li.active {
    background: var(--color-5D6D48);
}

#form-review #review .row .text-left .pagination li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
}

#form-review #review .row .text-left .pagination li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--color-5D6D48);
}

#form-review #review .row .text-left .pagination li.active span {
    color: var(--color-FFFFFF);
    font-weight: 600;
}

#form-review #review .review-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

#form-review #review .review-wrap table {
    width: calc((100% - 30px) / 2);
}

#form-review #review .review-wrap table tbody {
    display: flex;
    flex-flow: column nowrap;
}

#form-review #review .review-wrap table tbody tr:first-child {
    height: 49px !important;
    display: flex;
    justify-content: space-between;
}

#form-review #review .review-wrap table tbody tr:nth-child(2),
#form-review #review .review-wrap table tbody tr:nth-child(3) {
    display: flex;
    width: 100%;
}

#form-review #review .review-wrap table tbody tr .rating-column {
    width: 32% !important;
}

#form-review #review .review-wrap table tbody tr .reply-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#form-review #review .review-wrap table tbody tr:has(.rating-column) td:last-of-type {
    width: 80% !important;
}

#form-review #review .bottom-review {
    margin-top: 30px;
}

#form-review #review table tbody td {
    vertical-align: top !important;
}

#form-review #review table tbody tr:first-of-type:after {
    display: none;
}

.product-faq-container {
    background-color: var(--color-B2BDC980);
    border-radius: 10px;
    width: 50%;
    margin: 60px auto;
}

.product-faq-container > h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 27px;
    padding: 30px;
    margin: 0;
    text-align: center;
    position: relative;
}

.faq-question {
    position: relative;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    padding: 20px 50px 20px 20px;
}

.faq-question:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 186, 163, 0.6) 0%, var(--color-5D6D48) 50%, rgba(184, 186, 163, 0.6) 100%);
    transform: translateX(-50%);
}

.faq-question svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-question.active svg {
    transform: translateY(-50%) rotate(-180deg);
}

.faq-answer {
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    display: none;
    padding: 0 50px 20px 20px;
}

#oneclick > h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    margin-block: 25px 10px;
}

#oneclick .input-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 8px;
}

#oneclick .form-control {
    min-width: 385px;
    width: 100%;
    height: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--color-5D6D48);
    margin: 0;
}

#oneclick .help-block {
    font-family: "Fixel Text", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}

.buttons {
    margin-bottom: 10px;
}

.catalog-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.catalog-categories a {
    aspect-ratio: 2/1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-inline: 15px;
    color: var(--color-FFFFFF);
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease-out;
}

.catalog-categories a:hover {
    text-decoration: none;
    color: var(--color-FFFFFF);
}

.product-block-container {
    margin-block: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
    background-color: var(--color-B8BAA3);
    overflow: hidden;
}

.product-block-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-block-container.reverse img {
    order: 2;
}

.product-block-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 60px 100px 60px 60px;
}

.product-block-content > h3 {
    font-weight: 600;
    font-size: 34px;
    line-height: 41px;
}

.product-block-content > div, .product-block-content > div * {
    font-family: "Fixel Display", sans-serif !important;
    font-size: 20px !important;
    line-height: 24px !important;
    width: fit-content !important;
}

.olimp-logo {
    display: flex;
    opacity: .7 !important;
    max-width: 100% !important;
}

.olimp-logo:hover {
    opacity: 1 !important;
}

.information-content p {
    margin-block: 15px;
}

.blog-sort {
    margin-block: 20px;
}

.blog-items-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.blog-item-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item-container > .caption {
    flex-grow: 1;
}

.blog-item-container > .caption > h4 > a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-12100F);
}

.blog-item-container > .image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-item-container > .caption > .description {
    font-size: 14px;
    line-height: 17px;
    color: var(--color-12100F);
}

.blog-item-container .btn {
    max-width: unset;
}

.blog-container .pagination-wrapper {
    margin-block: 20px;
}

.article-content {
    width: 50%;
    margin: 0 auto 20px auto;
}

.article-content img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-categories a {
    aspect-ratio: 3/1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-inline: 15px;
    color: var(--color-FFFFFF);
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease-out;
}

#blog-article .viewed {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    justify-content: end;
    margin-bottom: 5px;
}

#product-manufacturer h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-block: 20px;
}

#product-manufacturer a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-5D6D48);
    text-decoration: none;
}

#product-manufacturer a:hover {
    text-decoration: underline;
    color: var(--color-B8BAA3);
}

#product-manufacturer #content {
    margin-bottom: 20px;
}

@media only screen and (max-width: 1120px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .catalog-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .row {
        grid-template-columns: 1fr;
    }

    .col-sm-3, .col-sm-6, .col-sm-9, .col-sm-12 {
        grid-column: span 12;
    }

    .sidebar {
        margin-block: 20px;
        width: 100%;
        position: relative;
    }

    .sidebar > p:after {
        display: none;
    }

    .sidebar ul {
        display: none;
        position: absolute;
        background: var(--color-FFFFFF);
        width: 100%;
        padding: 5px;
        box-shadow: 0px 4px 4px 0px #00000026;
        border-radius: 5px;
        z-index: 100;
    }

    .sidebar ul li {
        font-size: 16px;
        line-height: 19px;
        padding: 5px 10px;
    }

    .sidebar > p {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2px;
        background: var(--color-5D6D48);
        color: var(--color-FFFFFF);
        padding: 10px;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
    }

    .sidebar > p > svg {
        display: block;
        transition: transform 0.3s ease;
    }

    .sidebar > p.rotated > svg {
        transform: rotate(-180deg);
    }

    #form-review #review .review-wrap table tbody tr:first-child {
        height: unset !important;
    }

    #form-review #review .review-wrap table {
        width: 100%;
    }

    #form-review #review .review-wrap table td:before {
        width: 20%;
    }

    #form-review #review .review-wrap table tbody tr td {
        vertical-align: top;
    }
}

@media only screen and (max-width: 768px) {
    #product-search #content .row .form-group,
    #product-search #content .row #button-search,
    #product-search #content .row .col-sm-6 {
        grid-column: span 12;
    }

    #product-search #content .row .search-form .control-label {
        bottom: 7px;
    }

    #product-search #content .row .search-form .form-control:focus ~ label,
    #product-search #content .row .search-form .form-control:not(:placeholder-shown) ~ label,
    #product-search #content .row .search-form .form-control:-webkit-autofill ~ label {
        bottom: 25px;
    }

    .not-found-block, .success-block {
        width: 100%;
        margin-block: 40px 60px;
    }

    .not-found-block > img {
        margin-bottom: 40px;
        max-width: 200px;
    }

    #form-review #review .review-wrap table tbody {
        display: flex;
        flex-direction: column;
    }

    #form-review #review .review-wrap table tbody tr {
        position: relative;
        flex-direction: column;
    }

    #form-review #review .review-wrap table tbody tr .rating-column {
        display: none;
    }

    #form-review #review .review-wrap table tbody tr .reply-wrap {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    #form-review #review .review-wrap table tbody tr .reply-wrap strong {
        display: none;
    }

    #form-review #review .review-wrap table tbody tr:has(.rating-column) td:last-of-type {
        width: 100% !important;
    }

    #form-review #review .review-wrap table td {
        width: 100% !important;
        padding: 8px 10px 8px 35%;
    }

    #form-review #review .review-wrap table td:first-of-type:before {
        top: unset !important;
    }

    #form-review #review .review-wrap table tbody tr::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 1px;
        width: 100%;
        background: linear-gradient(90deg, var(--color-5D6D48) 0%, rgba(184, 186, 163, 0.6) 100%);
    }

    .success-block > img {
        margin-bottom: 40px;
        max-width: 150px;
    }

    .success-block .success-bold {
        font-size: 16px;
        line-height: 19px;
    }

    .not-found-block > h1, .success-block > h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .not-found-block > p {
        font-size: 14px;
        line-height: 17px;
        text-align: center;
        margin-bottom: 40px;
    }

    .success-block p:first-child {
        font-size: 16px;
        line-height: 19px;
    }

    .success-block p {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 10px;
    }

    .toastify {
        max-width: unset !important;
    }

    #top {
        height: 24px;
    }

    #top::after {
        height: 0;
    }

    .top-bar {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .top-bar > *:nth-child(n+2), .header > .header-contact, .header-actions > a:nth-child(2n +1),
    .desktop-menu, .mobile-back-btn, .mobile-menu-header-title, .header-search {
        display: none;
    }

    .top-bar a {
        font-size: 12px;
    }

    .header {
        grid-template-columns: 1fr 64px 1fr;
        padding-block: 15px;
        gap: unset;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        transform: translateX(-100%);
        width: 90%;
        height: 100dvh;
        background: var(--color-FFFFFF);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        display: block;
        overflow: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-icons, .header-actions {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .mobile-stepper-menu, .mobile-wishlist-icon {
        position: relative;
    }

    .mobile-menu-step {
        left: -100vw;
        width: 100%;
        position: absolute;
        transition: left 0.3s ease-in-out;
    }

    .mobile-menu-step.active {
        left: 0;
        margin: 0;
    }

    .mobile-stepper-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        padding-block: 20px 10px;
        margin-bottom: 20px;
    }

    .mobile-menu-header-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

    .mobile-menu-list, .mobile-submenu-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-step-next {
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-link {
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
        text-align: center;
        color: var(--color-12100F);
        text-align: left;
    }

    .mobile-menu-link.sale {
        color: var(--color-A55937);
    }

    .mobile-menu-link.new {
        color: var(--color-5D6D48);
    }

    .mobile-submenu-link {
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        text-align: center;
        color: var(--color-12100F);
    }

    header::after, .mobile-menu-header.sub::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(184, 186, 163, 0.6) 0%, var(--color-5D6D48) 50%, rgba(184, 186, 163, 0.6) 100%);
    }

    .mobile-menu-header {
        position: relative;
        justify-content: end;
    }

    .mobile-menu-header.sub {
        justify-content: space-between;
    }

    .mobile-menu-header.sub .mobile-back-btn, .mobile-menu-header.sub .mobile-menu-header-title {
        display: flex;
    }

    .mobile-wishlist {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-block: 15px;
        margin-top: 20px;
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        color: var(--color-373433);
    }

    .header-contact {
        padding-block: 15px;
        position: relative;
    }

    .mobile-wishlist::after, .mobile-wishlist::before, .header-contact::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(184, 186, 163, 0.6) 0%, var(--color-5D6D48) 50%, rgba(184, 186, 163, 0.6) 100%);
    }

    .mobile-wishlist::before {
        top: 0;
    }

    .mobile-wishlist-icon svg > path {
        stroke: var(--color-12100F);
    }

    .top-bar-social {
        justify-content: start;
        flex-direction: row-reverse;
        margin-block: 20px;
    }

    .top-bar-menu {
        flex-direction: column;
        gap: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 40px 30px;
    }

    .footer-logo {
        justify-self: center;
    }

    .footer-logo img {
        max-width: 150px;
        width: 100%;
    }

    .footer-copyright {
        padding-block: 10px;
        flex-direction: column;
        gap: 10px;
        align-items: start;
        font-size: 12px;
        line-height: 15px;
    }

    .footer-menu {
        justify-self: start;
    }

    .slideshow .slick-track {
        height: 500px;
    }

    .slideshow {
        margin-top: 20px;
    }

    .slideshow-block {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        bottom: 30px;
    }

    .slideshow-block h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .slideshow-block p {
        font-size: 18px;
        line-height: 28px;
    }

    .btn {
        max-width: unset;
        font-size: 16px;
        line-height: 21px;
        border-radius: 5px;
        padding: 11px;
    }

    .product-slider .slick-list {
        margin: 0 -5px;
    }

    .product-slide {
        margin: 0 5px;
    }

    .product-slider-title {
        margin-bottom: 20px;
    }

    .product-slider-title > h3 {
        font-weight: 600;
        font-size: 22px;
        line-height: 27px;
    }

    .product-slider-buttons svg {
        width: 24px;
        height: 24px;
    }

    .product-item-container > h4 {
        margin: 10px 0 3px;
    }

    .product-item-container > h4 > a {
        font-size: 14px;
        line-height: 17px;
        hyphens: auto;
    }

    .product-item-container > .product-model {
        font-size: 12px;
        line-height: 15px;
    }

    .product-item-container .product-rating {
        margin: 0 0 10px;
    }

    .product-item-container .product-status {
        font-size: 12px;
        line-height: 15px;
    }

    .product-item-container .product-price {
        font-size: 16px;
        line-height: 19px;
        flex-direction: column;
        gap: unset;
        align-items: start;
        height: 35px;
        justify-content: center;
        margin-bottom: 10px;
    }

    .product-item-container .product-price .price-old {
        font-size: 12px;
        line-height: 15px;
    }

    .product-wishlist {
        visibility: visible;
        opacity: 1;
        top: 6px;
        right: 6px;
    }

    .product-container .product-wishlist {
        top: 10px;
        right: 10px;
    }

    .product-wishlist svg {
        width: 14px;
        height: 14px;
    }

    .btn-buy {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        opacity: 1;
        visibility: visible;
        padding: 5px;
    }

    .product-slider-container {
        margin-block: 40px;
    }

    .product-badges {
        gap: 2px;
        top: 6px;
        left: 6px;
    }

    .product-badge {
        font-size: 10px;
        padding: 2px;
        line-height: 12px;
    }

    .banner {
        height: 400px;
    }

    .banner-block {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        bottom: 30px;
    }

    .banner-block > div {
        margin-bottom: 20px;
    }

    .banner-block h2 {
        font-size: 22px;
        line-height: 27px;
    }

    .banner-block p {
        font-size: 14px;
        line-height: 17px;
    }

    .home-subscribe {
        border-radius: 20px;
        margin-block: 60px;
    }

    .subscribe-block {
        width: 90%;
        margin: 0 auto;
        padding-block: 20px;
    }

    .home-subscribe .subscribe-banner-images {
        justify-content: center;
    }

    .home-subscribe .subscribe-banner-images a {
        flex: 0 0 calc(30% - 5px);
    }

    .subscribe-block > h3 {
        text-align: center;
        font-weight: 600;
        font-size: 20px;
        line-height: 24px;
    }

    .subscribe-block > .subscribe-text {
        text-align: center;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
    }

    .subscribe-action > a {
        font-size: 16px;
        line-height: 21px;
    }

    .home-subscribe > img, .category-product-total, .category-container .custom-dropdown,
    .blog-container .custom-dropdown {
        display: none;
    }

    .category-container {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .category-filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 10px;
        align-items: center;
    }

    .category-filter select {
        display: block;
        width: 100%;
    }

    .product-category-header {
        display: none;
    }

    .products-item-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    .mobile-select-wrapper {
        position: relative;
        display: inline-block;
    }

    .mobile-select-label {
        border: 2px solid var(--color-8B9CAB);
        border-radius: 5px;
        padding: 5px 25px 5px 10px;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: var(--color-676767);
        background-color: transparent;
        cursor: pointer;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 6.66667L6 10M6 10L2.5 6.66667M6 10L6 2' stroke='%2312100F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        user-select: none;
    }

    .mobile-select {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: none;
    }

    .mobile-select:focus {
        outline: none;
    }

    .page-header {
        flex-direction: column-reverse;
    }


    .breadcrumb-container {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .breadcrumb-container:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(184, 186, 163, 0.6) 0%, var(--color-5D6D48) 50%, rgba(184, 186, 163, 0.6) 100%);
    }

    .breadcrumb {
        display: block;
        padding: 10px 0;
        text-align: center;
    }

    .page-title {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        margin-block: 20px;
    }

    #cart {
        max-width: unset;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        padding: 15px 0 30px;
        grid-row-gap: 20px;
    }

    .cart-item img {
        height: 90px;
    }

    .cart-item-caption > a {
        font-size: 14px;
        line-height: 17px;
    }

    .cart-item-model {
        font-size: 12px;
        line-height: 15px;
    }

    .cart-action-block {
        grid-column: 2;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }

    .cart-price-block {
        align-items: start;
    }

    .cart-remove > span {
        display: none;
    }

    .account-container {
        width: 100%;
        margin-block: 60px;
    }

    .account-container h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .account-container p {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 60px;
    }

    .forgotten-link:hover {
        text-decoration: underline;
    }

    .auth-actions {
        gap: 12px;
    }

    .checkout-page {
        margin-block: 20px 60px;
    }

    .checkout-page h1 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .cart-header {
        font-size: 18px;
        line-height: 22px;
    }

    #account-wishlist {
        margin-block: 20px 60px;
    }

    .wishlist-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .information-container {
        margin-bottom: 60px;
    }

    .information-container h1 {
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 24px;
    }

    .info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .table table,
    .table thead,
    .table tbody,
    .table th,
    .table td,
    .table tr,
    .table tfoot {
        display: block;
    }

    .table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table tbody tr::after {
        display: none;
    }

    .table tr {
        border-radius: 12px;
    }

    .table td:first-of-type {
        padding-top: 20px;
    }

    .table td {
        border: none;
        position: relative;
        padding: 8px 10px 8px 50%;
        white-space: normal;
        text-align: left;
    }

    .table td:first-of-type:before {
        top: 20px;
    }

    .table .info-row {
        display: block;
    }

    .table .info-row > td {
        padding: 0;
    }

    .info-row .table > thead > tr > td, .info-row .table > tbody > tr > td {
        padding: 8px 10px 8px 50%;
    }

    .info-row .table > thead > tr > td:first-of-type, .info-row .table > tbody > tr > td:first-of-type {
        padding: 20px 10px 8px 50%;
    }

    .table td:before {
        position: absolute;
        top: 8px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        color: var(--color-181818);
        font-weight: 600;
        font-size: 14px;
    }

    .table tr.active td:before {
        color: var(--color-FFFFFF);
    }

    .table .info-more {
        width: fit-content;
        padding: 20px 0 10px;
        margin: 0 auto;
    }

    .table .info-row td:first-of-type {
        padding: 0;
    }

    .table td:before {
        content: attr(data-title);
    }

    .order-info-block {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-inline: 10px;
    }

    .order-info-block::before {
        display: none;
    }

    .order-info-item {
        display: flex;
        flex-direction: column;
    }

    .order-info-item > br:first-of-type {
        display: none;
    }

    .order-info-actions {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        align-items: start;
        margin: 0;
        padding-inline: 8px !important;
    }

    .order-info-actions > a > span {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: var(--color-5D6D48);
    }

    .table tfoot {
        position: relative;
        margin-inline: 10px;
    }

    .table tfoot::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, var(--color-5D6D48) 0%, rgba(184, 186, 163, 0.6) 100%);
    }

    .table tfoot td {
        padding: 8px 0;
    }

    .address-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-block: 20px 60px;
    }

    .product-image-container {
        --product-view-height: 300px;
        gap: unset;
    }

    .product-image-container .product-badges {
        top: 10px;
        left: 10px;
    }

    .product-container .product-wishlist {
        visibility: visible;
        opacity: 1;
    }

    #productCarousel {
        height: 100%;
    }

    #productCarousel .f-carousel__nav {
        opacity: 1;
    }

    .address-container .address-block {
        max-width: unset;
    }

    .product-info .title-block {
        margin-bottom: 3px;
    }

    .product-info h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .product-info .model {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 10px;
    }

    .product-info .rating-block {
        margin-bottom: 30px;
    }

    .product-info .price {
        font-size: 20px;
    }

    .product-info .status {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 10px;
    }

    .product-info .price .price-old {
        font-size: 14px;
        line-height: 16px;
    }

    .product-info .short-description {
        margin-block: 20px;
    }

    .product-info .short-description, .product-info .short-description * {
        font-size: 14px !important;
        line-height: 21px !important;
    }

    .product-info .product-wishlist {
        display: none;
    }

    .product-info .rating-block > a {
        display: none;
    }

    .product-info .article {
        margin-bottom: 10px;
    }

    .product-block-buy {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .container-quantity {
        margin-bottom: 15px;
    }

    .nav-tabs {
        gap: 30px;
        justify-content: start;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .nav-tabs .tab-link {
        font-size: 16px;
        line-height: 19px;
        padding-bottom: 15px;
        white-space: nowrap;
    }

    .tab-content #tab-description, .tab-content #tab-ingredients, .tab-content #tab-description *, .tab-content #tab-ingredients * {
        font-size: 14px !important;
    }

    #tab-specification > table > tbody > tr > td:first-child {
        display: none;
    }

    .product-no-review {
        gap: 15px;
    }

    .product-no-review > div {
        font-size: 20px;
        line-height: 24px;
    }

    .custom-checkbox-wrapper {
        flex-basis: 48%;
    }

    .custom-checkbox-label {
        font-size: 12px;
    }

    .product-faq-container {
        width: 100%;
    }

    .product-faq-container > h3 {
        font-size: 18px;
        line-height: 21px;
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 19px;
        padding: 15px 30px 15px 20px;
    }

    .faq-question svg {
        right: 10px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 17px;
        padding: 0 30px 15px 20px;
    }

    #oneclick .form-control {
        min-width: unset;
    }

    #oneclick .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .catalog-categories {
        display: flex;
        overflow-y: hidden;
        gap: 10px;
        overflow-x: auto;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .catalog-categories a {
        width: fit-content;
        min-width: 60vw;
        font-size: 14px;
        line-height: 19px;
        padding: 10px;
    }

    .product-block-container {
        grid-template-columns: 1fr;
    }

    .product-block-content {
        gap: 20px;
        margin: 20px;
    }

    .product-block-content > h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .product-block-content > div * {
        font-size: 14px !important;
        line-height: 17px !important;
    }

    .pagination-wrapper .inner-wrapper .pagination {
        gap: 0;
    }

    .blog-items-container {
        grid-template-columns:repeat(2, 1fr);
        gap: 10px;
    }

    .article-content {
        width: 100%;
    }

    .blog-categories {
        display: flex;
        overflow-y: hidden;
        gap: 10px;
        overflow-x: auto;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .blog-categories a {
        width: fit-content;
        min-width: 40vw;
        font-size: 14px;
        line-height: 19px;
        padding: 10px;
    }
}

@media only screen and (max-width: 666px) {
    #form-review #review .review-wrap table td:first-of-type:before {
        top: 8px !important;
    }

    #form-review #review .review-wrap table td {
        padding: 30px 8px 8px 10px;
    }
}

@media only screen and (max-width: 336px) {
    #form-review .form-group.rating-points {
        margin-top: 25px
    }

    #form-review .form-group.rating-points .radio {
        margin-top: 22px;
    }

    #form-review .form-group.rating-points .radio label {
        padding: 45px 0 0 5px;
    }
}

@media (hover: hover) {
    #productCarousel:hover .f-carousel__nav {
        opacity: 1;
    }
}

.mb-20 {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
}

/* Общий стиль для контейнера */
.about-container {
    display: flex;
    flex-wrap: wrap;
}

.about-container img{
    width: 100%;
}

/* Левый блок (Фото) */
.about-left {
    flex: 0 0 30%; /* На больших экранах 30% */
    padding-right: 15px;
}

/* Правый блок (Текст) */
.about-right {
    flex: 0 0 70%; /* На больших экранах 70% */
}

/* Адаптивные стили для экранов до 1024px (например, планшеты) */
@media (max-width: 1024px) {
    .about-left {
        flex: 0 0 40%; /* На экранах до 1024px блоки занимают по 50% */
    }
    .about-right {
        flex: 0 0 60%; /* На экранах до 1024px блоки занимают по 50% */
    }
}

/* Адаптивные стили для смартфонов (макс. ширина экрана 600px) */
@media (max-width: 720px) {
    .about-left {
        padding-right: 0;
        flex: 0 0 100%; /* На смартфонах блоки занимают 100% ширины */
    }
    .about-right {
        padding-right: 0;
        flex: 0 0 100%; /* На смартфонах блоки занимают 100% ширины */
    }
}

/* Модальне вікно підписки */
#modal-subscription {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}
#modal-subscription .modal-dialog {
    background-color: #fff;
    margin: 10% auto;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    position: relative;
}
#modal-subscription .modal-header {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#modal-subscription .modal-body
{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#modal-subscription .modal-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: right;
    display: flex;
    gap: 5px;
    justify-content: center;
}

#modal-subscription #sub-frequency {
    padding-bottom: 0;
}

.wrapper-product-select .buttons-block{
    display: flex;
    gap: 21px;
    width: 100%;
    flex-direction: row-reverse;
}

.wrapper-product-select .buttons-block #button-subscribe-modal,
.wrapper-product-select .buttons-block #fastOrderForm {
    width: 100%;
}

#button-subscribe-modal {
    background-color: var(--color-FFFFFF);
    color: #d59090;
    border: 3px solid var(--color-EDDDDD);
}

#button-subscribe-modal:hover {
    background-color: var(--color-EDDDDD);
    color: var(--color-FFFFFF);
}


.slideshow .slick-track{
    height: auto !important;
}
.slideshow-slide{
    aspect-ratio: 1600 / 600;
}
.slideshow-slide img{
    filter: none !important;
}
.slideshow-block h2, .slideshow-block p, .slideshow-block a.btn{
    display: none !important;
}