/* TypoGraphy */
* {
	box-sizing: border-box;
}
:focus {
	outline: none !important;
	box-shadow: none;
	border-color: inherit;
}

html, body {
	width: 100%;
}
body {
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: normal;
	background: #fff;
	overflow-x: hidden;
	font-size: 16px;
	color: #000;
	display: flex;
    flex-direction: column;
    min-height: 100vh;
}
img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
a, a:hover {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px 0 20px;
	padding: 0px;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #000;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover,h6 a:hover {
	color: #01a4ec;
}
h1 {
	font-size: 36px;
	line-height: 45px;
	color: #000;
	font-weight: 600;
}
h2 {
	font-size: 45px;
	line-height: normal;
	color: #000;
}
h3 {
	font-size: 40px;
	line-height: 43px;
	color: #000000;
}
h4 {
	font-size: 30px;
	line-height: 30px;
	color: #000000;
}
h5 {
	font-weight: 500;
	font-size: 20px;
	line-height: 125%;
	color: #000000;
}
h6 {
	font-weight: 500;
	font-size: 16px;
	line-height: 125%;
	color: #000000;
}
p {
    font-size: 16px;
    color: #000;
    line-height: 22px;
}
p:last-child {
	margin-bottom: 0;
}
b, strong{
	font-family: "Inter", sans-serif;
	font-weight: bold;
}
ul {
	padding: 0px 0 20px 18px;
	margin: 0px;
}
ol {
	padding-bottom: 20px;
	padding-left: 15px;
}
ol li {
	position: relative;
	padding-left: 5px;
}
li {
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #1A1A1A;
}
li a {
	color: #01a4ec;
}
li a:hover {
	color: #1A1A1A;
}
a {
	transition: 0.7s;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	color: #03b1e7;
}
a:hover {
	transition: 0.7s;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	color: #1A1A1A;
}
button {
	padding: 0;
	background-color: transparent;
	border: none;
}
body.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.btn {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    text-transform: capitalize;
    box-shadow: rgba(22, 20, 25, .225) 0 7px 5px -5px, hsla(0, 0%, 6%, .15) 0 1px 1px, hsla(0, 0%, 6%, .075) 0 0 0 1px;
    font-weight: 500;
    border-radius: 0;
    border: none;
}
.btn:hover {
	background: #000;
	color: #fff;;
}

/** ================== // HEADER CSS START // ================== **/
.header {
    position: relative;
    background: #fff;
    border-bottom: 2px #000 solid;
    padding: 7.5px 0;
}
.header .container{
	max-width: 100%;
}
.header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-nav-left {
    position: relative;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
}

.navigation .moblelogo {
	display: none;
}
.main-nav .menu-bar {
	display: none;
}
.nav-manu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.nav-manu ul {
    margin: 0;
    padding: 1px 0 0 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style-type: none;
}
.nav-manu ul li {
    padding: 0 0;
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    margin-left: 21px;
}
.nav-manu ul li a {
    color: #000;
    position: relative;
    padding: 0;
    display: block;
    transition: all 300ms ease-in;
}
/** SUB MENU **/
.navigation ul li ul.sub-menu {
    position: absolute;
    display: block;
    top: 100%;
    width: auto;
    transition: all 300ms ease-in;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    min-width: 220px;
    left: 0;
    z-index: 1999;
    padding: 20px;
    width: auto;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1px #000 solid;
	border-radius: 7px;
}
.navigation ul li ul.sub-menu::before {
	content: '';
    background-color: #fff;
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(135deg);
    left: 78px;
    border-radius: 0px 0px 0px 5px;
}
.navigation ul li ul.sub-menu.shop-submenu {
	left: auto;
	right: 0;
}
.navigation ul li:hover>ul.sub-menu {
	opacity: 1;
	visibility: visible;
}
.navigation ul li ul.sub-menu.shop-submenu::before {
	left: auto;
	right: 40px;
}
.navigation ul li ul.sub-menu li {
    padding: 0 2px 0 0;
    width: 100%;
    margin: 0px 0 0;
    transition: .4s;
    border-bottom: none;
    position: relative;
}

.navigation ul li ul.sub-menu li a {
    display: block;
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
    padding-bottom: 18px;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}
.navigation ul li ul.sub-menu li a:hover {
	color: #b4763f;
	text-decoration: underline;
}
.navigation ul li ul.sub-menu li.current-menu-item a{
	color: #b4763f;
	text-decoration: underline;
}

