:root {
    --black: #000;
    --black-1: #121214;
    --black-2: #222020;
    --black-3: #32302F;
    --white: #fff;
    --red: #d02828;
    --gray: #9f9f9f;
    --gold-color: #DCAE4B;
    --in-progress: #AF8F34;
    --closed: #61930F;
    --linear-gold: linear-gradient(144.67deg, #B27534 3.59%, #A2642A 19.1%, #CCA256 33.32%, #FBE58F 44.52%, #CB9B3E 57.88%, #E9BF59 70.37%, #F6CF66 78.13%, #DCAE4B 86.31%);
    --linear-gold-border: linear-gradient(-350deg, #B27534 0%, #A2642A 18.75%, #CCA256 35.94%, #FBE58F 49.48%, #CB9B3E 65.63%, #E9BF59 80.73%, #F6CF66 90.1%, #DCAE4B 100%);
}

::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-radius: 10px;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Regular.woff') format('woff'),
    url('../fonts/Gilroy-Regular.woff2') format('woff2'),
    url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Bold.woff') format('woff'),
    url('../fonts/Gilroy-Bold.woff2') format('woff2'),
    url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: url('../fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-SemiBold.woff') format('woff'),
    url('../fonts/Gilroy-SemiBold.woff2') format('woff2'),
    url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.eot');
    src: url('../fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-ExtraBold.woff') format('woff'),
    url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'),
    url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.eot');
    src: url('../fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-Light.woff') format('woff'),
    url('../fonts/Gilroy-Light.woff2') format('woff2'),
    url('../fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

body {
    background: var(--black-1);
    color: var(--white);
    font-family: 'Gilroy', 'sans-serif';
    font-weight: 300;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body a,
body button {
    text-decoration: unset;
    outline: none !important;
}

body input[type="password"] {
    padding-right: 2.5em !important;
    padding-left: 2.5em !important;
}

body .form-group {
    position: relative;
}

body span.toggle-password {
    position: absolute;
    right: 0.8em;
    top: 70%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    font-size: 1.2em;
    color: #fff;
    cursor: pointer;
}


body .content {
    flex: 1;
}

/******************** NAV *************************/

body nav:before {
    content: '';
    position: absolute;
    background: url('../images/navbar-ring.png') no-repeat;
    background-size: cover;
    height: 140px;
    width: 140px;
    top: 0;
    left: 0;
    z-index: 0;
}

body nav .navbar-toggler {
    border: unset;
}

body nav .navbar-toggler:focus {
    box-shadow: unset;
}

body nav .navbar-toggler .navbar-toggler-icon {
    background-image: url("../images/menu.png");
}

body nav.navbar {
    --bs-navbar-padding-y: 60px;
    z-index: 1;
}

body nav.navbar.bg-dark {
    background-color: var(--black-1) !important;
    z-index: 10;
    border-bottom: 1px solid var(--black-3);
}

body nav.navbar .navbar-nav .nav-link {
    color: var(--white);
    font-size: 20px;
    padding: 0 30px;
    text-align: center;
}

body nav.navbar .navbar-nav .nav-link:hover {
    color: var(--gold-color);
}

body nav.navbar .nav-logo {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    top: 28px;
}

body nav .nav-cart {
    position: relative;
}

body nav .nav-cart span {
    position: absolute;
    top: -10px;
    font-size: 11px;
    background: red;
    border-radius: 50%;
    font-weight: bold;
    width: 22px;
    height: 22px;
    line-height: 22px;
    right: 17px;
}

body nav .nav-cart:after {
    content: '';
    background: url('../images/cart.png');
    background-size: cover;
    width: 25px;
    height: 17px;
    display: inline-block;
}

body nav .navbar-left {
    position: absolute;
    margin-right: 820px;
}

body nav .navbar-right {
    position: absolute;
    margin-left: 730px;
}

body nav .dropdown-menu {
    border-radius: 0;
    --bs-dropdown-bg: var(--black-2);
}

body nav .dropdown-menu.wmt {
    margin-top: 45px !important;
}

body nav .dropdown-menu .dropdown-item {
    color: white !important;
}

body nav .dropdown-menu > li:hover,
body nav .dropdown-menu .dropdown-item:hover,
body nav .dropdown-menu .dropdown-item:focus {
    background-color: var(--black-3);
}

/******************** OTHERS *************************/

body .modal .modal-content {
    background-color: var(--black-1);
}

body .corner-dots {
    position: relative;
}

body .corner-dots:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 248px;
    height: 248px;
    background: url('../images/content-dots-left.png');
    background-size: cover;
    z-index: -1;
}

body .corner-dots:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 248px;
    height: 248px;
    background: url('../images/content-dots-right.png');
    background-size: cover;
    z-index: -1;
}

body .custom-form input,
body .custom-form select,
body .custom-form textarea {
    background: var(--black-3);
    border-radius: 30px;
    text-align: left;
    padding: 15px;
    border: unset;
    color: white;
}

body .custom-form input:focus,
body .custom-form select:focus,
body .custom-form textarea:focus {
    background: var(--black-3);
    color: white;
}

body .custom-form button:not(.btn-dark) {
    position: relative;
    z-index: 0;
    padding: 10px 70px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body .custom-form button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body .custom-form .country-picker {
    background: unset !important;
}

body .custom-form .country-picker .dropdown-menu {
    background: black !important;
}

body .custom-form .country-picker .dropdown-menu .dropdown-item {
    color: white;
}

body .custom-form .country-picker button {
    margin-top: 0 !important;
    background: var(--black-3);
    border-radius: 30px;
    text-align: left;
    padding: 15px;
    border: unset;
    color: white;
}

body .custom-form .country-picker button:before {
    content: none !important;
}

body .custom-form button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body .gold-gradient-text {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

/******************** ERROR PAGE *************************/

body section#error-page {
    position: relative;
}

body section#error-page .text-center {
    padding: 150px 0;
}

body section#error-page .text-center h2 {
    margin-bottom: 50px;
}

body section#error-page .text-center a {
    position: relative;
    z-index: 0;
    padding: 18px 50px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#error-page .text-center a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/******************** HOME PAGE *************************/

body section#home {
    position: relative;
}

