/* === general ===*/
/* div {
    border: red solid 1px;
} */

:root {
    --theme-bg: #9aa6a3;
}

html {
    scroll-padding-top: 75px;
}

body {
    padding-top: 75px;

    font-family: 'Playfair Display', serif;
    min-height: 100vh !important;
    max-width: 100vw;
}

p, a {
    color: #000000;
}

a:hover {
    color: inherit;
}

/*::::::::::::::::::::::::::: inputs :::::::::::::::::::::::::::*/
input, textarea, select {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    border-bottom: 2px solid #000000 !important;
}

.button-square-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000;
}

.button-square-black:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/*::::::::::::::::::::::::::: general :::::::::::::::::::::::::::*/
.nuru-theme-bg {
    background-color: #dddddd;
}

.badge-theme {
    background-color: #ffffff;
    color: #000000;
}

.image-max-height {
    height: 100% !important;
    width: auto !important;
}

.image-max-width {
    height: auto !important;
    width: 100% !important;
}

.container-height {
    height: 100% !important;
}

.max-height-90 {
    max-height: 90vh !important;
}

.watermarked {
    opacity: 0.3;
}

.watermarked:hover {
    opacity: 0.5;
}

/*::::::::::::::::::::::::::: icons :::::::::::::::::::::::::::*/
.icon-white {
    color: #ffffff;
}

.star-gold {
    color: #ffc60a;
}

.star-theme {
    color: var(--theme-bg);
}

/*::::::::::::::::::::::::::: menu :::::::::::::::::::::::::::*/
.nav-theme {
    background-color: var(--theme-bg);
}

.nav-link {
    color: #ffffff !important;
}

.nav-item {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    left: 50%;
    bottom: 0;
    background-color: white;
    transition: all ease-in-out .2s;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.cart-button-wrapper {
    border-radius: 50%;
    background-color: inherit;
    color: #ffffff;
}

.cart-button-wrapper:hover {
    background-color: #ffffff;
    color: var(--theme-bg);
}

.icon-cart {
    color: inherit;
}

/*::::::::::::::::::::::::::: scroll :::::::::::::::::::::::::::*/
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: inherit;
}

::-webkit-scrollbar-thumb {
    background: #b3c3bf;
}

::-webkit-scrollbar-thumb:hover {
    background: #b3c3bf;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}