.navigation .menu-item-has-children > a::after {
    content: 'ï„‡';
    font-family: "Font Awesome 5 Free";
    transition: 0.4s;
    font-size: 12px;
    margin-left: 10px;
    font-weight: bold;
}
.search-bar {
    margin: 0 0 0 22px;
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.search0click{
	display: flex;
    flex-wrap: wrap;
}
.search-bar svg {
    width: 1.3rem;
    height: 1.3rem;
	position: relative;
	z-index: 1;
}
.search-bar span {
    font-size: 14px;
    font-weight: 600;
    margin-left: 6px;
}
.search-bar input[type="search"] {
    position: absolute;
    left: -13px;
    top: -8px;
    border: 2px #000 solid;
    padding-left: 37px;
    width: 92px;
    height: 36.19px;
	font-size: 14px;
    font-weight: 600;
	color: #000;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}
.search-bar.search-active input[type="search"] {
    width: 192px;
    opacity: 1;
    visibility: visible;
}
.search-bar input[type="search"]::-webkit-input-placeholder{
	color: #000;
}
.header--right {
    margin-left: auto;
    padding-right: 10px;
}
.select-dly-text {
    display: flex;
    align-items: center;
	cursor: pointer;
}
.select-dly-text span img {
    width: 16px;
    margin-right: 1px;
}
.delivery-menu {
    position: relative;
    padding-right: 22px;
}
.delivery-menu::after {
    content: "";
    background: url('../images/select-icon.svg') no-repeat;
    width: 15px;
    height: 15px;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.delivery-menu label {
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    line-height: 10px;
    font-weight: 500;
}
.select-dly-text span {
    font-size: 14px;
    font-weight: 500;
}
.delivery-dropdown-menu {
    position: absolute;
    right: 0;
    top: 40px;
    background: #e6e6e6;
    width: 120px;
    border-radius: 7px;
    display: none;
}
.delivery-dropdown-menu.showMenu{
	display: block;
}
.delivery-dropdown-menu ul {
    padding: 0;
    margin: 0;
}
.delivery-dropdown-menu ul li {
    font-size: 14px;
    display: block;
	padding: 8px 16px;
	cursor: pointer;
}
.delivery-dropdown-menu ul li img {
    width: 16px;
}

.delivery-dropdown-menu ul li span {
    font-size: 11px;
}

/* select-icon.svg */
/** ================== // HEADER CSS END // ================== **/



/** ================== // DELIVERY ORDER SECTION  CSS START // ================== **/
.delivery-order-section {
    margin-top: 16px;
    margin-bottom: 30px;
}
.delivery-order-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 2px solid #000000;
    padding-bottom: 16px;
}
.delivery-order-left-info img {
    width: 14px;
    margin-right: 5px;
}
.delivery-order-left-info p {
    font-size: 14px;
    font-weight: 300;
}
.delivery-order-left-info a {
    font-size: 14px;
	display: inline-flex;
    align-items: center;
    color: #000000;
    font-weight: 500;
}
.delivery-order-right-info {
	display: inline-flex;
	align-items: center;
}
.delivery-order-right-info img {
    width: 14px;
    margin-right: 5px;
}
.delivery-order-right-info p {
    font-size: 14px;
    font-weight: 300;
}
.delivery-order-right-info p em {
    font-style: normal;
}
/** ================== //DELIVERY ORDER SECTION CSS CSS END// ================== **/


/** ================== // PRODUCT-CATEGORIES SECTION CSS START// ================== **/
.product-categories-section {
    margin-bottom: 75px;
}
.categories-slider-wrapper{
	position: relative;
}
.categories-slider-wrapper::after {
    background: #000000;
    position: absolute;
    content: '';
    bottom: -26px;
    left: 0px;
    width: 100%;
    max-width: 100%;
    height: 2px;
}

.product-categorie {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 16px;
}
.product-categorie h1, .product-categorie h2, .product-categorie h3, .product-categorie h4, .product-categorie h5 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 40px;
    letter-spacing: 1px;
}

.categories-col {
	padding-right: 15px;
}
.categories-info {
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
}

.categories-count span {
    font-size: 11px;
    background: #fff;
    padding: 4px 0px 0px 8px;
    position: absolute;
    bottom: 0;
    right: -3px;
    color: #000000;
	font-weight: 500;
}
.categories-item {
    background: rgba(255, 255, 255, 0);
    padding: 8px;
    border: 1px solid #000000;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}
.product-image {
    border: 1px solid #000000;
    pointer-events: none;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform .3s cubic-bezier(0,.55,.45,1);
	object-fit: cover;
}
.product-image:only-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.categories-info h5 {
    margin: 12px 0px 0px;
    text-decoration: underline;
    transition: text-decoration-color .3s cubic-bezier(0,.55,.45,1);
	text-decoration-color: transparent;
	text-underline-offset: 4px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.categories-col:hover .categories-info h5{
	text-decoration-color: #000000;
}

 .slick-prev, .slick-next {
    padding: 17px 20px;
    border: 7px solid #ffffff;
    background-color: #fff;
    z-index: 1;
}
.slick-prev::after, .slick-next::after {
    content: "";
    background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../images/left-arrow.svg');
	background-size: 14px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px #000 solid;
    position: absolute;
}

/** ================== // PRODUCT-CATEGORIES SECTION cSS END// ================== **/



/** ================== // POPULAR-PRODUCT-SECTION CSS START// ================== **/

.popular-product-section .categories-col {
    padding-bottom: 20px;
}
.popular-product-section .categories-item {
    padding: 0px;
	border: 0px;
    position: relative;
}
.product-inner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0px 0px 0px;
}
.cart-icon img {
    width: 11px;
}
.product-price h6 {
    margin-bottom: 0px;
}
.product-price span {
    font-size: 14px;
    color: #000000;
    font-weight: 300;
    text-transform: capitalize;
}

.product-title span{
    font-style: italic;
}
.product-title {
    flex-direction: column;
    align-items: flex-start;
}
.product-title h6 {
    overflow-wrap: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-decoration: underline;
    transition: text-decoration-color .3s cubic-bezier(0,.55,.45,1);
    text-decoration-color: transparent;
    text-underline-offset: 3px;
}
.popular-product-section .categories-info:hover .product-title h6{
    text-decoration-color: #000000;
}
.product-tag {
    font-size: 11px;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #000000;
    padding: 2px 8px;
    margin: 9px 0px 0px;
	display: inline-block;
    letter-spacing: .05em;
}
.amount-tag {
    font-size: 11px;
    color: #000000;
	font-weight: 300;
	letter-spacing: .05em;
    text-transform: uppercase;
}
.amount-tag-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-top: 10px;
}
.amount-tag strong {
    font-weight: 500;
}
.cart-btn {
    font-size: 14px;
    color: #000000;
    background: transparent;
    border: 2px solid #000000;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 7px 10px;
    outline: none;
	font-weight: 500;
	box-shadow: rgba(22, 20, 25, .225) 0 7px 5px -5px, hsla(0, 0%, 6%, .15) 0 1px 1px, hsla(0, 0%, 6%, .075) 0 0 0 1px;
    line-height: normal;
}

.popular-product-section .product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.popular-product-section .categories-info:hover .product-image img{
    transform: scale(1.035);
}

.popular-product-section .view-all-product:hover .product-image img{
    transform: none;
}
.view-all-product .categories-info {
    border: 1px solid #000000;
    padding: 8px;
    height: 100% !important;
}
.view-all-product-heading h6 {
    margin: 15px 0px 0px 0px;
    line-height: 1.5;
}

.cart-icon {
    background: #000;
    position: absolute;
    right: 8px;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    align-items: center;
    padding: 3px 9px;
    bottom: 15px;
}
.cart-icon svg {
    width: 11px;
    height: 11px;
    fill: #fff;
}
.cart-icon span {
    font-size: 11px;
    color: #fff;
    font-weight: 500;
}
.categories-slider  ul.slick-dots {
    position: relative;
    bottom: -22px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 111px);
}
.categories-slider ul.slick-dots li {
    margin: 0;
    width: 33.33%;
}
.categories-slider ul.slick-dots li button {
    border: none;
    width: 100%;
    border-radius: 0;
    background: #a6a6a6;
    height: 2px;
}
.categories-slider ul.slick-dots li.slick-active button {
    background: #000;
}