body section#home .owl-carousel .carousel-image {
    width: 100%;
    aspect-ratio: 16 / 3;
    background-size: cover !important;
    background-position: center !important;
}

body section#home .customSliderWithPrices {
    width: 100%;
    background: var(--black-2);
    text-align: center;
    aspect-ratio: 16 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

body section#home .customSliderWithPrices:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: url(../images/left_slider_img.png);
    width: 35%;
    background-size: cover;
    background-position-x: right;
}

body section#home .customSliderWithPrices:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/right_slider_img.png);
    width: 35%;
    background-size: cover;
    background-position-x: left;
}

body section#home .customSliderWithPrices h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 80px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    margin-bottom: 0;
}

body section#home .customSliderWithPrices span {
    margin-top: 0;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding: 0 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    text-decoration: unset;
}

body section#home .fresh-products {
    padding-top: 94px;
    position: relative;
}

body section#home .fresh-products h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#home .fresh-products .fresh-products-carousel {
    margin-top: 30px;
}

body section#home .fresh-products .fresh-products-carousel a {
    text-decoration: unset;
}

body section#home .fresh-products .fresh-products-carousel .product-container {
    background: var(--black-2);
    border-radius: 33px;
    padding: 7px;
}

body section#home .fresh-products .fresh-products-carousel .product-container .product-image-container {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
}

body section#home .fresh-products .fresh-products-carousel .product-container .product-image-container .product-image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    transition: all .5s;
}

body section#home .fresh-products .fresh-products-carousel .product-container .product-image-container:focus .product-image,
body section#home .fresh-products .fresh-products-carousel .product-container .product-image-container:hover .product-image {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.3s ease-in-out;
}

body section#home .fresh-products .fresh-products-carousel .product-container h4 {
    margin-top: 20px;
    color: var(--white);
    padding: 0 30px;
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
}

body section#home .fresh-products .fresh-products-carousel .product-container h5 {
    margin-top: 0;
    color: var(--gold-color);
    padding: 0 30px;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    font-style: italic;
}

