body {
    background: var(--main-background);
    color: var(--color-black);
}
.pagination .page-link {
    color: var(--btn-primary-color);
}
header {
    position: relative;
    display: block;
    background: var(--module-background);
    border-bottom: 1px solid #EBEFF2;
}
.header-cart-button-badge {
    position: absolute;
    top: 5px;
    right: -3px;
    background: var(--color-primary);
    border-radius: 15px;
    color: var(--color-white);
    padding: 2px 5px;
    font-size: 0.8rem;
    line-height: 0.8rem;
}
.header-cart-button-badge[data-total="0"] {
    display: none;
}
.header-cart-product {
    display: grid;
    grid-template-columns: auto 12fr;
    gap: 12px;
    background: #fff;
    margin-bottom: 12px;
}
.header-cart-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    height: 100%;
}

.header-cart-buttons,
.header-cart-caption-bottom,
.header-cart-caption-top,
.header-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-cart-caption-bottom-right,
.header-cart-product-title {
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
}
.header-cart-product-quantity {
    color: #848484;
    margin-left: 5px;
    font-weight: 600;
}
.header-cart-total-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.header-cart-total-value {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-primary);
}
.header-cart-buttons {
    margin-top: 16px;
}
.header-cart-product-remove {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444444;
    border-radius: 4px;
}
.header-cart-btn-cart svg {
    height: 22px;
}
.header-cart-btn-cart svg path {
    stroke: var(--color-white);
}
/* START Pop-up cart */
.popup-product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
.close-popup-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}
.popup-product-container {
    position: relative;
    display: block;
    width: 400px;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.popup-product-inside {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.popup-product-header {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid #eeeeee;;
}
.popup-product-header-icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.popup-product-header-icon svg {
    height: 24px;
    color: forestgreen;
}
.popup-product-header-text {
    position: relative;
    display: block;
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    color: #330E00;
}
.popup-product-header-btn {
    position: relative;
    display: block;
    flex: 0 0 auto;
}
.popup-product-header-btn button {
    padding: 0;
    background: none;
    border: none;
}
.popup-product-header-btn button svg {
    height: 24px;
}
.popup-product-buttons {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    padding: 12px 18px;
    gap: 18px;
    flex: 0 0 auto;
    border-bottom: 1px solid #eeeeee;;
}
.popup-product-buttons > * {
    flex: 1 1 auto;
}
.popup-product-buttons .btn {
    position: relative;
    width: 100%;
    padding: 5px 25px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}
.popup-product-products-title {
    position: relative;
    display: block;
    flex: 0 0 auto;
    padding: 10px 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
}
.popup-product-products {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
}
.popup-product-product-wrap {
    position: relative;
    display: block;
    flex: 1 1 48%;
    max-width: 48%;
}
.popup-product-product-wrap .product-box {
    text-align: left;
}
/* END Pop-up cart */

.header-icon-title {
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.row-header-top {
    display: grid;
    grid-template-columns: 12fr auto;
    align-items: center;
}
.row-header-bottom {
    display: grid;
    grid-template-columns: auto 12fr auto;
    align-items: center;
    grid-template-areas: "logoarea searcharea accessarea" "menuarea menuarea menuarea";
    gap: 0 30px;
    padding-top: 10px;
}
.logoarea {
    grid-area: logoarea;
}
.logoarea img {
    max-height: 80px;
}
.searcharea {
    grid-area: searcharea;
}
.accessarea {
    grid-area: accessarea;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 50px;
}
.menuarea {
    grid-area: menuarea;
    margin: 10px 0;
    border-radius: var(--radius);
}
.header-top {
    border-bottom: solid 1px var(--color-general-border);
    position: relative;
    z-index: 9;
}
.header-drop {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.header-drop-down {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 300px;
    max-width: 568px;
    background: var(--color-dropdown);
    z-index: 9;
    line-height: 40px;
    border: solid 1px var(--color-general-border);
    box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.7);
    padding: 20px;
}
.header-drop:not(.js-ed):hover .header-drop-down {
    display: block;
}
.header-drop.js-ed.active .header-drop-down {
    display: block;
}
.header-bottom-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

.btn,
.form-control,
a,
button {
    transition: 0.2s all;
    box-shadow: none;
    text-shadow: none;
    outline: none !important;
}
.form-control {
    border-color: var(--color-general-border);
}
.btn-link,
a {
    text-decoration: none;
    color: var(--color-href);
}
.btn-link:hover,
a:hover {
    color: var(--color-href-hover);
}
.btn.btn-default {
    background: var(--btn-default-background);
    border-color: var(--btn-default-border);
    color: var(--btn-default-color);
}
.btn.btn-default:hover {
    background: var(--btn-default-hover-background);
    border-color: var(--btn-default-hover-border);
    color: var(--btn-default-hover-color);
}
.btn.btn-primary {
    background: var(--btn-primary-background);
    border-color: var(--btn-primary-border);
    color: var(--btn-primary-color);
}
.btn.btn-primary:hover {
    background: var(--btn-primary-hover-background);
    border-color: var(--btn-primary-hover-border);
    color: var(--btn-primary-hover-color);
}
.btn.btn-secondary {
    background: var(--btn-secondary-background);
    border-color: var(--btn-secondary-border);
    color: var(--btn-secondary-color);
}
.btn.btn-secondary:hover {
    background: var(--btn-secondary-hover-background);
    border-color: var(--btn-secondary-hover-border);
    color: var(--btn-secondary-hover-color);
}
.btn.btn-warning {
    background: var(--btn-warning-background);
    border-color: var(--btn-warning-border);
    color: var(--btn-warning-color);
}
.btn.btn-warning:hover {
    background: var(--btn-warning-hover-background);
    border-color: var(--btn-warning-hover-border);
    color: var(--btn-warning-hover-color);
}
.btn.btn-success {
    background: var(--btn-success-background);
    border-color: var(--btn-success-border);
    color: var(--btn-success-color);
}
.btn.btn-success:hover {
    background: var(--btn-success-hover-background);
    border-color: var(--btn-success-hover-border);
    color: var(--btn-success-hover-color);
}
.btn.btn-danger {
    background: var(--btn-danger-background);
    border-color: var(--btn-danger-border);
    color: var(--btn-danger-color);
}
.btn.btn-danger:hover {
    background: var(--btn-danger-hover-background);
    border-color: var(--btn-danger-hover-border);
    color: var(--btn-danger-hover-color);
}
.btn.btn-info {
    background: var(--btn-info-background);
    border-color: var(--btn-info-border);
    color: var(--btn-info-color);
}
.btn.btn-info:hover {
    background: var(--btn-info-hover-background);
    border-color: var(--btn-info-hover-border);
    color: var(--btn-info-hover-color);
}
.pagination .page-item.active .page-link {
    background-color: var(--btn-primary-color);
    border-color: var(--btn-primary-color);
}
.header-icon-button svg {
    height: 30px;
}
.header-icon-button svg path {
    stroke-width: 1.5;
    stroke: var(--color-title);
}
.header-search {
    position: relative;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.notification-wrap {
    position: fixed;

    top: 0px;
    right: 0px;
    bottom: 0px;

    overflow: hidden;

    z-index: 10;
}
.notification {
    position: relative;
    display: block;
    border-radius: 12px;
    background: #ffffff;
    padding: 15px 20px;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    margin-left: 25px;
    margin-top: 15px;
    right: 15px;
    width: 300px;
}
.notification-icon {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}
.notification-icon svg {
    position: relative;
    display: inline-block;
    height: 60px;
}
.notification-title {
    position: relative;
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    color: #330E00;
}
.notification-text {
    position: relative;
    display: block;
    font-size: 16px;
    color: #000000;
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
}
.notification-buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}
.notification-button {
    position: relative;
    display: block;
    flex: 1 1 auto;
    max-width: 47.5%;
    border-radius: 6px;
}
.notification-close {
    position: absolute;
    top: 5px;
    right: 11px;
    padding: 0;
    border: none;
    background: none;
}
.notification-close svg {
    height: 16px;
}
.notification-close svg path {
    stroke-width: 3;
}

.header-cart-products {
    position: relative;
    display: block;
    max-height: 400px;
    overflow-y: scroll;
}

.header-fixed-alert {
    position: relative;
    display: block;
    padding: 12px 0;
    background: #eeeeee;
}
.header-fixed-alert-child {
    position: relative;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 14px;
}

.header-login-form-wrap {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);

    z-index: 1000;

    pointer-events: none;
    opacity: 0;
    transition: 0.5s all;
}
.header-login-form-close {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: none;
    border: none;
}
.header-login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    max-width: 100%;
    transform: translate(-50%, -50%);

    background: #ffffff;
    border-radius: 25px;
    padding: 15px 25px;
    z-index: 2;

    margin-top: 150px;

    transition: 0.5s all;
}

.header-login-form-wrap.active {
    pointer-events: all;
    opacity: 1;
}
.header-login-form-wrap.active .header-login-form {
    margin-top: 0px;
}

.header-form-input {
    position: relative;
    display: block;

    background: none;
    border-radius: 10px;
    border: 1px solid #90A4AD;

    margin-bottom: 10px;
}
.header-form-input .form-control {
    padding: 2px 10px;
    border: none;
    border-radius: 0;
}
.header-form-input .form-control::placeholder {
    color: #F3F6F8;
}
.header-form-input select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
}
.header-form-input .input-error-text {
    position: relative;
    display: block;
    padding: 2px 10px;
}
.header-form-input label {
    position: relative;
    display: block;
    color: #90A4AD;
    font-size: 12px;
    padding: 1px 10px;
}
.header-form-input.input-error label {
    color: #ff0000;
}
.header-form-input.input-error {
    border-color: #ff0000;
}
.header-form-input.input-error .input-error-text {
    position: relative;
    display: block;
    text-align: left;
    font-size: 13px;
    color: #ff0000;
}