/** ================== // POPULAR-PRODUCT-SECTION CSS END// ================== **/

/** ================== // FLOWER PRODUCT SECTION CSS START// ================== **/

.popular-product-section .coming-soon:hover .product-image img{
    transform: none;
}
.coming-soon .product-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    width: 25%;
    height: 25%;
    border-radius: 10%;
    border: 4px solid #000;
    opacity: .1;
    transform: translate(-50%, -50%) rotate(45deg);
}
/** ================== // FLOWER PRODUCT SECTION CSS  END// ================== **/


/** ================== // FOOTER SECTION CSS START// ================== **/
.footer-section {
    padding: 90px 0px 70px;
	margin-top: auto;
}
.footer-powered-by {
    text-align: center;
    width: 100%;
}
.footer-powered-by a {
    color: #333333;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: #a6a6a6;
    font-weight: 300;
}
.footer-powered-by a:hover{
    text-decoration-color: #000;
}

.footer-powered-by a svg {
    width: 80px;
    padding-left:3px;
}
.footer-powered-by a svg path{
    fill: rgb(51, 51, 51);
}
/** ================== // FOOTER SECTION CSS END// ================== **/

/** ================== // CATEGORIES SHOP SECTION START // ================== **/
.categorie-shop-section{
	margin: 0;
	padding: 24px 0;
}
.categorie-row-warp{
	display: flex;
	flex-wrap: wrap;
}
.categorie-slde-bar-left {
    margin: 0;
    padding: 0;
    width: 300px;
}