body section#home .fresh-products .fresh-products-carousel .product-container button {
    position: relative;
    z-index: 0;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#home .fresh-products .fresh-products-carousel .product-container button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#home .fresh-products .fresh-products-carousel .product-container button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#home .fresh-products .fresh-products-carousel-nav {
    content: "";
    position: absolute;
    margin-top: 200px;
    width: 60px;
    height: 60px;
    background-size: cover !important;
    cursor: pointer;
}

body section#home .fresh-products .fresh-products-carousel-nav.fpc-nav-left {
    margin-top: 200px;
    margin-left: -150px;
    background: url('../images/carousel-left-arrow.png');
}

body section#home .fresh-products .fresh-products-carousel-nav.fpc-nav-right {
    background: url(../images/carousel-right-arrow.png);
    right: -150px;
}

body section#home .fresh-products a.all-product {
    position: relative;
    z-index: 0;
    padding: 18px 48px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 40px;
    border-radius: 60px;
    display: block;
    border: unset;
    text-transform: uppercase;
}

body section#home .fresh-products a.all-product:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
    text-decoration: unset;
}

body section#home .fresh-products a.all-product::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#home .categories {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(90deg, rgb(17 17 18 / 76%) 0%, rgb(32 32 33 / 76%) 49.83%, rgb(17 17 18 / 76%) 100%);
}

body section#home .categories h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#home .categories .categories-carousel {
    margin-top: 30px;
}

body section#home .categories .categories-carousel a {
    text-decoration: unset;
}

body section#home .categories .categories-carousel .category-container {
    background: var(--black-2);
    border-radius: 33px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body section#home .categories .categories-carousel .category-container .category-image {
    width: 70%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background-size: cover !important;
    background-position: center !important;
    transition: all .5s;
}

body section#home .categories .categories-carousel h4 {
    margin-top: 0;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding: 0 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    text-decoration: unset;
}

body section#home .categories .categories-carousel-nav {
    content: "";
    position: absolute;
    margin-top: 85px;
    width: 60px;
    height: 60px;
    background-size: cover !important;
    cursor: pointer;
}

body section#home .categories .categories-carousel-nav.c-nav-left {
    margin-top: 85px;
    margin-left: -150px;
    background: url('../images/carousel-left-arrow.png');
}

body section#home .categories .categories-carousel-nav.c-nav-right {
    background: url(../images/carousel-right-arrow.png);
    right: -150px;
}

body section#home.pt-95 {
    padding-top: 95px;
}

body section#home .feedback {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

body section#home.pt-95 .feedback {
    margin-top: 0;
    padding-top: 0;
}

body section#home .feedback h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#home .feedback .feedback-carousel {
    margin-top: 30px;
}

body section#home .feedback .feedback-container {
    background: var(--black-2);
    border-radius: 33px;
    padding: 7px;
    text-align: left;
}

body section#home .feedback .feedback-container .feedback-product-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    background-size: cover !important;
    background-position: center !important;
    transition: all .5s;
}

body section#home .feedback .feedback-container h4 {
    margin-top: 20px;
    color: var(--white);
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    padding-right: 30px;
}

body section#home .feedback .feedback-container h5 {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--gold-color);
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    padding-right: 30px;
}

body section#home .feedback .feedback-container p {
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
    font-style: italic;
    margin-top: 19px;
    padding-right: 30px;
}

body section#home .feedback .feedback-container button {
    position: relative;
    z-index: 0;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#home .feedback .feedback-container button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#home .feedback .feedback-container button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#home .feedback .feedback-carousel-nav {
    content: "";
    position: absolute;
    margin-top: 200px;
    width: 60px;
    height: 60px;
    background-size: cover !important;
    cursor: pointer;
}

body section#home .feedback .feedback-carousel-nav.fpc-nav-left {
    margin-top: 200px;
    margin-left: -150px;
    background: url('../images/carousel-left-arrow.png');
}

body section#home .feedback .feedback-carousel-nav.fpc-nav-right {
    background: url(../images/carousel-right-arrow.png);
    right: -150px;
}