.header-form-button {
    position: relative;
    display: block;
    margin-top: 10px;
}

.header-form-button .btn {
    border-radius: 8px;
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
    font-weight: 500;
    padding: 10px 25px;
}
.header-title-wrap {
    position: relative;
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 15px;
}
.header-title-wrap .header-icon-title {
    position: relative;
    display: block;
    flex: 1 1 auto;
}
.header-title-wrap .header-icon-close-right {
    position: relative;
    display: block;
    flex: 0 0 auto;
}

.header-icon-title {
    font-size: 18px;
    margin-bottom: 0;
}
.header-icon-title svg {
    height: 24px;
    vertical-align: -5px;
}

.header-icon-title-close {
    position: relative;
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
}
.header-icon-title-close svg {
    height: 24px;
}

.header-form-input p.input-error {
    margin-bottom: 0;
    font-size: 12px;
    color: #ff0000;
    padding: 2px 10px;
}

.btn-header-account {
    text-align: left;
}

.header-drop-down {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 5px 15px;
}
.header-bottom-title {
    margin-top: 0;
    text-align: left;
    color: var(--color-primary);
    font-family: 'Montserrat', 'Arial', 'Tahoma', sans-serif;
}

.header-cart-product-image img {
    height: 80px;
    border: 1px solid #eeeeee;
}

.header-cart-caption-bottom {
    font-size: 16px;
    line-height: 18px;
}

.header-cart-buttons {
    justify-content: flex-end;
    gap: 24px;
}

.header-icon-button-wishlist {
    position: relative;
}

.header-wishlist-button-badge {
    position: absolute;
    top: -4px;
    right: -3px;
    background: var(--color-primary);
    border-radius: 15px;
    color: var(--color-white);
    padding: 2px 5px;
    font-size: 0.8rem;
    line-height: 0.8rem;
}
.header-wishlist-button-badge[data-total="0"] {
    display: none;
}