.clear-filters-button{
	margin-bottom: 8px;
}

.btn.btn-border{
	border:1px #000 solid;
	color: #000;
	background: none;
	line-height: normal;
}
.btn.btn-border:hover{
	border-color:#000;
	color: #fff;
	background: #000;
}
.checkbox-input-warp {
    display: flex;
    flex-wrap: wrap;
    row-gap: 3.5px;
}
.categorie-slde-bar-info {
    border-bottom: 2px #000 solid;
    padding-bottom: 8px;
}
.categorie-item-bar {
    border-top: 2px #000 solid;
	padding-top: 8px;
	padding-bottom: 8px;
}
.checkbox-label{
	width: 50%;
}
.full-col .checkbox-label{
	width: 100%;
}
.categorie-headline {
	margin: 0;
	padding: 0;
	position: relative;
	cursor: pointer;
}
.categorie-headline::after {
	content: "";
	background: url('../images/select-icon.svg') no-repeat center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right: 0;
	width: 15px;
	height: 15px;
	background-size: 100%;
}

.categorie-headline h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 37px;
    margin: 0;
}
.checkbox-label input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox-label label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
}
.checkbox-label input:checked + label {
    font-weight: 500;
}

.checkbox-label label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.checkbox-label input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 7px;
    height: 13px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(36deg);
}
.checkbox-label input:checked + label:before {
    background: #000;
}
.categorie-bar-info {
	padding-top: 8px;
	padding-bottom: 8px;
	display: none;
}
.categorie-item-bar.open .categorie-headline::after {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
}
.categorie-item-bar.open .categorie-bar-info {
	display: block;
}
.categorie-bar-info ul {
    padding: 0 0 10px;
    margin: 0;
}
.categorie-bar-info ul li {
    display: block;
    margin: 0 0 12px;
}
.categorie-bar-info ul li a{
    color: #000;
	font-weight: 300;
	text-decoration: underline;
}
.categorie-bar-info ul li a strong{
	font-weight: 500;
}
.range-input-warp {
    display: flex;
    flex-wrap: wrap;
}
.range-input-box {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    border: 1px #000 solid;
    padding: 7px;
}
.range-input-box span {
    width: 10px;
}
.range-input-box input {
    width: calc(100% - 10px);
    border: none;
    margin: 0;
    padding: 0 0 0 5px;
	color: #000;
	font-size: 14px;
}
.range-input-box input::-webkit-input-placeholder {
	color: #000;
}
.moreless-show-hide .checkbox-input-warp {
    height: 293px;
    overflow: hidden;
}
.moreless-show-hide.text-block--expanded .checkbox-input-warp {
    height: auto;
}
.moreless-button {
    display: inline-block;
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    position: relative;
    padding-right: 26px;
}
.moreless-button::after {
    content: "";
    background: url('../images/select-icon.svg') no-repeat center;
    width: 13px;
    height: 13px;
    position: absolute;
    right: 0;
    top: 5px;
}
.text-block--expanded .moreless-button::after {
    transform: rotate(180deg);
}
.price-range-slider {
    width: 100%;
    padding: 0;
    margin: 0 0 26px;
}
.price-range-slider:last-child {
    margin-bottom: 0;
}
.range-value {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.range-value input {
    width: auto;
    background: none;
    color: #000;
    font-size: 14px;
    box-shadow: none;
    margin: 0;
    font-weight: 300;
    border: none;
	padding: 0;
}
.range-value span {
    font-size: 14px;
    font-weight: 600;
}
.range-bar {
    border: none;
    background: #fff;
    height: 12px;
    width: 95%;
    margin-left: 8px;
    margin-right: 8px;
}

.ui-slider-range {
  background: #06b9c0;
}

.ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #fff;
  border: 2px solid #06b9c0;
  height: 17px;
  width: 17px;
  top: -0.52em;
  cursor: pointer;
}
.ui-slider-handle + span {
  background: #06b9c0;
}