body section#home .feedback a.all-feedback {
    position: relative;
    z-index: 0;
    padding: 18px 48px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 40px;
    display: block;
    border: unset;
    text-transform: uppercase;
}

body section#home .feedback a.all-feedback:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
    text-decoration: unset;
}

body section#home .feedback a.all-feedback::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/****************** PRODUCT PAGE **************************/

body section#products .title {
    text-align: center;
    padding-top: 95px;
    margin-bottom: 30px;
}

body section#products .title h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#products .products-filter .form-control-sm {
    border-radius: 20px;
    margin-bottom: 10px;
    background-color: var(--black-2);
    color: white;
    border: 0 solid transparent;
}

body section#products .products-filter .dropdown-menu {
    --bs-dropdown-bg: var(--black-1);
}

body section#products .products-filter .dropdown-menu .dropdown-item {
    color: var(--white);
}

body section#products .products-filter .dropdown-menu .dropdown-item:hover {
    background-color: var(--black-3);
    color: var(--white);
}

body section#products .products-filter .dropdown-menu .dropdown-item:active {
    background-color: var(--black-3);
}

body section#products .products-filter .btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--black-2);
    --bs-btn-border-color: var(--black-2);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--black-3);
    --bs-btn-hover-border-color: var(--black-3);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--black-2);
    --bs-btn-active-border-color: var(--black-2);
    --bs-btn-active-shadow: unset;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--black-3);
    --bs-btn-disabled-border-color: var(--black-3);
    color: #60757d;
}

body section#products .products-filter h2 {
    color: var(--gold-color);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 20px;
}

body section#products .products-filter h2:after {
    content: ' ';
    height: 4px;
    width: 250px;
    display: block;
    background: var(--gold-color);
}

body section#products .products-filter h2:nth-of-type(2) {
    margin-top: 30px;
}

body section#products .product-list {
    text-align: center;
}

body section#products .product-list h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-top: 80px;
    margin-bottom: 70px;
}

body section#products .product-list a {
    text-decoration: unset;
    margin-bottom: 20px;
    display: block;
}

body section#products .product-list .product-container {
    background: var(--black-2);
    border-radius: 33px;
    padding: 7px;
}

body section#products .product-details .favorite-action {
    width: 60px;
    height: 60px;
    background: url("../images/favorite-action.png");
    background-size: cover;
    display: block;
    position: absolute;
    z-index: 9;
    margin-top: 10px;
    margin-left: 10px;
    cursor: pointer;
}

body .social-icons a {
    display: inline-block !important;
    margin-top: 0 !important;
    font-size: 16px !important;
}

body .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-color);
    padding: 12px;
    color: var(--gold-color);
    cursor: pointer;
    display: inline-block;
}

body .sold-out{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    z-index: 2;
}

body .sold-out .sold-out-text{
    position: absolute;
    top: 25px;
    right: 5px;
    display: block;
    transform: rotate(47deg);
    font-weight: bold;
    z-index: 2;
}

body .sold-out:after {
    position: absolute;
    top: -1px;
    right: -1px;
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 0;
    border-color: transparent #DCAE4B transparent transparent;
    transform: rotate(0deg);
    border-top-right-radius: 30px;
    z-index: 1;
}

body section#products .product-details .favorite-action.remove-from-favorite,
body section#products .product-details .favorite-action:hover {
    background-position-x: right !important;
}

body section#products .product-list .product-container .product-image-container {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
}

body section#products .product-list .product-container .product-image-container .product-image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    transition: all .5s;
}

body section#products .product-list .product-container .product-image-container:focus .product-image,
body section#products .product-list .product-container .product-image-container:hover .product-image {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.3s ease-in-out;
}

body section#products .product-list .product-container h4 {
    margin-top: 20px;
    color: var(--white);
    padding: 0 30px;
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
}

body section#products .product-list .product-container h5 {
    margin-top: 0;
    color: var(--gold-color);
    padding: 0 30px;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
    font-style: italic;
}

