:root {
    --culoare-main: #6b5d3f; /* Definirea culorii */
    --culoare-text-inchis: #101828;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", serif;
}

body.gray-bg {
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5 {
    color: #090908;
    font-size: 48px;
    font-weight: 600;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 30px;
}
h5 {
    font-size: 24px;
}

.category-title h1,
.main-product-details h1 {
    font-size: 24px;
}

p {
    font-size: 18px;
    color: #475467;
}
p.fs-20 {
    font-size: 20px;
}
p.fs-16 {
    font-size: 16px;
}
p.fs-14 {
    font-size: 14px;
}

img {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

a,
a:hover,
a:visited {
    text-decoration: none;
    color: inherit;
}

header {
    background: #fcfcfd;
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
}

header .dropdown-menu {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    border: 1px sold #eaecf0;
    overflow: hidden;
}

header .dropdown-menu .dropdown-header {
    font-weight: bold;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

header .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
}

header .dropdown-item i {
    margin-right: 10px;
    color: #6c757d;
}

header .dropdown-divider {
    margin: 0;
}

header .dropdown-toggle::after {
    display: none;
}

.dropdown-megamenu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50px;
    background-color: #f9fafb;
    box-shadow: 0px 12px 16px #10182820;
    padding: 25px 0;
    z-index: 10;
    display: none;
}

.dropdown-megamenu .styled-links > a,
.dropdown-megamenu .styled-links > a:visited,
.dropdown-megamenu .styled-links > a:hover {
    font-size: 14px;
    display: block;
    margin: 3px 0;
    text-decoration: none;
    color: #101828;
    position: relative;
    transition:.3s all;
}

.dropdown-megamenu .styled-links > a.fw-bold,
.dropdown-megamenu .styled-links > a.fw-bold:visited,
.dropdown-megamenu .styled-links > a.fw-bold:hover {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 4px 0;
}

.dropdown-megamenu .styled-links > a:after {
	content:'';
	border-bottom:2px solid #101828;
	position: absolute;
	bottom:-3px;
	left:0;
	width:0;
	transition:.3s all;
}

.dropdown-megamenu .styled-links > a:hover {
	opacity: 0.65;
}	

.dropdown-megamenu .styled-links > a:hover:after {
	width:50%;
}

.menu-article-snippet-image {
    position: relative;
    padding-top: 56%;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.menu-article-snippet-image img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.menu-article-snippet-info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.menu-article-snippet-extra-info {
    font-size: 14px;
    color: #475467;
}

.menu-article-snippet-extra-info > span {
    font-weight: 600;
}

/* Stil pentru icon button */
.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    cursor: pointer;
}

.menu {
    background-color: var(--culoare-main);
    display: flex;
    align-items: center;
    height: 50px;
    position: relative;
}

.logo img {
    margin-right: 50px;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Inter", serif;
    font-size: 12px;
    color: #777;
    display: flex;
    gap: 5px;
}

.breadcrumbs li {
    display: inline;
}

.breadcrumbs li:not(:last-child)::after {
    content: " / ";
    color: #bbb;
}

.breadcrumbs li a {
    text-decoration: none;
    color: #7f7f7f;
    display: inline;
}

.breadcrumbs li a:hover {
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: #251300; /* O nuanță mai închisă, ca în imagine */
}

.header-search {
    font-size: 14px;
    color: #000;
    border-radius: 12px;
    border: 1px solid #d0d5dd;
    padding: 10px 10px 10px 40px;
    width: 100%;
    outline-color: black;
    background: url("../images/icons/mingcute--search-3-line.svg") no-repeat
        10px center;
    background-size: 20px; /* Ajustează dimensiunea lupii */
}

.header-search:focus {
    outline: none;
    border: 1px solid black;
}

.menu .header-search {
    background-color: #fff;
    padding: 8px 10px 7px 30px;
    width: 0px;
    transition: 0.3s all;
}

.menu .header-search.open {
    width: 100%;
    padding: 8px 10px 7px 40px;
}

.product-filter {
    border-radius: 8px;
    background-color: #fff;
    padding: 20px;
}

.product-filter-title {
    color: #101828;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.product-filter-title:after {
    content: "\f106";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}

.product-filter-content,
.custom-checkbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-filter-content label,
.custom-checkbox label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #475467;
}