.price-range-slider .ui-widget.ui-widget-content {
    border: 2px solid #000;
    margin-top: 9px;
}
.price-range-slider .ui-slider-range {
    background: #000;
}
.price-range-slider .ui-state-default, .ui-widget-content .ui-state-default,
.price-range-slider .ui-widget-header .ui-state-default,
.price-range-slider .ui-button,
html .price-range-slider .ui-button.ui-state-disabled:hover,
html .price-range-slider .ui-button.ui-state-disabled:active {
    border: 1px solid #000;
    background: #000;
}
.price-range-slider .ui-slider-horizontal .ui-slider-handle {
    top: -.35em;
}
/*--- /.price-range-slider ---*/

.categorie-slde-info-right{
	width: calc(100% - 300px);
	padding-left: 32px;
}
.categorie-rlt-item-info{
	margin: 0;
	padding: 0;
}

.categorie-product0row-flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 33px;
}
.categorie-product0row-flex .categories-col {
    width: 20%;
}
.categorie-product0row-flex .categories-item {
    padding: 0;
    border: none;
}
.categorie-row-hd-warp {
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.categorie-product-heading h2 {
    margin: 0 0 4px;
    padding: 0;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
}
.categorie-product-heading p {
    font-size: 14px;
}
.categorie-product0row-flex .product-inner-wrap {
    min-height: 394px;
}
.categorie-product0row-flex .product-title h6 {
    min-height: inherit;
}
.categorie-name-select {
    width: 175px;
}
.categorie-name-select span.select2.select2-container{
	width: 100% !important;
}
.categorie-name-select span.select2.select2-container span.select2-selection.select2-selection--single {
    border: 2px #000 solid;
    border-radius: 0;
    height: 35.2px;
	box-shadow: rgba(22,20,25,.225) 0 7px 5px -5px,hsla(0,0%,6%,.15) 0 1px 1px,hsla(0,0%,6%,.075) 0 0 0 1px;
}
.categorie-name-select .select2-selection__rendered {
    line-height: 31.2px !important;
    width: 100%;
    font-size: 14px;
    color: #000 !important;
    font-weight: 500;
}
.categorie-name-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
    width: 30px;
	background: url(../images/select-icon.svg) no-repeat center;
	background-size: 15px;
}
.categorie-name-select .select2-container--default .select2-selection--single .select2-selection__arrow b{
	display: none;
}
body span.select2-search.select2-search--dropdown {
    display: none;
}
body .select2-dropdown {
    background-color: #e6e6e6;
    border: none;
    border-radius: 0;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
	top: 8px;
}
body .select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
}
body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e2e2e2;
    color: #000;
    font-weight: 600;
}

body .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

body .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

body .select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #000;
}
body .select2-results__option {
    padding: 8px 16px;
}
.categorie-name-rlt-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	column-gap: 10px;
}
.filter-buttons {
    width: 73px;
    display: flex;
    flex-wrap: wrap;
	box-shadow: rgba(22,20,25,.225) 0 7px 5px -5px,hsla(0,0%,6%,.15) 0 1px 1px,hsla(0,0%,6%,.075) 0 0 0 1px;
}
.list-view {
    width: 50%;
    border: 1px #000 solid;
    padding: 4.5px 7px;
	cursor: pointer;
}
.categorie-product0row-flex.listStyle{
	row-gap:0;
}
.categorie-product0row-flex.listStyle .categories-col {
    width: 100%;
    border-bottom: 2px #000 solid;
    padding: 0 0 16px;
    margin: 0 0 16px;
}
.list-view.active {
    background: #000;
}
.list-view.active img {
    filter: invert(1);
}
.categorie-product0row-flex.listStyle .categories-col .product-inner-wrap {
    min-height: inherit;
    flex-wrap: wrap;
    flex-direction: inherit;
    align-items: center;
}
.categorie-product0row-flex.listStyle .categories-col .product-inner-wrap > a {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 150px);
}
.categorie-product0row-flex.listStyle .categories-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.categorie-product0row-flex.listStyle .product-price {
    display: none;
}
.categorie-product0row-flex.listStyle .product-price.product-title {
    display: flex;
    padding-top: 0;
}
.categorie-product0row-flex.listStyle  .product-col-img-figure {
    position: relative;
    width: 128px;
    padding-bottom: 37%;
}
.categorie-product0row-flex.listStyle .tag-inline-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}
.categorie-product0row-flex.listStyle .product-col-title-figcaption {
    padding-left: 32px;
}
.categorie-product0row-flex.listStyle .add-to-cart {
    width: 80px;
}
.cart-btn.dollor-number {
    display: none;
	position: relative;
}
.categorie-product0row-flex.listStyle .cart-btn {
    display: none;
}