body section#products .product-list .product-container button {
    position: relative;
    z-index: 0;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#products .product-list .product-container button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#products .product-list .product-container button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#products .show-more-product {
    position: relative;
    z-index: 0;
    padding: 18px 50px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
    margin-bottom: 50px;
}

body section#products .show-more-product::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#products .product-details {
    padding-top: 95px;
}

body section#products .product-details .box {
    background: var(--black-2);
    border-radius: 30px;
    text-align: center;
    padding: 7px;
}

body section#products .product-details .box .product-data {
    padding: 30px;
}

body section#products .product-details .box .product-image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 6;
    border-radius: 30px;
    background-size: cover !important;
    background-position: center !important;
    transition: all .5s;
    position: relative;
}

body section#products .product-details .box .product-image-open-full {
    background: #121214;
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 20px;
    color: white;
    border-radius: 20px;
    border: 2px solid #dcae4b;
}

body section#products .product-details .box h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#products .product-details .box p {
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
    font-style: italic;
    margin-top: 19px;
    padding-right: 30px;
}

body section#products .product-details .box h3 {
    font-family: 'Gilroy', Arial;
    font-size: 20px;
    font-weight: 800;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

body section#products .product-details .box .product-information {
    background: var(--linear-gold);
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 16px;
}

body section#products .product-details .box .product-information p {
    margin: 0;
    padding-right: 0;
    font-style: normal;
    text-shadow: 1px 1px 2px black;
}

body section#products .product-details .box .price {
    font-family: 'Gilroy', Arial;
    font-size: 24px;
    font-weight: 800;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#products .product-details .box button {
    position: relative;
    z-index: 0;
    padding: 18px 100px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#products .product-details .box button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#products .product-details .box button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/********************** CART PAGE *************************/

body section#cart {
    padding-top: 95px;
    padding-bottom: 200px;
}

body section#cart h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-bottom: 50px;
}

body section#cart .box {
    background: var(--black-2);
    margin-bottom: 16px;
    padding: 6px;
    position: relative;
    border-radius: 30px;
    border: 2px solid transparent;
}

body section#cart .box.accept-hover:hover {
    border: 2px solid var(--gold-color);
}

body section#cart .box.transparent-bg {
    background: transparent !important;
}

body section#cart .box img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 30px;
}

body section#cart .box .cart-product-details {
    padding: 20px;
}

body section#cart .box .cart-product-details h2 {
    font-size: 20px;
    font-weight: bold;
}

body section#cart .box .cart-product-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 100;
}

body section#cart .box .cart-product-details h4 {
    font-family: 'Gilroy', Arial;
    font-size: 24px;
    font-weight: 800;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-bottom: 0;
}

body section#cart .box .remove-from-cart {
    content: ' ';
    position: absolute;
    background: url('../images/trash-with-circle.png');
    background-size: cover;
    width: 60px;
    height: 60px;
    display: block;
    top: 50px;
    right: 50px;
    cursor: pointer;
}


body section#cart .box .status {
    background: var(--black-1);
    padding: 15px;
    border-radius: 30px;
    padding-left: 30px;
    position: relative;
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

body section#cart .box .status b.in-progress:before {
    position: absolute;
    left: 12px;
    top: 20px;
    content: ' ';
    width: 12px;
    height: 12px;
    background: var(--in-progress);
    border-radius: 50%;
}

body section#cart .box .status b.closed:before {
    position: absolute;
    left: 12px;
    top: 20px;
    content: ' ';
    width: 12px;
    height: 12px;
    background: var(--closed);
    border-radius: 50%;
}

body section#cart .box.summary h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 20px;
}

body section#cart .box.summary input {
    background: var(--black-3);
    border-radius: 30px;
    text-align: center;
    padding: 15px;
    border: unset;
    color: white;
}

body section#cart .box.summary button {
    position: relative;
    z-index: 0;
    padding: 18px 70px;
    text-align: center;
    width: fit-content;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#cart .box.summary button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#cart .box.summary button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#cart .box.summary table {
    margin: 20px 30px;
    width: calc(100% - 60px);
}

body section#cart .box.summary table tr {
    border-bottom: 1px solid var(--black-3);
}