.product-filter-content input[type="checkbox"],
.custom-checkbox input[type="checkbox"] {
    display: none; /* Ascundem checkbox-ul standard */
}

.product-filter-content label::before,
.custom-checkbox label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #bfc5cd;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    background-color: white;
}

.custom-radio {
    display: flex;
    align-items: center;
}

.custom-radio label {
    margin-bottom: 0 !important;
    cursor: pointer;
}

.product-filter-content input[type="checkbox"]:checked + label::before,
.custom-checkbox input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    color: white;
    background-color: #635336; /* Culoarea bifei */
    border: none;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #777;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    outline: none;
    margin-right: 8px;
}

input[type="radio"]:checked {
    border-color: #5a4a2f;
    background-color: #5a4a2f;
}

input[type="radio"]:checked::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-filter.closed .product-filter-content {
    display: none;
}

.product-filter.closed .product-filter-title {
    margin-bottom: 0;
}

.product-filter.closed .product-filter-title:after {
    content: "\f107";
}

.price-range input[type="text"],
.price-range input[type="number"] {
    font-size: 14px;
    width: 43%;
    color: #000;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    padding: 10px;
    outline-color: black;
}

.price-range input[type="text"]:focus,
.price-range input[type="number"]:focus {
    outline: none;
    border: 1px solid black;
}

.price-range span {
    margin: 0 7px;
}

.star-rating-container {
    position: relative;
    display: inline-block;
    width: 112px;
    height: 22px;
    background-size: contain;
    background-repeat: repeat-x;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F2F4F7' d='m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z'/%3E%3C/svg%3E");
}

.star-rating-container .star-rating {
    content: "";
    height: 22px;
    position: absolute;
    background-size: contain;
    background-repeat: repeat-x;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FDB022' d='m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z'/%3E%3C/svg%3E");
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    font-family: "Inter", serif;
    position: relative;
    font-weight: 600;
}

.pagination-container .pagination {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.pagination-container .page-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    color: #404a58;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.pagination-container .page-item.active {
    border: 1px solid #d0d5dd;
    background: white;
    font-weight: 600;
}

.pagination-container .page-item:hover {
    background: #f2f4f7;
}

.pagination-container .dots {
    font-size: 16px;
    color: #a0a7b2;
}

