/* 
Theme name: Amavita
Author: Jan Kolařík
Author's url: www.kolarikjan.cz
*/

:root {
    --gray-light: #f8f6f4;
    --gray: #727272;
    --white: #fff;
    --black: #000;
    --gold-dark: #be9657;
    --gold: #e4c088;
    --gold-light: #f3ede8;

    --border-color: #eee2d9;
    --copyright-color: #b2a38c;

    --success: #72be53;

    --radius-large: 50px;
    --radius-large-inner: 45px;
    --radius-default: 30px;
    --radius-default-inner: 26px;
    --radius-medium: 10px;
    --radius-small: 5px;
    --radius-full: 50%;

    --font-base: "DM Sans", sans-serif;
    --font-heading: "Playfair Display", serif;
}

@media (max-width: 993px) {
    :root {
        --radius-large: 30px;
        --radius-large-inner: 26px;
    }
}

body {
    overflow-x: hidden;
    background-color: var(--gray-light);
    font-family: var(--font-base);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
}

a,
button,
input[type="submit"] {
    transition-duration: .25s;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gold-dark);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 2rem;
}

h1 {
    font-size: 42px;
}

a {
    color: var(--gray);
}

a:hover {
    color: var(--gold-dark);
}

table {
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--white);
}

table th {
    background-color: var(--gold-light);
    border-bottom: 1px solid var(--border-color);
    color: var(--black);
    font-weight: 500;
}

table th,
table td {
    padding: .75rem 1.25rem;
}

table tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-color);
}

.owl-nav button {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.owl-nav button svg {
    width: 24px;
}

.owl-nav .owl-prev svg {
    transform: rotate(180deg) translateX(1px);
}

.owl-nav .owl-next svg {
    transform: translateX(1px);
}

@media only screen and (min-width: 1475px) {
    .container-extended {
        margin: 0 auto;
        max-width: 1920px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media only screen and (max-width: 993px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 34px;
    }
}

/* sections */
.section {
    padding: 4rem 0;
}

.section-gold {
    background-color: var(--gold-light);
}

.section-spacing-small {
    padding: 2rem 0;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header-subtitle {
    display: block;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.25;
    color: var(--gold-dark);
    font-weight: 400;
    font-style: italic;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: .75rem;
}

.section-header-title {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 0;
}

.section-header-title-small {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 0;
}

.section-header-text {
    display: block;
    font-size: 18px;
    font-weight: 300;
    margin-top: .75rem;
}

.body>.section:first-child {
    padding-top: 0;
}

@media only screen and (max-width: 993px) {
    .section {
        padding: 2.5rem 0;
    }

    .section-spacing-small {
        padding: 1rem 0 2rem;
    }

    .section-header-subtitle {
        font-size: 20px;
        letter-spacing: .5px;
    }

    .section-header-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .section-header-title-small {
        font-size: 32px;
    }

    .section-header-text {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 2.25rem;
    }
}

/* buttons */
.button {
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: var(--radius-small);
    border: 1px solid var(--gold);
}

.button-hasicon {
    justify-content: space-between;
}

.button-square {
    padding: .8rem;
    aspect-ratio: 1/1;
}

.button svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.button-radius {
    border-radius: var(--radius-default);
}

.button-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}


.button-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.button-white-bordered {
    background-color: var(--white);
    border-color: var(--gold);
    color: var(--gold-dark);
}



.button-white-bordered:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* header */
.header {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 2.25rem;
}

.header.header-subpage {
    position: unset;
}

.header-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3.5rem;
}

.header-logo img {
    max-height: 100px;
}

.header-icons {
    position: absolute;
    top: 0;
    right: 0;
}

.header-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icons-item {
    position: relative;
    display: block;
}

.header-icons-item svg {
    max-width: 24px;
    max-height: 24px;
    transition-duration: .25s;
}

.header-icons-item:hover svg {
    fill: var(--gold-dark);
}

.header-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    background-color: var(--gold-dark);
    color: var(--white);
    border-radius: var(--radius-full);
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 11px;
    font-weight: 300;
}

.header-menu {
    margin-bottom: -.25rem;
}

.header-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem 2.5rem;
}

.header-menu-item a,
.header-menu-categories-button,
.header-menu-categories-content a {
    font-size: 15px;
    letter-spacing: 1.5px;
    line-height: 1.35;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
}

.header-menu-item a::after,
.header-menu-categories ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--gold-dark);
    transition-duration: .15s;
}

.header-menu-item a:hover,
.header-menu-item a.active,
.header-menu-categories-content a:hover {
    color: var(--gold-dark);
}