body section#cart .box.summary table tr:last-of-type {
    border-bottom: unset;
}

body section#cart .box.summary table tr:nth-of-type(3) {
    border-bottom: 1px solid var(--gold-color);
}

body section#cart .box.summary table tr td {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
}

body section#cart .box.summary table tr td:first-of-type {
    text-align: left;
}

body section#cart .box.summary table tr td:last-of-type {
    text-align: right;
}

body section#cart .box.summary table tr td.price {
    font-family: 'Gilroy', Arial;
    font-size: 24px;
    font-weight: 800;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-bottom: 0;
}

body section#cart .box.summary a {
    position: relative;
    display: block;
    z-index: 0;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
    border: unset;
    text-transform: uppercase;
}

body section#cart .box.summary a:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
    text-decoration: unset;
}

body section#cart .box.summary a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#cart .box.summary h1 {
    font-size: 46px;
    margin-bottom: 30px;
}

body section#cart .box .show-button,
body section#cart .box .remove-favorite-button {
    position: relative;
    display: block;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    background: unset;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

body section#cart .box .show-button {
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

body section#cart .box .remove-favorite-button {
    color: var(--red);
    border: 2px solid var(--red);
}

body section#cart .toggle-invoice-checkbox {
    cursor: pointer;
}

/******************** CONTACT PAGE *************************/

body section#contact {
    position: relative;
    padding: 95px 0;
}

body section#contact h1:first-child {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#contact .box {
    background: var(--black-2);
    border-radius: 33px;
    padding: 20px;
}

body section#contact .box h2 {
    color: var(--gold-color);
    margin-bottom: 30px;
}

body section#contact .box input {
    margin-bottom: 20px;
}

body section#contact .stores {
    margin-top: 30px;
}

body .map {
    width: 100%;
    height: 350px;
}


body section#contact .stores .list-item {
    background: var(--black-2);
    border-radius: 33px;
    margin-bottom: 10px;
    padding: 7px;
    text-align: left;
}

body section#contact .stores .list-item .image {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 26px;
    background-size: cover !important;
    background-position: center !important;
}

body section#contact .stores .list-item h3 {
    font-size: 25px;
    padding: 15px;
    margin-bottom: 0;
}

body section#contact .stores .list-item .gold-detail {
    background: var(--linear-gold);
    border-radius: 30px;
    color: white;
    display: flex;
    flex-direction: row;
    height: 60px;
    margin-bottom: 15px;
    width: 100%;
    align-items: center;
}

body section#contact .stores .list-item .gold-detail img.envelope {
    margin: 20px;
    width: 23px;
    height: 15px;
}

body section#contact .stores .list-item .gold-detail img.phone {
    margin: 20px;
    width: 23px;
    height: 22px;
}

body section#contact .stores .list-item .gold-detail h5 {
    padding: 10px;
    margin-bottom: 0;
    border-left: 2px solid black;
    font-size: 17px;
    height: 60px;
    display: flex;
    align-items: center;
}

body section#contact .stores .list-item a {
    position: relative;
    z-index: 0;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 10px;
    border: unset;
    text-transform: uppercase;
    display: block;
}

body section#contact .stores .list-item a:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#contact .stores .list-item a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/********************** FAQ ***************************/

body section#faq {
    position: relative;
    padding-top: 95px;
    padding-bottom: 95px;
}

body section#faq h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
}

body section#faq h3 {
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

body section#faq h3:before {
    content: ' ';
    max-width: 300px;
    width: 80%;
    height: 2px;
    background: white;
    display: block;
    position: relative;
    margin-bottom: 15px;
}

body section#faq #faqResult ul {
    background: #1D1D1D;
    border-radius: 10px;
    margin-top: 15px;
    padding-inline-start: 0;
    padding: 20px;
    text-align: center;
}

body section#faq #faqResult ul li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.43);
    margin-bottom: 20px;
}

body section#faq #faqResult ul li:last-of-type {
    border-bottom: unset;
    margin-bottom: 0;
    padding-bottom: 0;
}

body section#faq #faqResult ul li h4 {
    font-weight: bold;
    font-size: 16px;
}