.categorie-product0row-flex.listStyle .cart-btn.dollor-number{
	display: inline-flex;
}
.plus-icon {
    background-color: #000000;
    border-radius: 50%;
    color: #ffffff;
    height: 1.125rem;
    line-height: 1.125em;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.125rem;
    transform: translate(50%,-50%);
}

/** ================== // CATEGORIES SHOP SECTION END // ================== **/



/** ================== // BRANDS PAGE CSS START // ================== **/

.product-col-img-figure {
    position: relative;
    padding-bottom: 100%;
}
.brands-product-page {
    padding: 24px 0px 0px;
    margin: 0px;
}
.brands-product-page .product-categorie {
    display: block;
    margin: 0px;
}
.brands-product-page .product-categorie h1 {
    margin: 0px 0px 16px;
    font-size: 36px;
}
.brands-product-page .categories-slider-wrapper::after{
	display: none;
}
.brands-product-page .categories-slider-wrapper {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
	grid-gap: 24px 16px;
}
.brands-product-page .categories-col{
	padding-right: 0px;
}
.brands-product-page .product-inner-wrap {
    min-height: auto;
}
/** ================== // BRANDS PAGE CSS END// ================== **/


/** ================== // CART SIDE-MODAL SHOPPING SECTION START // ================== **/
.bdy-overlay{
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 2;
}
.has-offcanvas .bdy-overlay {
    opacity: 1;
    visibility: visible;
}
.body-cart-slde-bar .bdy-overlay {
    opacity: 1;
    visibility: visible;
}
.side-cart-modal {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 548px;
    min-height: 100vh;
    overflow-x: hidden;
    background: #ffffff;
    outline: none;
    pointer-events: auto;
    z-index: 9;
	transition: 0.5s;
}

.body-cart-slde-bar .side-cart-modal {
    right: 0;
}
.cart-side-bdy-info {
    width: 100%;
    padding: 24px;
    height: 100vh;
    overflow: auto;
}
.continue-shop-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 16px;
}
.side-button{
	display: inline-flex;
	border: 1px #000 solid;
	padding: 10px 12px;
	text-rendering: optimizeLegibility;
    transition: opacity .15s linear, visibility 0s linear .15s, transform .1s linear, box-shadow .1s;
    -webkit-user-select: none;
    position: relative;
    color: #000000;
    background: rgb(255 255 255 / 0%);
    box-shadow: rgba(22, 20, 25, .225) 0 7px 5px -5px, hsla(0, 0%, 6%, .15) 0 1px 1px, hsla(0, 0%, 6%, .075) 0 0 0 1px;
	font-size: 16px;
	font-weight: 500;
	align-items: center;
	justify-content: center;
	width: calc(50% - 8px);
}
.side-button.active {
	border-width: 2px;
}
.side-button img {
    width: 15px;
    margin-right: 6px;
}

.cart-summary-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 2px #000 solid;
    padding-top: 22px;
    margin-top: 24px;
	margin-bottom: 16px;
}
.cart-summary-heading h3 {
    font-size: 21px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: normal;
}
.cart-summary-heading span{
	display: inline-flex;
    align-items: center;
    gap: .25em;
    background: none;
    border-radius: 0;
    border: 1px #000 solid;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    padding: .2em .75em .25em;
}
.cart-summary-heading strong{
	font-size: 21px;
	font-weight: 500;
}
.cart-sidebar-line-items-row{
	margin: 0;
	padding: 0;
}
.cart-sidebar-line-items-repeat {
    margin: 0 0 20px;
    padding: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px #000 solid;
}
.cart-sidebar-line-items-repeat .product-col-img-figure {
    width: 100px;
    padding-bottom: 20%;
}
.cart-sidebar-line-items-repeat .product-col-modal-figcaption {
    width: calc(100% - 100px);
	padding-left: 16px;
	position: relative;
}
.cart-sidebar-line-items-repeat .product-price {
    padding: 0;
	margin: 0;
}
.cart-sidebar-line-items-repeat .categories-item {
    padding: 0;
    border: none;
}

.cart-sidebar-line-items-repeat .product-title  a {
    color: #000;
    font-style: normal;
    text-decoration-line: underline;
    text-decoration-color: #a6a6a6;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.cart-sidebar-line-items-repeat .product-title h6 {
    overflow: visible;
	margin-top: 4px;
}