.header-menu-item a:hover::after,
.header-menu-item a.active::after,
.header-menu-categories ul a:hover::after {
    width: 100%;
}

.header-menu-categories {
    position: relative;
    margin-bottom: -5px;
}

.header-menu-categories-button {
    border: 1px solid var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: .5rem 1.25rem;
    transition-duration: .25s;
}

.header-menu-categories-button svg {
    fill: var(--gold-dark);
    transition-duration: .25s;
}

.header-menu-categories:hover .header-menu-categories-button {
    border-color: var(--gold-dark);
    background-color: var(--gold-dark);
    color: var(--white);
}

.header-menu-categories:hover .header-menu-categories-button svg {
    fill: var(--white);
}

.header-menu-categories-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: .5rem;
}

.header-menu-categories-content-inner {
    background-color: var(--white);
    border-radius: 20px;
    padding: 1.25rem;
}

.header-menu-categories-content ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
}

.header-menu-categories:hover .header-menu-categories-content {
    display: block;
}

.header-toggler {
    width: 1.5rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .25s;
    padding: 0;
    box-shadow: none !important;
    margin-left: auto;
    border: 0;
    background-color: transparent;
}

@media only screen and (min-width: 1200px) {
    .header-toggler {
        display: none;
    }

}

.header-toggler,
.header-toggler .animated-icon span {
    transition: background-color 0.25s;
}

.header-toggler:hover .animated-icon span,
.header-toggler.active .animated-icon span {
    background-color: var(--gold-dark);
}

.header-toggler .animated-icon {
    width: 1.5rem;
    height: 2.25rem;
    margin: 0;
    transform: rotate(0deg);
    cursor: pointer;
    transition-duration: .25s;
    display: block;
}

.header-toggler .animated-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 0;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    background: var(--black);
}

.header-toggler .animated-icon span:nth-child(1) {
    top: 8px;
}

.header-toggler .animated-icon span:nth-child(2) {
    top: 17px;
}

.header-toggler .animated-icon span:nth-child(3) {
    top: 26px;
}

.header-toggler.active .animated-icon span:nth-child(1) {
    top: 17px;
    transform: rotate(135deg);
}

.header-toggler.active .animated-icon span:nth-child(2) {
    opacity: 0;
    left: -20px;
}

.header-toggler.active .animated-icon span:nth-child(3) {
    top: 17px;
    transform: rotate(-135deg);
}

@media only screen and (max-width: 1200px) {
    .header-menu {
        display: none;
        position: absolute;
        z-index: 3;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1.5rem .75rem;
    }

    .header-menu ul {
        flex-direction: column;
        justify-content: center;
    }

    .header.active .header-menu {
        display: block;
        border-top: 1px solid var(--gold-light);
        border-bottom: 1px solid var(--gold-light);
    }

    .header {
        background-color: var(--white);
        position: relative;
        padding: 1rem 0;
    }

    .header-wrapper {
        position: unset;
        align-items: center;
        justify-content: space-between;
    }

    .header-icons {
        position: unset;
    }

    .header-logo img {
        max-height: 60px;
    }

    .header-menu-categories {
        margin-bottom: 0;
    }

    .header-menu-categories-button {
        border-color: var(--gold-dark);
    }
}

/* banner */
.banner-video video {
    width: 100%;
    object-fit: cover;
    height: 100dvh;
}

.banner-slider-item {
    width: 100%;
    object-fit: cover;
    max-height: 100dvh;
}

.banner .owl-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.banner .owl-dots button {
    transition-duration: .25s;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-small);
    background-color: var(--white);
}

.banner .owl-dots button.active {
    background-color: var(--gold-dark);
    width: 30px;
}

@media only screen and (max-width: 1200px) {
    .banner-video video {
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media only screen and (max-width: 993px) {
    .banner {
        padding-bottom: 1rem;
    }

    .banner .owl-dots {
        bottom: .75rem;
        gap: .35rem;
    }

    .banner .owl-dots button {
        width: 6px;
        height: 6px;
    }

    .banner .owl-dots button.active {
        width: 24px;
    }
}

/* categories */
.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.categories-item {
    background-color: var(--gold-light);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
}

.categories-item-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.categories-item-title {
    display: block;
    margin-bottom: .75rem;
    font-size: 45px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--white);
}

.categories-item-button {
    width: fit-content;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: var(--radius-small);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1.25rem;
    transition-duration: .25s;
}

.categories-item-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition-duration: .25s;
    filter: brightness(.9);
}

.categories-item-button svg {
    fill: var(--white);
    transition-duration: .25s;
}