body section#faq #faqResult ul li p {
    font-size: 14px;
}

body section#faq .accordion .card {
    margin-bottom: 20px;
    border-radius: 10px;
    background: var(--black-3);
}

body section#faq .accordion .card .card-header {
    padding: 5px;
}

body section#faq .accordion .card .card-body {
    text-align: left;
}

body section#faq .accordion .card button {
    border: unset;
    border-radius: unset;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--white);
    font-size: 14px;
    background: transparent;
    display: block;
    text-align: left;
    text-decoration: unset;
    width: 100%;
}

body section#faq .accordion .card button:after {
    content: ' ';
    background: url('../images/arrow-down.png');
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 17px;
    height: 10px;
    position: absolute;
    right: 15px;
    top: 16px;
}

body section#faq .accordion .card button.collapsed:after {
    background: url('../images/arrow-right.png');
    width: 10px;
    height: 17px;
    top: 12px;
}

body section#faq .accordion .card button:focus {
    box-shadow: unset;
}


/******************** PROFILE *************************/

body section#profile {
    position: relative;
    padding: 95px 0;
}

body section#profile h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-bottom: 40px;
}

body section#profile .box {
    background: var(--black-2);
    margin-bottom: 16px;
    padding: 6px;
    position: relative;
    border-radius: 30px;
    padding-bottom: 50px;
    height: calc(100% - 16px);
}

body section#profile .box h2 {
    font-family: 'Gilroy', Arial;
    font-size: 24px;
    font-weight: 800;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

body section#profile .box a {
    position: absolute;
    bottom: 6px;
    z-index: 0;
    display: block;
    padding: 10px 0;
    text-align: center;
    width: calc(100% - 12px);
    font-size: 16px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    border: unset;
    text-transform: uppercase;
}

body section#profile .box a:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#profile .box a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#profile .remove-profile {
    position: relative;
    display: block;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: var(--red);
    font-weight: 500;
    border: 2px solid var(--red);
    background: unset;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/******************** UNAUTHORIZED *************************/

body section#unauthorized {
    position: relative;
    padding: 95px 0;
    text-align: center;
}

body section#unauthorized h1:first-child {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    background-image: var(--linear-gold);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    padding-top: 5px;
    margin-bottom: 40px;
}

body section#unauthorized input {
    background: var(--black-3);
    border-radius: 30px;
    text-align: center;
    padding: 15px;
    border: unset;
    color: white;
    margin-bottom: 20px;
}

body section#unauthorized .login .form-row:nth-of-type(2) input {
    margin-bottom: 5px;
}

body section#unauthorized button {
    position: relative;
    z-index: 0;
    padding: 10px 70px;
    text-align: center;
    width: fit-content;
    font-size: 16px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 10px;
    border: unset;
    text-transform: uppercase;
}

body section#unauthorized button:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

body section#unauthorized button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#unauthorized a.forgot-password {
    color: white;
    text-decoration: unset;
    margin-top: 20px;
    display: block;
}

body section#unauthorized a.forgot-password:hover {
    color: var(--gold-color);
}

body section#unauthorized a.registration {
    color: white;
    text-decoration: unset;
    margin-top: 30px;
    display: block;
}

body section#unauthorized a.registration b {
    text-decoration: underline;
}

body section#unauthorized a.registration:hover b {
    color: var(--gold-color);
}

body section#unauthorized .social-login:first-of-type {
    margin-top: 30px;
}

body section#unauthorized .social-login {
    position: relative;
    z-index: 0;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 15px;
    border: unset;
    text-transform: uppercase;
}

body section#unauthorized .social-login::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

body section#unauthorized .registration-links {
    margin-top: 30px;
    margin-bottom: 20px;
}

body section#unauthorized .registration-links a {
    color: var(--gold-color);
}

body .modal .modal-content section#unauthorized,
body .modal .modal-content section#profile {
    padding: 20px 0 !important;
}

/******************** FOOTER *************************/

footer {
    background: var(--black-2);
    text-align: center;
    padding: 60px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    background: url('../images/footer-ring-left.png') no-repeat;
    background-size: cover;
    height: 184px;
    width: 184px;
    top: 0;
    left: 0;
    z-index: 0;
}