.item-cartdlr{
	position: absolute;
	top: 0;
	right: 0;
}
.item-cartdlr p {
    font-size: 14px;
    display: block;
    line-height: normal;
}
.item-cartdlr strong {
    display: block;
}

.pluse-mins-count {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 28px;
}
.minus, .plus {
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
.number {
    border: 1px solid #000;
    display: inline-flex;
    width: 55px;
}
.number input {
    height: auto;
    width: 100%;
    border: none;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    background: none;
}
.remove{
	margin-left: auto;
}
.remove img {
    width: 12px;
}
.remove span{
	font-size: 14px;
}
/** ================== // CART SIDE-MODAL SHOPPING SECTION END // ================== **/


/** ================== // PRODUCTS PAGE CSS START// ================== **/


.products-details{
    max-width: 1000px;
    margin: 0px auto;
    padding: 24px;
}
.copy-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.back-btn a {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
}
.back-btn a img {
    width: 14px;
    margin-right: 8px;
}

.copy-text-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copy-control {
    width: 100%;
    white-space: nowrap;
    background: none;
    color: #000000;
    border-radius: 0px;
    padding: 4px 8px;
    outline: 0 solid transparent;
    transition: border .25s;
    border: 2px solid transparent;
    font-size: 14px;
}
.copy-control:focus{
    border-color: #000000;
}
.copy-btn {
    font-size: 11px;
    color: #000000;
    font-weight: 500;
    outline: none;
    border: 2px solid #000000;
    background: rgba(255, 255, 255, 0);
    padding: 5px 8px;
    box-shadow: rgba(22, 20, 25, .225) 0 7px 5px -5px, hsla(0, 0%, 6%, .15) 0 1px 1px, hsla(0, 0%, 6%, .075) 0 0 0 1px;
    background-image: url(../images/copy-link-icon.svg);
    background-repeat: no-repeat;
    background-position: center right 15px;
    padding-right: 33px;
    background-size: 11px;
}

.products-details-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 32px;
    margin-bottom: 32px;
    border-bottom: 2px solid #000000;
    padding-bottom: 30px;
}
.products-details-col-left {
    position: relative;
    padding-bottom: 100%;
}
.products-details-left-image {
    border: 1px solid #000000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.products-details-left-image img {
    width: 100%;
    height: 100%;
    z-index: 3;
    border-radius: 0px;
    overflow: hidden;
    object-fit: cover;
}
.brand-name a {
    color: rgb(0, 0, 0);
    text-decoration-line: underline;
    text-decoration-color: #a6a6a6;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: .1s all;
}
.brand-name a:hover{
    text-decoration-color: #000000;
}
.brand-name a h6 {
    font-size: var(--font-size-body);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0;
}
.product-name h1 {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: normal;
}
.product-select-price {
    margin-bottom: 24px;
}
.product-select-price span {
    font-size: 24px;
    color: #000000;
    font-weight: 300;
    line-height: 1;
}
.product-option-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;;
    margin-bottom: 24px;
}
.product-select-option select {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 13px;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    border: 2px solid #000000;
    box-shadow: rgba(22,20,25,.225) 0 7px 5px -5px,hsla(0,0%,6%,.15) 0 1px 1px,hsla(0,0%,6%,.075) 0 0 0 1px;
    appearance: none;
}
.product-select-option{
    position: relative;
}
.product-select-option::after {
    content: "";
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
}
.cart-submit-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: none;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    outline: 0;
    padding: 9px 13px;
    width: 100%;
    position: relative;
    color: #fff;
    background: #000000;
    box-shadow: rgba(22,20,25,.225) 0 7px 5px -5px,hsla(0,0%,6%,.15) 0 1px 1px,hsla(0,0%,6%,.075) 0 0 0 1px;
    background-image: url(../images/cart.svg);
    background-repeat: no-repeat;
    background-position: center left 54px;
    background-size: 20px;
}