.categories-item:hover .categories-item-button {
    background-color: var(--white);
    color: var(--gold-dark);
}

.categories-item:hover .categories-item-button svg {
    fill: var(--gold-dark);
}

.categories-item:hover .categories-item-image {
    transform: scale(1.05);
}

@media only screen and (max-width: 1475px) and (min-width: 1200px) {
    .categories-item-title {
        font-size: 34px;
    }
}

@media only screen and (max-width: 1200px) {
    .categories-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .categories-item-spacing {
        display: none;
    }
}

@media only screen and (max-width: 993px) {
    .categories-item-title {
        font-size: 34px;
    }
}

@media only screen and (max-width: 768px) {
    .categories-wrapper {
        grid-template-columns: 1fr;
        gap: .75rem;
    }
}

/* companies */
.companies-item {
    height: 100%;
    margin: 0 .75rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .75rem;
    background-color: var(--white);
    border: 1px solid var(--gold-light);
    padding: 1.75rem;
    border-radius: var(--radius-default);
    text-decoration: none;
}

.companies-item img {
    width: 100%;
    aspect-ratio: 1.75/1;
    object-fit: scale-down;
    object-position: center;
    transition-duration: .25s;
    filter: grayscale(1);
}

.companies-item span {
    display: block;
    text-align: center;
    font-size: 14px;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 800;
    transition-duration: .25s;
}

.companies-item:hover span {
    color: var(--gold-dark);
}

.companies-item:hover img {
    filter: none;
}

.companies-slider-outer {
    margin: 0 .75rem;
}

.companies-slider .owl-stage {
    display: flex;
    margin: 0 auto;
}

.companies-slider .owl-nav {
    position: absolute;
    top: -2rem;
    right: .75rem;
    display: flex;
    gap: .5rem;
    transform: translateY(-100%);
}

.companies-slider .owl-nav button {
    background-color: var(--gold-light) !important;
}

.companies-slider .owl-nav button:hover {
    background-color: var(--gold-dark) !important;
    color: var(--white) !important;
}

@media only screen and (max-width: 1200px) {
    .companies-slider .owl-nav {
        position: unset;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media only screen and (max-width: 576px) {
    .companies-slider-outer {
        margin: 0;
    }
}

/* products */
.products-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.products-buttons .button {
    min-width: 190px;
    border-radius: var(--radius-large);
}

.products-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
}

.products-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 .75rem;
    height: 100%;
}

.products-wrapper>.products-item {
    margin: 0;
}

.products-item-imagebox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--white);
    border-radius: var(--radius-default);
    overflow: hidden;
    flex-shrink: 0;
    padding: 2.075rem;
}

@media (min-width: 1200px) {
    .homepage .products-item-imagebox {
        padding: 2.25rem;
    }
}

.products-item-imagebox img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    transition-duration: .25s;
    border-radius: var(--radius-default-inner);
}

.products-slider-outer {
    margin: 0 .75rem;
}

.products-slider .owl-stage {
    display: flex;
    margin: 0 auto;
}

.products-item-title {
    display: block;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 500;
    text-decoration: none;
}

.products-item-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.products-item-title:hover {
    text-decoration: underline;
}

.products-item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    gap: .75rem;
}