footer:after {
    content: '';
    position: absolute;
    background: url('../images/footer-ring-right.png') no-repeat;
    background-size: cover;
    height: 252px;
    width: 252px;
    bottom: 0;
    right: 0;
    z-index: 0;
}

footer .footer-nav {
    margin-top: 97px;
    z-index: 1;
    position: relative;
}

footer .footer-nav label {
    font-weight: 700;
    font-size: 20px;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

footer .footer-nav a,
footer .footer-nav p {
    font-size: 20px;
    display: block;
    color: white;
    margin-top: 10px;
    text-decoration: none;
}

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

footer .footer-nav p {
    line-height: 24px;
    margin-bottom: 30px;
}

footer .footer-nav a.store-link {
    position: relative;
    z-index: 0;
    padding: 18px 0;
    text-align: center;
    max-width: 266px;
    width: 100%;
    background: var(--linear-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-top: 16px;
}

footer .footer-nav a.store-link:hover {
    background: var(--linear-gold);
    color: white !important;
    -webkit-text-fill-color: white;
    border-radius: 60px;
}

footer .footer-nav a.store-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 3px solid transparent;
    background: var(--linear-gold-border);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/******************** MEDIA QUERIES *************************/

@media only screen and (max-width: 1620px) {
    body section#home .categories .categories-carousel-nav.c-nav-left,
    body section#home .categories .categories-carousel-nav.c-nav-right,
    body section#home .fresh-products .fresh-products-carousel-nav.fpc-nav-left,
    body section#home .fresh-products .fresh-products-carousel-nav.fpc-nav-right,
    body section#home .feedback .feedback-carousel-nav.fpc-nav-left,
    body section#home .feedback .feedback-carousel-nav.fpc-nav-right {
        display: none;
    }
}

@media only screen and (max-width: 1399px) {
    footer {
        padding: 30px;
    }

    body nav.navbar .navbar-nav .nav-item:not(.centered-logo) {
        width: auto;
    }
}

@media only screen and (max-width: 1240px) {
    body nav.navbar .navbar-nav .nav-item .nav-link {
        padding: 0 20px;
    }

    body nav .navbar-left {
        margin-right: 650px;
    }

    body nav .navbar-right {
        margin-left: 575px;
    }
}

@media only screen and (max-width: 1328px) {
    body section#home .customSliderWithPrices {
        padding: 20px 0;
    }

    body section#home .customSliderWithPrices:before {
        display: none;
    }

    body section#home .customSliderWithPrices:after {
        display: none;
    }
}

@media only screen and (max-width: 1030px) {
    body nav.navbar .navbar-nav .nav-item .nav-link {
        padding: 0 10px;
    }

    body nav .navbar-left {
        margin-right: 610px;
    }

    body nav .navbar-right {
        margin-left: 525px;
    }
}

@media only screen and (max-width: 991px) {
    body {
        padding-top: 97px;
    }

    body nav:before {
        background: unset;
    }

    body nav.navbar {
        --bs-navbar-padding-y: 28px;
    }

    body nav.navbar .nav-logo {
        top: 17px;
    }

    body nav.navbar .nav-link {
        margin-top: 30px;
    }

    body nav .navbar-left {
        position: relative;
        margin-right: 0;
    }

    body nav .navbar-right {
        position: relative;
        margin-left: 0;
    }

    body nav.navbar .navbar-toggler {
        z-index: 2;
    }

    body section#home .owl-carousel .carousel-image {
        aspect-ratio: 16 / 5;
    }

    body section#cart .box .remove-from-cart {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 20px;
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    footer {
        padding: 30px;
    }

    body .corner-dots:before {
        content: unset;
        background: unset;
    }

    body .corner-dots:after {
        content: unset;
        background: unset;
    }

    body section#contact,
    body section#cart,
    body section#profile,
    body section#unauthorized,
    body section .title {
        padding-top: 30px !important;
    }
}

@media only screen and (max-width: 500px) {
    footer:before,
    footer:after {
        background: none;
    }
}