.product-compounds ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
    display: inline-flex;
    gap: 4px;
    flex-wrap: wrap;
}
.tag-caps {
    display: inline-flex;
    align-items: center;
    gap: .25em;
    background: transparent;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    padding: 3px 10px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.tag-amount {
    background: transparent;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.25;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.tag-amount strong{
    font-weight: 600;
}
.product-compounds ul li:after {
    content: "Â·";
    margin-left: 4px;
}
.product-compounds ul li:last-child:after {
    display: none;
}
.safe-markdown {
    margin-bottom: 24px !important;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.Categories-details h5 {
    margin-bottom: 16px;
}

.Categories-details ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.Categories-details ul li a {
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    border: 2px solid #000000;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 8px 12px;
    position: relative;
    box-shadow: rgba(22,20,25,.225) 0 7px 5px -5px,hsla(0,0%,6%,.15) 0 1px 1px,hsla(0,0%,6%,.075) 0 0 0 1px;
}

.product-details-side-section .container {
    max-width: 1000px;
}
.product-details-side-section {
    padding-bottom: 60px;
}
/** ================== //PRODUCTS PAGE CSS END// ================== **/

/** ================== // SIGN UP SECTION START // ================== **/
.signup-page-section{
	margin: 0;
	padding: 85px 0;
}

.sign0auth-outer{
	margin: 0 auto;
	max-width: 432px;
}
.hello-heading{
	padding: 0 0 32px;
	margin: 0 0 32px;
	border-bottom: 2px #000 solid;
}
.hello-heading h1 {
    margin: 0 0 16px;
}
.sign-form form {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.sign-form .form-group {
  margin: 0 0 16px;
  padding: 0;
  position: relative;
  width: 100%;
}
.sign-form .form-group:last-child{
	margin-bottom: 0;
}

.sign-form .form-group .form-control {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #000;
    border-radius: 0;
    background-color: transparent;
    margin: 0px auto;
    padding: 6px 4px 4px 14px;
    height: 50px;
    outline: none !important;
    font-size: 16px;
    color: #000;
    transition: all .2s ease-in-out;
    box-shadow: rgba(22,20,25,.225) 0 7px 5px -5px,hsla(0,0%,6%,.15) 0 1px 1px,hsla(0,0%,6%,.075) 0 0 0 1px;
}

.sign-form .form-group label {
  position: absolute;
  top: 17px;
  left: 14px;
  text-align: left;
  display: inline-block;
  padding: 0;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 400;
  background: none;
  color: #000;
  margin: 0px auto;
  cursor: text;
  transition: all .15s ease-in-out;
}

.sign-form .form-group .form-control:valid + label, .sign-form .form-group .form-control:focus + label {
    transform: translateY(-100%) scale(.8);
	left: 3px;
}
.form-group.submit-form {
    text-align: right;
}
.btn.submit-btn {
    min-width: 200px;
    height: 50px;
    font-size: 16px;
}

/** ================== // SIGN UP SECTION END // ================== **/


/** ================== // CHOOSE YOUR EXPERIENCE START // ================== **/
.tabbing-choose-section{
	margin: 0;
	padding: 88px 0;
}
.tabbing-choose-section .container {
    max-width: 600px;
}
.tabbing-choose-heading{
	text-align: center;
}
.tabbing-choose-heading h1{
	letter-spacing: 1px;
	margin: 0 0 32px;
}

.tab-choose-menu ul.nav {
    margin: 0;
    padding: 0;
}
.tab-choose-menu ul li {
    margin: 0;
    padding: 0;
	font-size: 24px;
	font-weight: 500;
	width: 50%;
	text-align: center;
}
.tab-choose-menu ul li a{
    margin: 0;
    padding: 0 0 8px;
	color: #000;
	border-bottom: 4px transparent solid;
	opacity: 0.5;
	transition: 0.5s;
}
.tab-choose-menu ul li a.active{
	border-bottom-color: #000;
	opacity: 1;
}
.tab-choose-menu ul li a:hover{
	opacity: 1;
}
.tab-choose-menu ul li a img{
	width: 28.8px;
}
.tab-choose-menu {
    margin: 0 0 42px;
}
.provide-find-addrs p {
    margin: 0 0 20px;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
}
.form-group.half-80-left {
    width: 73%;
	padding-right: 12px;
}
.form-group.half-20-right {
    width: 27%;
}
.provide-find-addrs .form-group.submit-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap:16px;
    margin-top: 16px;
}
.provide-find-addrs .btn.submit-btn {
    min-width: inherit;
}

.map-ifarme{
	border: 1px #000 solid;
	padding: 8px;
}

.map-ifarme iframe {
    margin: 0 0 8px;
    padding: 0;
    height: 200px;
    display: block;
    width: 100%;
}
.address-maptext{
	text-align: center;
}
.address-maptext a {
    color: #000;
    text-decoration-line: underline;
    text-decoration-color: #a6a6a6;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
	font-weight: 600;
}
.shop-btn {
    margin-top: 32px;
}
.shop-btn a.btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
}

/** ================== // CHOOSE YOUR EXPERIENCE END // ================== **/

.clear-filters-button.mobile-show-filter{
	display: none;
}