.products-item-content-top,
.products-item-content-bottom {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.products-item-imagebox:hover img {
    transform: scale(1.05);
}

.products-item-imagebox-tags {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.products-item-imagebox-tags span {
    display: block;
    font-size: 14px;
    line-height: 1.25;
    padding: .425rem .75rem;
    background-color: var(--gold);
    border-radius: var(--radius-medium);
    color: var(--white);
    font-weight: 600;
}

.products-item-prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.products-item-prices-main {
    color: var(--gold-dark);
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.products-item-prices-old {
    font-size: 17px;
    text-decoration: line-through;
}

.products .owl-nav {
    position: absolute;
    top: -2rem;
    right: .75rem;
    display: flex;
    gap: .5rem;
    transform: translateY(-100%);
}

.products-slider-4items-outer .owl-nav {
    top: -2.5rem;
}

.products .owl-nav button:hover {
    background-color: var(--gold-dark) !important;
    color: var(--white) !important;
}

@media only screen and (max-width: 1200px) {
    .products .owl-nav {
        position: unset;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .products-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 576px) {
    .products-slider-outer {
        margin: 0;
    }

    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .products-buttons {
        flex-direction: column;
        gap: .5rem;
    }
}

/* instagram */
.instagram-wrapper {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.instagram-item {
    display: block;
    aspect-ratio: 1/1;
    width: 100%;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-item-hover {
    opacity: 0;
    transition-duration: .25s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #be965773;
}

.instagram-item-hover svg {
    width: 2.75rem;
    height: 2.75rem;
    color: var(--white);
}

.instagram-item:hover .instagram-item-hover {
    opacity: 1;
}

@media only screen and (max-width: 993px) {
    .instagram-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 576px) {
    .instagram-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* footer */
.footer {
    padding: 4rem 0;
    background-color: var(--white);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: .75fr 1fr 1.15fr 1.65fr;
    gap: 2.5rem;
}

.footer-item-title {
    display: block;
    font-size: 17px;
    line-height: 1.6;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: .75rem;
}

.footer-contact-inner p {
    margin-bottom: 0;
}

.footer-contact-address {
    margin-bottom: 1.5rem;
}

.footer-logo-link img {
    width: 100%;
    max-width: 130px;
    height: auto;
}

.footer-item.footer-contact a {
    text-decoration: none;
}

.footer-item.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact-phone a {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.25;
    color: var(--gold-dark);
    font-weight: 700;
}

.footer-contact-mail a {
    font-size: 20px;
    line-height: 1.35;
    color: var(--gold-dark);
    font-weight: 500;
}

.footer-item-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item-menu li:not(:last-child) {
    margin-bottom: .25rem;
}

.footer-item-menu a {
    color: var(--gray);
    text-decoration: none;
}

.footer-item-menu a:hover {
    color: var(--gold-dark);
}

.footer-newsletter-title {
    display: block;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    margin-bottom: 1.75rem;
}

.footer-newsletter-inputs {
    display: flex;
    align-items: stretch;
}

.footer-newsletter-inputs input[type="email"] {
    border: 0;
    outline: none;
    border-top-left-radius: var(--radius-large);
    border-bottom-left-radius: var(--radius-large);
    background-color: var(--gray-light);
    height: 60px;
    padding: .5rem 1.75rem;
    font-size: 17px;
    width: 100%;
}

.footer-newsletter-inputs input[type="submit"] {
    border: 0;
    outline: none;
    border-top-right-radius: var(--radius-large);
    border-bottom-right-radius: var(--radius-large);
    background-color: var(--gold);
    height: 60px;
    padding: .5rem 1.25rem;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition-duration: .25s;
}

.footer-newsletter-inputs input[type="submit"]:hover {
    background-color: var(--gold-dark);
}

@media only screen and (max-width: 1475px) {
    .footer-wrapper {
        grid-template-columns: .5fr 1.25fr 1.25fr 1.75fr;
    }

    .footer-item.footer-contact {
        padding-left: 0;
    }
}

@media only screen and (max-width: 993px) {
    .footer-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 993px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer {
        padding: 3rem 0;
        text-align: center;
    }

    .footer-contact-address {
        margin-bottom: .75rem;
    }

    .footer-logo-link img {
        max-width: 80px;
    }
}

/* copyright */
.copyright {
    border-top: 1px solid var(--gold-light);
    background-color: var(--white);
    padding: 1.75rem 0;
}

.copyright-socials {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.copyright-socials ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: .5rem;
}

.copyright-socials a {
    background-color: var(--gold);
    color: var(--white);
    width: 39px;
    height: 39px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-socials a:hover {
    background-color: var(--white);
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.copyright-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem 2.5rem;
    justify-content: space-between;
}

.copyright-text {
    display: flex;
    flex-wrap: wrap;
}

.copyright-text span {
    font-size: 14px;
    color: var(--copyright-color);
    text-transform: uppercase;
}

.copyright-text span:not(:last-child)::after {
    content: "|";
    padding: 0 .33rem;
}

.copyright-text a {
    color: var(--copyright-color);
    text-decoration: none;
}

.copyright-text a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

@media only screen and (max-width: 1200px) {
    .copyright-wrapper {
        flex-direction: column;
    }
}

@media only screen and (max-width: 768px) {
    .copyright-text span {
        text-align: center;
        display: block;
    }

    .copyright-text span:not(:last-child) {
        margin-bottom: .25rem;
    }

    .copyright-text span:not(:last-child)::after {
        content: none;
    }
}

@media only screen and (max-width: 576px) {
    .copyright-socials {
        flex-direction: column;
        gap: .5rem;
    }
}

/* subpage */

.subpage>.section:first-child {
    padding-top: 0;
}

.heading {
    margin: 0 .5rem;

}

.section.heading {
    padding-top: 0;
}

.heading-inner {
    padding: 2.5rem;
    min-height: 340px;
    background-color: var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--radius-small);
}

.heading h1 {
    color: var(--white);
    font-size: 54px;
}

.headingSimple h1,
.heading h1 {
    margin-bottom: 0;
}

.breadcrumb:not(:last-child) {
    margin-bottom: .5rem;
}

.section.headingSimple {
    border-top: 1px solid var(--border-color);
}

@media only screen and (max-width: 993px) {

    .heading {
        margin: 0;
    }

    .section.heading {
        padding-top: .75rem;
    }

    .heading-inner {
        padding: 2rem 1rem;
        min-height: 220px;
    }

    .heading h1 {
        font-size: 34px;
        text-align: center;
    }

}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    display: block;
    padding: 0 .5rem;
    font-size: 14px;
    color: var(--gray);
}

.breadcrumb li a {
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb li:last-child a {
    color: var(--gold-dark);
}

.heading .breadcrumb li:last-child a {
    color: var(--white);
}

.heading .breadcrumb li:not(:last-child)::after {
    color: var(--white);
}

.heading .breadcrumb li a {
    color: var(--white);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li:last-child a {
    font-weight: 600;
}

@media only screen and (max-width: 993px) {
    .breadcrumb {
        display: none;
    }
}

/* category */

.cat-section {
    margin-bottom: 3rem;
}

.cat-section-top {
    margin-top: 3rem;
}

.subcategories-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}

.subcategories-item {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
    background-color: var(--white);
    border: 1px solid var(--gold-light);
    padding: 1.75rem;
    border-radius: var(--radius-default);
    text-decoration: none;
}

.subcategories-item img {
    display: none;
    width: 100%;
    aspect-ratio: 1.75/1;
    object-fit: scale-down;
    object-position: center;
    transition-duration: .25s;
}

.subcategories-item span {
    display: block;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-heading);
    line-height: 1.5;
    color: var(--black);
    font-weight: 600;
    transition-duration: .25s;
}

.subcategories-item:hover span {
    color: var(--gold-dark);
}

@media only screen and (max-width: 1200px) {
    .subcategories-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 993px) {
    .subcategories-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .subcategories {
        display: none;
        position: relative;
        padding-right: 0;
        background-color: var(--white);
        border-radius: var(--radius-small);
        padding: 2rem 1.25rem;
    }

    .cat-section-top-mobile {
        margin-top: 3rem;
    }

    .subcategories.active {
        display: block;
    }

    #subcategories-toggle {
        margin-top: .75rem;
    }

    .subcategories-wrapper {
        gap: 1rem;
    }

    .subcategories-item {
        flex-direction: row;
        padding: .75rem;
    }

    .subcategories-item img {
        width: 60px;
        aspect-ratio: 1/1;
    }

    .subcategories-item span {
        text-align: left;
    }
}

@media only screen and (max-width: 768px) {
    .subcategories-wrapper {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.pagination-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: .25rem;
}

.pagination-page a {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: var(--radius-small);
    background-color: var(--white);
    color: var(--gray);
    border: 1px solid var(--gold);
    text-decoration: none;
}

.pagination-page a.active,
.pagination-page a:hover {
    color: var(--white);
    border-color: var(--gold-dark);
    background-color: var(--gold-dark);
}

.pagination-arrow {
    color: var(--gold-dark);
}

.pagination-arrow {
    display: flex;
    align-items: center;
    padding: .25rem;
}

.pagination-arrow svg {
    width: 1.3rem;
    height: 1.3rem;
    stroke: var(--gold-dark);
}

@media only screen and (max-width: 993px) {
    .pagination-wrapper {
        justify-content: center;
    }
}

.filters-wrapper {
    padding-right: 2rem;
}

.filters-item:not(:last-child) {
    margin-bottom: 2rem;
}

.filters-item-title {
    display: block;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    font-family: var(--font-base);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: .5rem;
    margin-bottom: 1.25rem;
}

.filters-item-content {
    font-size: 14px;
}

.filters-item-content-option {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    cursor: pointer;
}

.filters-item-content-option:not(:last-child) {
    margin-bottom: .5rem;
}

@media only screen and (max-width: 993px) {
    .filters {
        display: none;
    }

    .filters.active {
        display: block;
    }

    .filters-wrapper {
        position: relative;
        padding-right: 0;
        background-color: var(--white);
        padding: 2rem 1.25rem;
        border-radius: var(--radius-small);
    }
}

.checkbox label {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.checkbox label span {
    flex-shrink: 0;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--white);
    margin-right: 0;
    flex-shrink: 0;
    font: inherit;
    color: currentColor;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--gold);
    transform: translateY(3px);
    cursor: pointer;
    display: grid;
    place-content: center;
}

.checkbox input[type="checkbox"]::before,
.checkbox input[type="radio"]::before {
    content: "";
    width: .6rem;
    height: .6rem;
    clip-path: polygon(20% 55%, 8% 70%, 45% 95%, 95% 20%, 82% 10%, 45% 70%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    background-color: var(--gold-dark);
}

.checkbox input[type="checkbox"]:checked::before,
.checkbox input[type="radio"]:checked::before {
    transform: scale(1);
}

.checkbox input[type="checkbox"]:disabled,
.checkbox input[type="radio"]:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.sidebar__item--rangeslider {
    padding-bottom: 70px;
}

.range-slider {
    height: 2px;
    background: var(--gold-dark) !important;
    box-shadow: none;
    border: 0;
    margin-top: 2rem;
}

.range-slider-text {
    margin-top: 1rem;
}

.range-slider .noUi-handle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold-dark) !important;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    margin-left: 10px;
}

.range-slider .noUi-handle::before,
.range-slider .noUi-handle::after {
    content: none;
}

.cat-logo img {
    max-height: 80px;
    object-fit: scale-down;
}

.textimage-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem 0;
}

.textimage-image,
.textimage-text {
    width: 50%;
}

.textimage-wrapper.reversed .textimage-image {
    padding-right: 5rem;
    order: -1;
}

.textimage-wrapper:not(.reversed) .textimage-image {
    padding-left: 5rem;
}

.textimage-image img {
    border-radius: var(--radius-large);
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
}


@media (max-width: 1200px) {
    .textimage-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .textimage-image,
    .textimage-text {
        width: 100%;
    }

    .textimage-text {
        order: -1;
    }

    .textimage-wrapper.reversed .textimage-image,
    .textimage-wrapper .textimage-image {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

.parameters-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 5rem;
    position: relative;
    margin-top: -1rem;
}

.parameters-item {
    position: relative;
    padding: 1rem 0;
}

.parameters-item::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    right: -2.5rem;
    width: 1px;
    background-color: var(--gold-dark);
    opacity: .25;
}

.parameters-item:nth-child(4n)::after,
.parameters-item:last-child::after {
    display: none;
}

.parameters-item-line {
    height: 1px;
    width: 100%;
    background-color: var(--gold-dark);
    opacity: .25;
    grid-column: span 4;
}

@media (max-width: 1200px) {
    .parameters-item {
        padding: 2rem 0;
    }

    .parameters-item::after {
        top: unset;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100%;
    }

    .parameters-item:nth-child(4n)::after {
        display: block;
    }

    .parameters-wrapper>*:last-child::after {
        display: none;
    }

    .parameters-wrapper>*:first-child {
        padding-top: 0;
    }

    .parameters-wrapper>*:last-child {
        padding-bottom: 0;
    }

    .parameters-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .parameters-item-line {
        display: none;
    }
}

.parameters-item-title {
    display: block;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
}

.product-image-main {
    aspect-ratio: 1/1;
    background-color: var(--white);
    border-radius: var(--radius-large);
    position: relative;
}

.product-image-main a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-large);
    padding: 3rem;
}

.product-image-main img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-large-inner);
    aspect-ratio: 1/1;
}