.pagination-container .pagination-button {
    border: 1px solid #d0d5dd;
    background: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    color: #404a58;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

.pagination-container .pagination-button:hover {
    background: #f2f4f7;
}

.pagination-container .pagination-button span {
    display: inline-block;
    margin: 0 5px;
}

input.newsletter {
    font-size: 14px;
    color: #000;
    border-radius: 12px;
    border: 1px solid #d0d5dd;
    padding: 10px;
    outline-color: black;
}

input.newsletter:focus {
    outline: none;
    border: 1px solid black;
}

.container {
    max-width: 1200px;
}

.container-slim {
    max-width: 760px;
}

.container-dreapta {
    margin-left: max(15px, calc(50vw - 600px));
    min-height: 100px;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

.container-stanga {
    margin-right: max(15px, calc(50vw - 600px));
    min-height: 100px;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

.expand-right {
    padding-top: 100%;
    width: calc(50vw - 15px);
    margin-left: -5px;
    position: relative;
}

.expand-left {
    padding-top: 100%;
    width: 50vw;
    margin-left: min(-15px, calc(-50vw + 595px));
    position: relative;
}

.expand-left > img,
.expand-right > img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.page-404 .expand-right {
    padding-top: 0;
    height: 85vh;
}

.center-heading {
    background-color: #f9fafb;
    padding-top: 80px;
    padding-bottom: 80px;
}

.center-heading .pre-title {
    font-weight: 600;
    color: #475467;
    font-size: 16px;
}

.center-heading p {
    color: #475467;
}

.green-checks {
    list-style: none;
    padding: 0;
}

.green-checks li {
    display: flex;
    align-items: center;
    gap: 10px; /* Spațiere între iconiță și text */
    margin-bottom: 15px;
    font-size: 18px;
    color: #475467;
}

.green-checks li::before {
    content: "";
    background: url("../images/icons/checkicon.svg") no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.round-icon {
    background-color: #f2f4f7;
    border-radius: 100%;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    color: #667085;
    margin-bottom: 20px;
}

.round-icon > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.square-icon {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #eaecf0;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    color: #667085;
    margin-bottom: 10px;
}

.square-icon > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-title {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.filter-title > span {
    font-weight: bold;
}

.main-product-details .dimensions .filter-option {
    display: inline-block;
    padding: 10px 17px;
    margin-right: 10px;
    border-radius: 24px;
    font-size: 18px;
    border: 1px solid #d0d5dd;
    cursor: pointer;
    margin-bottom: 10px;
}

.main-product-details .dimensions .filter-option:hover {
    background-color: #f9fafb;
}

.main-product-details .dimensions .filter-option.no-stock {
    border: 1px dashed #d0d5dd;
}

.main-product-details .dimensions .filter-option.no-stock:hover {
    border: 1px dashed #d0d5dd;
    background-color: transparent;
}

.main-product-details .dimensions .filter-option.active {
    color: #fff;
    background-color: #0c111d;
}

.main-product-details .colors .filter-option {
    display: inline-block;
    padding: 10px 17px;
    margin-right: 10px;
    border-radius: 16px;
    font-size: 18px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
}

.main-product-details .colors .filter-option img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.main-product-details .colors .filter-option.no-stock img {
    opacity: 0.7;
}

.main-product-details .colors .filter-option.active {
    border: 2px solid #6b5d3f;
}

.main-product-details .faq-question p {
    font-size: 18px;
    font-weight: normal;
    color: #101828;
    margin-bottom: 0;
}

.main-product-details .faq-answer p {
    font-size: 14px;
}

.main-product-favorite {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 25px;
    cursor: pointer;
}

.main-product-favorite:after {
    content: "";
    height: 24px;
    width: 24px;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    background-image: url("../images/icons/heart-product.svg");
    background-position: center;
}

.main-product-favorite.active:after, .main-product-favorite:hover:after {
    background-image: url("../images/icons/heart-selected.svg");
}

/* buttons */
.buton-standard,
.buton-standard:hover,
.buton-standard:visited {
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 14px;
    color: #101828;
    display: inline-block;
    margin: 0 5px;
    font-weight: 600;
    text-decoration: none;
    background-color: #eaecf0;
    transition:.5s all;
    border:1px solid transparent;
}
.buton-standard:hover {
	background-color: #d8dbe2;
    box-shadow: 0 2px 4px #33333380;
    border:1px solid #33333330;
} 

.buton-standard.inactive {
    cursor: not-allowed;
    background-color: #f2f4f7 !important;
    color: #98a2b3 !important;
}

.solo-char {
    width: 50px !important;
    height: 50px !important;
    display: inline-block;
    margin-right: 5px;
    color: black !important;
    text-align: center;
    font-size: 40px !important;
    font-weight: bold;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
}

.toggle-password:focus {
    outline: none;
}

.filter-group {
    display: inline-block;
}

.dropdown-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 250px;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.dropdown-options {
    max-height: 150px;
    overflow-y: scroll;
    padding: 10px;
}

.blog-category-buton,
.blog-category-buton:hover,
.blog-category-buton:visited {
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    font-size: 14px;
    color: #344054;
    text-decoration: none;
    margin-right: 5px;
}

.share-button,
.share-button:hover,
.share-button:visited {
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 14px;
    color: #101828;
    display: inline-block;
    margin: 0 5px;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #d0d5dd;
}

.buton-round-transparent,
.buton-round-transparent:visited,
.buton-round-transparent:hover {
    border-radius: 24px;
    border: 1px solid #d0d5dd;
    padding: 9px 20px;
    font-size: 18px;
    color: #344054;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.buton-round-transparent:hover {
    color: #fff;
    background-color: #000;
}

.buton-standard.transparent {
    background-color: transparent;
}

.buton-standard.white {
    background-color: white;
    box-shadow: 0 2px 2px #00000030;
}

.buton-standard.favorite {
    font-size: 20px;
}

.buton-standard.favorite:hover {
    text-decoration: none;
}

.main-color-bg {
    background-color: var(--culoare-main) !important;
    color: #fff !important;
}

.transparent-bg {
    background: transparent;
}

.buton-menu,
.buton-menu:hover,
.buton-menu:visited {
    border-radius: 12px;
    padding: 8px 35px 8px 15px;
    background: url("../images/icons/expand_more.svg") no-repeat right 5px
        center;
    background-size: 24px;
    font-size: 14px;
    color: #101828;
    background-color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
    transition:.3s all;
}

.buton-menu:hover {
	box-shadow: 0 0 3px #ffffff99;
	/*background-color:#ffffff99;*/
}

.buton-menu.open,
.buton-menu.open:hover,
.buton-menu.open:visited {
    background: url("../images/icons/expand_less.svg") no-repeat right 5px
        center;
    background-color: #fff;
    background-size: 24px;
}

.link-menu,
.link-menu:visited,
.link-menu:hover {
    color: #f9fafb;
    text-decoration: none;
    font-size: 14px;
    margin: 0 7px;
    position: relative;
}
.link-menu:after {
	content:'';
	width:0;
	border-bottom:2px solid #f9fafb;
	position: absolute;
	left:0;
	bottom:-3px;
	transition:.3s all;
}
.link-menu:hover:after {
    width:100%
}

.homepage-slider {
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.homepage-slider.unsticked {
    border-radius: 24px;
}

.homepage-slider .swiper-pagination {
    display: inline;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    height: 16px;
    background-color: #25130010;
    padding: 0 5px;
    bottom: 25px;
}

.homepage-slider .swiper-pagination-bullet {
    position: relative;
    top: -6px;
    background-color: #fff;
}

.homepage-slider .swiper-pagination-bullet-active {
    background-color: #393938;
}

.homepage-slide {
    height: 400px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.homepage-slide > span {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    padding-left: 5%;
    line-height: 60px;
}

.homepage-slide > img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.full-height-round-corners-image {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.full-height-round-corners-image > img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.hp-category-img {
    border-radius: 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-category span {
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 15px;
    color: #251300;
    font-size: 16px;
    font-weight: 600;
}

.fullwidth-banner {
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    padding: max(20px, 5%);
    position: relative;
}

.fullwidth-banner img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
}

.fullwidth-banner-content {
    position: relative;
    z-index: 2;
}

.fullwidth-banner:after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    position: absolute;
    z-index: 1;
}

.fullwidth-monochrome-light {
    background-color: #f9fafb;
    padding: 40px 0;
}

.fullwidth-monochrome-white {
    background-color: #fff;
    padding: 40px 0;
}

.main-swiper .swiper-slide {
    padding-top: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.product-gallery {
    position: sticky;
    top: 20px;
}

.thumbnail-container .swiper-slide {
    padding-top: 20%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.main-swiper .swiper-slide img,
.thumbnail-container .swiper-slide img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.swiper-thumbnail img {
    cursor: pointer;
    border: 2px solid transparent;
}

.swiper-thumbnail .swiper-slide-thumb-active img {
    border-color: #000;
}

.thumbnail-container {
    margin-top: 20px;
}

.main-product-details {
    border-radius: 16px;
    background-color: #fff;
    padding: 15px;
}

.main-product-details .reviews {
    font-size: 14px;
    color: #475467;
    display: flex;
    justify-content: space-between;
}

/* product listing */
.product-container {
    position: relative;
    font-size: 14px;
    color: #344054;
}

.product-container .product-label {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    border-radius: 6px;
    padding: 2px 8px;
    background-color: #fff;
    border: 1px solid #d0d5dd;
}

.product-container .product-favorite {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.product-container .product-favorite:after {
    content: "";
    height: 24px;
    width: 24px;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    background-image: url("../images/icons/heart-product.svg");
    background-position: center;
}	

.product-container .product-favorite.active:after,.product-container .product-favorite:hover:after {
    background-image: url("../images/icons/heart-selected.svg");
}

.product-container-image {
    width: 100%;
    padding-top: 100%;
    background-color: #ececec;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-container-image > img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.product-container h6 {
    font-size: 14px;
    margin-top: 15px;
}

.product-container .product-container-brand {
    color: #7f7f7f;
    font-size: 12px;
    margin-top: 10px;
}

.product-container .product-container-price {
    font-size: 12px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #251300;
}

.product-container .product-container-price > span {
    display: inline-block;
    text-decoration: line-through;
    font-weight: normal;
    margin-left: 10px;
}

.product-container-list {
    background-color: #fff;
    border-radius: 24px;
    padding: 24px;
    font-size: 14px;
    cursor: pointer;
}

.product-container-list .short-desc p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
}

.product-container-list .product-container-price {
    font-size: 12px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #251300;
}

.product-container-list .product-container-price > span {
    display: block;
    text-decoration: line-through;
    font-weight: normal;
}

.product-container-list .product-label {
    z-index: 1;
    border-radius: 6px;
    padding: 2px 8px;
    background-color: #fff;
    border: 1px solid #d0d5dd;
    margin-bottom: 15px;
    display: inline-block;
}

.product-container-list h6 {
    font-size: 14px;
    margin-top: 15px;
}

.product-container-list .product-container-brand {
    color: #7f7f7f;
    font-size: 12px;
    margin-top: 10px;
}

.product-container-list .product-favorite {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.product-container-list .product-favorite:after {
    content: "";
    height: 24px;
    width: 24px;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    background-image: url("../images/icons/heart-product.svg");
    background-position: center;
}

.product-container-list .product-favorite.active:after, .product-container-list .product-favorite:hover:after {
    background-image: url("../images/icons/heart-selected.svg");
}

.fullwidth-monochrome {
    background-color: var(--culoare-main);
}

.pre-title {
    font-size: 12px;
    color: #d0d5dd;
}

.pre-title-special {
    font-size: 16px;
    color: #475467;
    font-weight: 600;
}

.responsive-image-16-9 {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 37%;
}

.responsive-image-16-9 > img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.privacy-switcher {
    border: 1px solid #f9fafb;
    background-color: #eaecf0;
    padding: 7px 3px;
    border-radius: 13px;
    margin: 0 auto;
    display: inline-block;
    margin-top: 40px;
}

#nav-icon3 {
    width: 50px;
    height: 45px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    position: absolute;
    /*top:25px;*/
    left: 0px;
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 8px;
    width: 100%;
    background: #1e2d7c;
    border-radius: 7px;
    border: 0px solid white;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
    top: 0px;
    -webkit-box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 14px;
}

#nav-icon3 span:nth-child(3) {
    -webkit-box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
}

#nav-icon3 span:nth-child(4) {
    top: 28px;
    -webkit-box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 0px 1px rgba(0, 0, 0, 0.2);
}

#nav-icon3.open span {
    background: #1e2d7c;
    box-shadow: none;
}

#nav-icon3.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border: none;
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border: none;
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
    border: none;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 32px;
}

.faq-question:after {
    content: "";
    position: absolute;
    height: 26px;
    top: 0;
    right: 0px;
    width: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%2398A2B3' d='M16 3C8.832 3 3 8.832 3 16s5.832 13 13 13s13-5.832 13-13S23.168 3 16 3m0 2c6.087 0 11 4.913 11 11s-4.913 11-11 11S5 22.087 5 16S9.913 5 16 5m-1 5v5h-5v2h5v5h2v-5h5v-2h-5v-5z'/%3E%3C/svg%3E");
}

.faq-answer {
    margin-top: 5px;
    color: #555;
    display: none;
}

.faq-item.open .faq-question:after {
    height: 22px;
    width: 22px;
    right: 2px;
    top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%2398A2B3' d='M512 0c283 0 512 229 512 512s-229 512-512 512S0 795 0 512S229 0 512 0m0 961c247 0 448-202 448-449S759 64 512 64S64 265 64 512s201 449 448 449m-35-417H288c-18 0-32-14-32-32s14-32 32-32h448c18 0 32 14 32 32s-14 32-32 32z'/%3E%3C/svg%3E");
}

.faq-item:last-of-type {
    border-bottom: none;
}

footer {
    padding: 50px 0 40px 0;
    background-color: #fff;
}

.copyright {
    background-color: #fff;
}

.copyright .container {
    border-top: 1px solid #eaecf0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.copyright p,
footer p {
    font-size: 16px;
    color: #667085;
}

.copyright a,
.copyright a:hover,
.copyright a:visited {
    display: inline-block;
    margin: 0 8px;
    color: #98a2b3;
    font-size: 22px;
    text-decoration: none;
    transition:.3s all;
}

.copyright a:hover {
	filter:brightness(0);
}

.footer-links span {
    font-size: 14px;
    font-weight: 600;
    color: #667085;
    display: block;
    margin-bottom: 15px;
}

.footer-links a,
.footer-links a:visited,
.footer-links a:hover {
    color: #475467;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    position: relative;
    transition:.3s all;
}

.footer-links a:hover {
	color:#000;
	text-decoration: underline;
}	

.category-title-container {
    border-radius: 16px;
    background-color: #fff;
    padding: 24px;
}

.category-sort-menu {
    font-size: 14px;
    color: #090908;
    display: flex;
    justify-content: space-between;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #d0d5dd;
    display: block;
}

.category-sort-menu select {
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #d0d5dd;
    padding: 12px 12px 12px 12px;
    font-family: "Inter", serif;
}

.view-type-selector {
    border-radius: 8px;
    border: 1px solid #eaecf0;
    overflow: hidden;
    display: flex;
}

.view-type-selector .list,
.view-type-selector .grid {
    position: relative;
    width: 38px;
    height: 38px;
    display: block;
    transition:.3s all;
}

.view-type-selector .list.selected,
.view-type-selector .grid.selected,
.view-type-selector .list:hover,
.view-type-selector .grid:hover {
    background-color: #eaecf0;
}

.view-type-selector .list:after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 9px;
    left: 9px;
    height: 21px;
    width: 21px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23667085' d='M208 136H48a16 16 0 0 0-16 16v40a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-40a16 16 0 0 0-16-16m0 56H48v-40h160zm0-144H48a16 16 0 0 0-16 16v40a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16m0 56H48V64h160z'/%3E%3C/svg%3E");
}

.view-type-selector .grid:after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 9px;
    left: 9px;
    height: 21px;
    width: 21px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23667085' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Crect width='6.5' height='6.5' x='3.75' y='13.75' rx='2'/%3E%3Crect width='6.5' height='6.5' x='13.75' y='13.75' rx='2'/%3E%3Crect width='6.5' height='6.5' x='3.75' y='3.75' rx='2'/%3E%3Crect width='6.5' height='6.5' x='13.75' y='3.75' rx='2'/%3E%3C/g%3E%3C/svg%3E");
}

.category-filter-menu > span {
    margin-right: 5px;
}

.filter-promotion,
.filter-select {
    display: inline-block;
    border-radius: 24px;
    border: 1px solid #d0d5dd;
    padding: 10px 16px 10px 20px;
    cursor: pointer;
    transition:.3s all;
}

.filter-select > span {
    border-radius: 100%;
    position: relative;
    top: -2px;
    background-color: #6b5d3f;
    color: #fff;
    margin-left: 4px;
    font-size: 12px;
    display: inline-block;
    height: 20px;
    width: 20px;
    text-align: center;
}

.filter-promotion.selected,
.filter-promotion:hover {
    background-color: #eaecf0;
}

.filter-promotion:after {
    content: "";
    margin-left: 7px;
    display: inline-block;
    background-size: contain;
    position: relative;
    top: 4px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23667085' d='m21.41 11.58l-9-9A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.42l9 9A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M13 20l-9-9V4h7l9 9M6.5 5A1.5 1.5 0 1 1 5 6.5A1.5 1.5 0 0 1 6.5 5'/%3E%3C/svg%3E");
}

.filter-select:after {
    content: "";
    margin-left: 7px;
    display: inline-block;
    background-size: contain;
    position: relative;
    top: 4px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23667085' d='m213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80a8 8 0 0 1 11.32-11.32L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32'/%3E%3C/svg%3E");
}

.page-contact label {
    font-size: 14px;
    color: #344054;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.page-contact .custom-checkbox label {
    font-weight: 400;
    margin-bottom: 0px;
}

.page-contact input[type="text"],
.page-contact textarea {
    border-radius: 8px;
    width: 100%;
    border: 1px solid #d0d5dd;
    padding: 6px 10px;
    font-size: 16px;
    color: #667085;
}

.profile-form-content label {
    font-size: 14px;
    color: #344054;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.profile-form-content input[type="text"],
.profile-form-content input[type="password"],
.profile-form-content input[type="email"],
.profile-form-content input[type="number"],
.profile-form-content textarea {
    border-radius: 8px;
    width: 100%;
    border: 1px solid #d0d5dd;
    padding: 6px 10px;
    font-size: 16px;
    color: #667085;
}

.login-signup input[type="text"],
.login-signup input[type="password"],
.login-signup input[type="email"],
.login-signup input[type="number"],
.login-signup textarea {
    border-radius: 8px;
    width: 100%;
    border: 1px solid #d0d5dd;
    padding: 6px 10px;
    font-size: 16px;
    color: #667085;
}

.article-snippet {
    border-radius: 24px;
    overflow: hidden;
    background-color: #f9fafb;
}

.article-snippet-content {
    padding: 20px;
}

.article-snippet .article-snippet-category {
    font-size: 14px;
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.article-snippet .article-snippet-content h5 {
    padding-right: 20px;
    position: relative;
}

.article-snippet .article-snippet-content h5:after {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23101828' d='M17 6H7c-.6 0-1 .4-1 1s.4 1 1 1h7.6l-8.3 8.3c-.4.4-.4 1 0 1.4s1 .4 1.4 0L16 9.4V17c0 .6.4 1 1 1s1-.4 1-1V7c0-.6-.4-1-1-1'/%3E%3C/svg%3E");
}

.article-snippet .article-snippet-image {
    position: relative;
    padding-top: 45%;
    width: 100%;
}

.article-snippet .article-snippet-image img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.article-snippet p {
    font-size: 16px;
    color: #475467;
}

.article-body img {
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    margin: 25px 0;
}

.profile-menu {
    position: sticky;
    top: 10px;
    width: 100%;
}

.profile-menu-buttons a,
.profile-menu-buttons a:visited,
.profile-menu-buttons a:hover {
    width: 100%;
    display: block;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 5px 10px 5px 40px;
    text-decoration: none;
    color: #182230;
    position: relative;
}

.profile-menu-buttons a:hover,
.profile-menu-buttons .profile-button.active {
    background-color: #f9fafb;
}

.profile-button:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 9px;
    height: 16px;
    width: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.profile-button.icon-1:before {
    background-image: url("../images/icons/profile-icon-1.svg");
}

.profile-button.icon-2:before {
    background-image: url("../images/icons/profile-icon-2.svg");
}

.profile-button.icon-3:before {
    background-image: url("../images/icons/profile-icon-3.svg");
}

.profile-button.icon-4:before {
    background-image: url("../images/icons/profile-icon-4.svg");
}

.profile-menu-mobile {
    display: none;
}

.banner-profile {
    border-radius: 12px;
    height: 160px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-profile img {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.profile-form-content {
    border-radius: 12px 12px 0 0;
    border: 1px solid #eaecf0;
    padding: 15px;
}

.profile-form-controls {
    border-radius: 0 0 12px 12px;
    border: 1px solid #eaecf0;
    padding: 15px;
    background-color: #f9fafb;
    border-top: none;
    display: flex;
    justify-content: end;
}

.modal-header .close {
	border:none!important;
	background:transparent!important;
	font-size:20px!important;
}

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

@media only screen and (max-width: 850px) {
    .buton-menu {
        display: block;
        width: 100%;
    }
    .link-menu {
        display: none;
    }
    .page-404 .expand-right {
        padding-top: 0;
        height: 45vh;
    }
    .product-container-list .short-desc {
        padding-top: 15px;
    }
    .pagination-container .pagination {
        display: none;
    }
    p,
    p.fs-20,
    p.fs-16 {
        font-size: 16px;
    }
    p.fs-14 {
        font-size: 12px;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 20px;
    }
    .expand-right,
    .expand-left {
        width: calc(100% + 27px);
        margin-left: -15px;
    }
}

.product-container-image {
    overflow: hidden;
    display: inline-block;
}

.product-container-image img {
    transition: transform 0.3s ease-in-out;
}

.product-container-image:hover img {
    transform: scale(1.1);
}

.hp-category-img img {
	transition: .3s all;
}	

.fullwidth-banner img {
	transition: .6s all;
}

.hp-category-img:hover img, .fullwidth-banner:hover img {
	transform: scale(1.1);
}

/* Zoom effect for product title and vendor link */
.product-container-list h6,
.product-container-brand a {
    display: inline-block;
    transition: 0.3s all ease-in-out;
}

.product-container h6:hover,
.product-container-brand a:hover {
    opacity: 0.7;
}

 /* Style modal */
 .modal-content {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

.modal-body {
    padding: 20px;
}

/* Style favorite list */
#favoriteLists {
    padding: 0;
    margin: 0;
}

#favoriteLists li {
    list-style: none;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#favoriteLists li:hover {
    background: #f1f1f1;
}

#favoriteLists a {
    text-decoration: none;
    color: #333;
    display: block;
}