.product-image-main-tags {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-image-main-tags-item {
    max-width: 200px;
    max-height: 75px;
    object-fit: scale-down;
}

.product-image-slider {
    margin-top: 1rem;
}

.product-image-slider-item {
    display: block;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--radius-large);
    padding: 1rem;
}

.product-image-slider-item img {
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-large-inner);
}

.product-parameters {
    margin-top: 3rem;
}

.product-parameters-items-bold {
    color: var(--gray);
    font-weight: 600;
}

a.product-parameters-items-bold {
    text-decoration: none;
}

a.product-parameters-items-bold:hover {
    text-decoration: underline;
}

.product-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 3rem;
}

.product-actions a svg {
    fill: var(--gold-dark);
}

.product-actions a {
    font-size: 13px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.product-actions a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

@media (max-width: 993px) {
    .product-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .product-parameters,
    .product-actions {
        margin-top: 2rem;
    }
}

.addtocart {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.75rem;
}

.addtocart-quantity {
    position: relative;
    width: 110px;
}

.addtocart-quantity-input {
    border: 1px solid var(--border-color);
    background-color: var(--white);
    border-radius: var(--radius-large);
    padding: 0 2rem;
    width: 100%;
    height: 47px;
    text-align: center;
    font-weight: 500;
    color: var(--gray);
    font-size: 16px;
}

.addtocart-quantity-input:focus {
    outline: none;
}

.addtocart-quantity-plus,
.addtocart-quantity-minus {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1.25rem;
    color: var(--black);
    display: flex;
    align-items: center;
}

.addtocart-quantity-plus {
    right: .75rem;
}

.addtocart-quantity-minus {
    left: .75rem;
}

.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-price-old {
    display: block;
    margin-bottom: -1px;
    color: var(--gray);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
    text-decoration: line-through;
}

.product-price-main {
    color: var(--gold-dark);
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    margin-right: .5rem;
}

@media (max-width: 768px) {
    .product-stock {
        width: 100%;
    }
}

.stock {
    border: 1px solid var(--gray);
    color: var(--gray);
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    border-radius: var(--radius-default);
    padding: .25rem 1rem;
    text-align: center;
    text-transform: uppercase;
}

.stock-green {
    color: var(--success);
    border-color: var(--success);
}

.form-small {
    max-width: 500px;
}

.form-default {
    width: 100%;
}

.form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 3rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    cursor: pointer;
}


.form-checkbox.checkbox input {
    transform: translateY(5px);
}

.form-checkbox.checkbox label {
    justify-content: flex-start;
    gap: 0;
}

.form-group:not(:last-child) {
    margin-bottom: 1.25rem;
}

.form-group-input input,
.form-group-input textarea,
.form-group-input select {
    border: 1px solid var(--border-color);
    outline: none;
    border-radius: var(--radius-default);
    background-color: var(--white);
    padding: .75rem 1.5rem;
    font-size: 16px;
    width: 100%;
}

.form-group-input textarea {
    resize: none;
    padding: 1.25rem 1.5rem;
    min-height: 200px;
}

.form-group-input input:focus,
.form-group-input textarea:focus,
.form-group-input select:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--gold-dark);
}

.form-group-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.form-footer,
.cart-cupon {
    margin-top: 2.25rem;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-outside-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 5rem;
}

.form-outside-wrapper>div {
    max-width: 500px;
    width: 100%;
    flex-shrink: 0;
}

.form-default-textarea {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-default-textarea>.form-group-input,
.form-default-textarea textarea {
    height: 100%;
}

.cart-cell-image {
    min-width: 100px;
    width: 100px;
}

.cart-cell-quantity {
    min-width: 175px;
    width: 175px;
}

.cart-cell-price,
.cart-cell-price2 {
    min-width: 200px;
    width: 200px;
}

.cart-cell-title {
    min-width: 250px;
}

.cart-cell-trash {
    min-width: 60px;
    width: 60px;
}

.cart-cell-trash svg {
    stroke: var(--gold-dark);
}

.cart-cell-title a {
    text-decoration: none;
}

.cart-cell-price2 {
    color: var(--black);
}

.cart-cell-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-medium);
}

.cart-nav {
    display: flex;
    gap: 1rem;
}

.cart-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.cart-table-footer {
    margin-top: 2.25rem;
}

.cart-table-price span {
    display: block;
    color: var(--black);
}

.cart-table-price-small {
    display: block;
    margin-bottom: .25rem;
}

.cart-table-price-default {
    font-size: 24px;
    font-weight: 600;
}

.cart-cupon-title {
    display: block;
    margin-bottom: .5rem;
}

.cart-cupon .form-group input {
    padding: .625rem 1.25rem;
}


@media (max-width: 993px) {

    .form-default-textarea {
        margin-top: 1.25rem;
    }

    .form-default-textarea>.form-group-input,
    .form-default-textarea textarea {
        height: auto;
    }

    .cart-table td[data-title]::before {
        content: attr(data-title);
        padding-right: .25rem;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: flex;
        flex-direction: column;
    }

    .cart-table tbody tr {
        display: flex;
        flex-direction: column;
        gap: .25rem;
        padding: 1.5rem;
        position: relative;
    }

    .cart-table tbody tr:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }

    .cart-table tbody td {
        display: flex;
        padding: 0;
        width: 100%;
        min-width: unset !important;
        border-bottom: 0 !important;
    }

    .cart-cell-trash {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 1.5rem !important;
    }

    .cart-cell-trash-inner {
        width: 1.5rem;
    }

    .cart-cell-image {
        margin-bottom: 1rem !important;
    }

    .cart .addtocart-quantity {
        margin: .5rem 0;
    }

    .form-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 576px) {
    .cart-buttons {
        flex-direction: column-reverse;
        gap: .75rem;
    }

    .cart-nav {
        gap: .5rem;
    }
}

.shipping:not(:last-child) {
    margin-bottom: 2.5rem;
}

.shipping-item {
    border-radius: var(--radius-default);
    background-color: var(--white);
    padding: 1rem 1.5rem;
}

.shipping-item:not(:last-child) {
    margin-bottom: .5rem;
}

.shipping-item-info {
    width: 1.5rem;
}

.shipping-item-info.active {
    color: var(--gold-dark);
}

.shipping-item-description {
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid var(--border-color);
    display: none;
}

.shipping-item-description.active {
    display: block;
}

.shipping-item-button {
    display: block;
    color: var(--gold-dark);
}

.shipping-item .price {
    display: inline-block;
}

.shipping-item-selected {
    display: block;
    width: 100%;
}



.popup-window {
    position: fixed;
    padding: 20px;
    padding-right: 40px;
    top: 10%;
    left: 50%;
    width: 95%;
    background: #fff;
    transform: translateX(-50%);
    max-width: 900px;
    display: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-medium);
    z-index: 99999;
}

.popup-window h1,
.popup-window h2,
.popup-window h3,
.popup-window h4,
.popup-window h5 {
    background-color: #fff;
    margin-bottom: 0;
    padding-top: 10px;
    color: var(--black);
}

.popup-window h1:first-child,
.popup-window h2:first-child,
.popup-window h3:first-child,
.popup-window h4:first-child,
.popup-window h5:first-child {
    padding: 5px 40px;
}

.popup-window p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    line-height: 30px;
}

.popup-window strong {
    color: var(--black);
}

.popup-window img {
    width: auto;
    height: auto;
    max-height: 55vh;
    max-width: 100%;
    object-fit: cover;
}

.popup-window .close-btn {
    position: absolute;
    top: 7px;
    right: 7px;
    cursor: pointer;
}


/* PRODUCT POPUP WRAP */
.popup_wrap {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.popup_wrap .popup {
    display: inline-block;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-medium);
    margin: 0 auto;
    text-align: left;
    margin-top: 75px;
}

.popup_wrap h3.popup-title {
    color: var(--black);
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
}

.popup_wrap .table-popup {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.popup_wrap .table-popup-image {
    width: 125px;
}

.popup_wrap .table-popup-price {
    width: 125px;
}

@media (max-width: 576px) {
    .popup_wrap .table-popup-image {
        width: 75px;
    }

    .popup_wrap .table-popup-price {
        width: 100px;
    }
}

.popup_wrap .popup-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-small);
}

.popup_wrap .web-btn {
    margin-top: 0 !important;
}

.popup_wrap .table-popup h3 {
    color: var(--gray);
    font-family: var(--font-base);
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
}

.popup_wrap .table-popup td {
    border: 0;
    vertical-align: middle;
}

.popup_wrap .price {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
}

.popup_wrap button.close {
    position: relative;
    z-index: 9999;
}

.popup_wrap .web-btn {
    display: inline-block;
    background: var(--gold-dark);
    color: #fff !important;
    height: 45px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    padding: 0 20px;
    border: none;
    transition: 0.2s all;
}

.popup_wrap table td {
    vertical-align: middle;
}

.popup_wrap .web-btn.btn-light {
    background: #fff;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark) !important;
    -webkit-appearance: inherit;
    opacity: 1;
    text-shadow: none;
    margin-right: 25px;
}

.popup_wrap .web-btn:hover,
.popup_wrap .web-btn:focus {
    opacity: 0.7;
    text-decoration: none;
}

.popup-button-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background-color: transparent;
    width: 1.25rem;
    height: 1.25rem;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.popup_wrap .table-popup {
    border: 0;
}

.section-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
}

.section-image {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: var(--radius-default);
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: var(--radius-default);
}

@media (max-width: 993px) {

    .section-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .popup_wrap .price {
        display: block;
        min-width: 85px;
    }

    .popup_wrap .web-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .popup_wrap .web-btn.btn-light {
        margin-right: 0;
    }

    .duck,
    .recommended__product--description {
        display: none !important;
    }

    .popup-footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .popup-footer {
        gap: .75rem;
    }

    .table-popup tr {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
        gap: .75rem;
    }

    .table-popup td {
        padding: 0;
    }
}

.variants {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
    background-color: var(--white);
    border-radius: var(--radius-medium);
    border: 1px solid var(--border-color);
    padding: .75rem 1.25rem;
}

.variants-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
}

.variants-title {
    display: block;
    margin-bottom: .5rem;
}

.variants-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.variants-item.active {
    color: var(--gold-dark);
}

.variants-item-name {
    font-weight: 500;
    font-size: 14px;
}

.variants-item-color {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    border-radius: var(--radius-small);
}

@media (max-width: 993px) {
    .variants {
        margin-bottom: 1.75rem;
        margin-top: 1.75rem;
    }
}