/* ===========================================================================
Buttons
============================================================================*/
.btn {
    border-radius: 2px;
}
.btn-info,
.btn-outline-info:hover {
    background-color: var(--sl-black);
    border-color: var(--sl-black);
}
.btn-info:hover {
    color: #fff;
    background-color: var(--colorHighlight1);
    border-color: var(--colorHighlight1);
}
.btn-primary {
    background-color: var(--colorHighlight1);
    border-color: var(--colorHighlight1);
    color: white;
}
.btn-primary:hover {
    background-color: var(--colorHighlight1-hover);
    border-color: var(--colorHighlight1);
    color: white;
}
.btn-sale-red {
    background-color: var(--colorHighlight1);
    color: white;
}
.btn-sale-red:hover {
    background-color: var(--sl-black);
    color: white;
}
.btn-light {
    background-color: #eaeaea;
}

.btn-dark {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.btn-success {
	color: #fff;
	background-color: #6dbe45;
	border-color: #66aa44;
}

.btn-group-xl > .btn, .btn-xl {
	padding: .5rem 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: .3rem;
}

/* ===========================================================================
Breadcrumb
============================================================================*/
.breadcrumb {
    background: transparent;
    padding: 0.5rem 0rem;
    margin-bottom: 10px;
    font-size: 10px;
    border-radius: 0;
    text-transform: capitalize;
    margin-top: 10px;
}
.breadcrumb .breadcrumb-item a {
    color: #999;
    font-weight: 300;
}
.breadcrumb-item.active {
    color: #999;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: .3rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    padding-right: .3rem;
    color: #999;
}


/* ===========================================================================
Forms
============================================================================*/
html[lang="ar"] .list-inline-item:not(:last-child) {
	margin-left: .5rem;
	margin-right: 0;
}

/* ----- on/off switch button ----- */
html[lang="ar"] .custom-control-label.ml-5 {
	margin-right: 3rem !important;
	margin-left: unset !important;
}

/* --------- custom radio ------- */
.radio-pill .custom-control-input,
.radio-pill .custom-control-label:before,
.radio-pill .custom-control-label:after {
	display: none;
}
.shopping-cart-form .custom-control.custom-switch {
	display: none !important;
}
.radio-pill {
	padding: 0;
	display: inline-flex;
}
.radio-pill-txt {
	background: white;
	display: flex;
	padding: 7px 20px;
	border-radius: 4px;
	border: 1px solid #d5d5d5;
	font-weight: 400;
}
/* html[lang="ar"] .radio-pill-txt {
	font-weight: 300;
} */
.radio-pill input[type="radio"]:checked + .radio-pill-txt {
	background: var(--colorHighlight1);
	border-color: #b30000;
	color: white;
}

/*#payment-method-block .custom-radio .custom-control-input,*/
/*#payment-method-block .custom-radio .custom-control-label:before,*/
/*#payment-method-block .custom-radio .custom-control-label:after {*/
/*	display: block !important;*/
/*	position: unset !important*/
/*}*/


/* ---------- custom checkbox ---------- */
.custom-checkbox .custom-control-label::after,
.custom-checkbox .custom-control-label::before {
	width: 1.2rem;
	height: 1.2rem;
}
.custom-checkbox .custom-control-label::before {
	background-color: #fff;
	border: 1px solid #c2c2c2;
}
.custom-checkbox .custom-control-label {
	color: #757575;
	font-weight: 400;
	font-size: 16px;
}

/* ===========================================================================
Offcanvas Sidebar
============================================================================*/
.b-sidebar {
	font-size: 14px;
}

/* sidebar header */
.b-sidebar > .b-sidebar-header {
	justify-content: space-between;
	box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}
.b-sidebar.b-sidebar-right > .b-sidebar-header .close {
	margin-right: 15px;
}
.b-sidebar:not(.b-sidebar-right) > .b-sidebar-header .close {
	margin-left: 15px;
}

/* wishlist and cart items */
.b-sidebar .item {
	border: 1px solid #dee2e6 !important;
	margin: 0 0 15px !important;
	padding: 10px !important;
	border-radius: 2px;
}

.sidebar-cart .item > a:first-of-type {
	max-width: 85px;
	max-height: 127px;
	overflow: hidden;
	font-size: 12px;
	line-height: 1;
}
.sidebar-cart .item img {
	width: 85px;
    height: 127px;
    object-fit: contain;
}
@media(max-width: 767.98px) {
    .sidebar-cart .item img {
        width: 65px;
        height: 97px;
    }
}

.b-sidebar .item .col a {
	font-weight: 600;
    overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
    margin-bottom: 5px;
}
/* html[lang="ar"] .b-sidebar .item .col a {
	font-weight: 300;
    font-size: 14px;
} */

.b-sidebar .item .attributes {
	border: 0;
	padding: 0 !important;
	margin-bottom: 5px;
}

@media(max-width: 767.98px) {
    .sidebar-cart .item .price,
    .sidebar-cart .item .quantity {
        font-size: 13px;
    }
    html[lang="ar"] .sidebar-cart .item .price,
    html[lang="ar"] .sidebar-cart .item .quantity {
        font-size: 12px;
    }
}
/* html[lang="ar"] .sidebar-cart .item .price,
html[lang="ar"] .sidebar-cart .item .quantity {
	font-weight: 300;
} */

.b-sidebar .item .deleteitem {
    position: absolute;
	top: unset;
	bottom: 0px;
	right: 0px;
	padding: 9px;
	width: 35px;
	height: 35px;
	font-size: 19px;
	color: gray !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
html[lang="ar"] .b-sidebar .item .deleteitem {
	right: unset;
    left: 0px;
}

/* sidebar footer */
.b-sidebar > .b-sidebar-footer {
	background: var(--colorHighlight1);
}
.sidebar-cart .b-sidebar-footer .h4 {
	font-size: 18px;
	white-space: nowrap;
}

/*hack*/
html[lang="en"] .sidebar-cart .item .col {
	padding-right: 0;
}
html[lang="ar"] .sidebar-cart .item .col {
	padding-left: 0;
}


/* ===========================================================================
Catbox
============================================================================*/
.catbox {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.catbox img {
	width: 100%;
	border-radius: 4px;
	aspect-ratio: 1;
	object-fit: cover;
}
.catbox .cat-title {
	color: white;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
    text-align: center;
	position: absolute;
	bottom: 0;
	margin: 0;
	width: 100%;
	padding: 10px;
    pointer-events: none;
	background-color: rgba(0,0,0,0.4);
	backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}
.catbox:hover .cat-title {
	background-color: rgba(0,0,0,0.6);
	backdrop-filter: blur(7px);
}
@media(max-width: 1399.98px) {
    .catbox .cat-title {
        font-size: 26px;
    }
}
@media(max-width: 1199.98px) {
    .catbox .cat-title {
        font-size: 23px;
        padding: 5px;
    }
}
@media(max-width: 767.98px) {
    .catbox .cat-title {
        font-size: 18px;
        font-weight: 400;
    }
}


/* ===========================================================================
Catbox2 (subcategories in the category page)
============================================================================*/
.catbox2 {
    border: 2px solid white;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	width: 100%;
	aspect-ratio: 432/500;
	padding: 30px;
	align-items: center;
	display: flex;
	justify-content: center;
    transition: all 0.5s ease;
}
.catbox2:hover {
    border: 2px solid var(--colorHighlight1);
}
.catbox2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
    transition: all 0.5s ease;
}
.catbox2:hover img {
    transform: rotate(1deg) scale(1.05);
}
.catbox2 .catname {
	position: absolute;
	bottom: 15px;
	background: var(--colorHighlight1);
	font-size: 28px;
	min-width: 150px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 15px;
	text-align: center;
	border-radius: 4px;
}


@media(max-width: 1600px) {
    .catbox2 .catname {
        font-size: 18px;
        padding: 7px 10px;
    }
}
@media(max-width: 767.98px) {
    .catbox2 .catname {
        font-size: 16px;
        padding: 5px 10px;
    }
}



/* ===========================================================================
Section Headers
============================================================================*/
.row-section-header h2 {
	margin-bottom: 0;
	font-size: 36px;
	font-weight: 500 !important;
}
html[lang="ar"] .row-section-header h2 {
	font-size: 32px;
}
@media(max-width: 767.98px) {
    .row-section-header h2 {
        font-size: 24px;
    }
}


.row-section-header .see-all {
	display: inline-flex;
	padding: 5px 15px;
	font-weight: 500;
	font-size: 17px;
	border: 1px solid var(--colorHighlight1);
	transition: all 0.3s ease;
	border-radius: 4px;
	color: var(--colorHighlight1);
}
html[lang="ar"] .row-section-header .see-all {
	font-size: 15px;
}
.row-section-header .see-all:hover {
	background-color: var(--colorHighlight1);
    color: white;
}
@media(max-width: 767.98px) {
    .row-section-header .see-all {
        padding: 5px 10px;
        font-size: 16px;
    }
}


/* ===========================================================================
Productbox
============================================================================*/
.productbox {
    border: 1px solid transparent;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer;
	position: relative;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
	transition-timing-function: linear;
	background-color: white;
    box-shadow: 0 0 15px #e8e8e8;
}
.productbox:hover {
	border-color: rgb(239, 240, 246);
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 15px 20px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}

/* picture */
.productbox .pic-wrapper {
	position: relative;
	max-height: 450px;
	overflow: hidden;
	background-color: #fff;
}
.pic-prbox {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productbox .pic-wrapper .btn-wishlist {
	position: absolute;
	top: 10px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 50%;
    padding: 2px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
html[lang="en"] .productbox .pic-wrapper .btn-wishlist {
	right: 10px;
}
html[lang="ar"] .productbox .pic-wrapper .btn-wishlist {
	left: 10px;
}

.productbox .pic-wrapper .btn-wishlist .bi {
	font-size: 20px;
}
.productbox .pic-wrapper .btn-wishlist .bi-suit-heart-fill {
	color: var(--colorHighlight1);
}
.productbox .pic-wrapper .btn-wishlist:not(.active) .bi-suit-heart-fill {
	display: none;
}
.productbox .pic-wrapper .btn-wishlist.active .bi-suit-heart {
	display: none;
}
.productbox .badges-container {
	position: absolute;
	left: 0;
	top: 12px;
	display: flex;
	gap: 5px;
}
.productbox .badge-price-off {
	background: var(--colorHighlight1);
	color: white;
	font-weight: 300;
	font-size: 15px;
	padding: 2px 7px;
	border-radius: 0 2px 2px 0;
	pointer-events: none;
}
html[lang="ar"] .productbox .badges-container {
	left: unset;
	right: 0;
}
html[lang="ar"] .productbox .badge-price-off {
	left: unset;
    right: 0;
	border-radius: 2px 0 0 2px;
	font-size: 13px;
}

.productbox .badge-price-off-flash-sale {
	background: var(--colorHighlight1);
	position: absolute;
	left: 0;
	top: 0;
	color: white;
	font-weight: 300;
	font-size: 17px;
	padding: 5px 7px;
	border-radius: 2px 0 2px 0;
	pointer-events: none;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}
html[lang="ar"] .productbox .badge-price-off-flash-sale {
	left: unset;
    right: 0;
	border-radius: 0 2px 0 2px;
	font-size: 14px;
}

/* prbox details */
.prbox-details-wrapper {
    width: 100%;
	padding: 10px 15px;
	position: relative;
}

.prbox-rating {
	font-size: 14px;
	box-shadow: 0 0 5px #e6e6e6;
	padding: 2px 8px;
	border-radius: 4px;
}
.prbox-rating i{
	color: #ffb039;
}
.btn-add-to-cart-prbox {
	background: var(--colorHighlight1);
	color: white;
	width: 37px;
	height: 37px;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
    border: 1px solid var(--colorHighlight1);
}
.btn-add-to-cart-prbox:hover {
	color: var(--colorHighlight1);
	background: white;
    box-shadow: 0 0 5px rgb(192, 192, 192);
}

.prbox-brandname {
    display: flex;
	color: #6a6a6a;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
}
.prbox-title {
	font-size: 18px;
	font-weight: 500 !important;
    margin: 0;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	height: 28px;
}

.prbox-desc {
	font-size: 16px;
    font-weight: 400;
    color: #242424;
    overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 50px;
	margin-bottom: 0 !important;
}
/* price */
.productbox .actual-price {
	font-size: 21px;
	font-weight: 600;
    margin-top: 5px;
}
.productbox.has-old-price .actual-price.price a {
	color: var(--colorHighlight1);
}
.productbox .old-price {
	font-size: 17px;
	text-decoration: line-through;
	color: #9c9c9c;
	font-weight: 300;
}
.productbox .old-price-box {
	height: 26px;
}
/* .productbox .price-off {
	color: #cc201a;
	font-size: 14px;
	font-weight: 400;
}*/

/* .btn-prbox-add2cart {
	display: flex;
	height: 1.5rem;
	align-items: center;
	gap: 0.375rem;
	border-radius: 1.5rem;
	background-color: rgb(255, 255, 255);
    color: var(--colorPurple);
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	text-transform: capitalize;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
	transition-property: all;
	transition-duration: 300ms;
	transition-timing-function: linear;
}
.btn-prbox-add2cart:hover {
	background-color: var(--colorPurple);
    color: white;
} */

/* productbox tiny */
.productbox.tiny .prbox-details-wrapper {
	padding: 10px;
}
.productbox.tiny .btn-add-to-cart-prbox {
	width: 30px;
	height: 30px;
	border-radius: 2px;
}
.productbox.tiny .btn-add-to-cart-prbox .material-icons-outlined {
	font-size: 21px;
}
.productbox.tiny .badge-price-off {
	top: 12px;
	font-size: 13px;
	padding: 1px 4px;
}
.productbox.tiny .pic-wrapper .btn-wishlist {
	width: 28px;
	height: 28px;
}
.productbox.tiny .pic-wrapper .btn-wishlist .bi {
	font-size: 16px;
}

.productbox.tiny .prbox-title {
	font-size: 14px;
	font-weight: 500;
}
.productbox.tiny .prbox-desc {
	font-size: 13px;
	height: 42px;
}

.productbox.tiny .actual-price {
	font-size: 16px;
}
.productbox.tiny .old-price {
	font-size: 14px;
}
/* .productbox.tiny .btn-prbox-add2cart {
	height: 1.3rem;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	font-size: 0.7rem;
} */
.productbox.tiny.productbox-style-horizontal .pic-wrapper {
	width: 100px;
	flex: 0 0 100px;
	max-width: 33%;
	height: 132px;
}

/* ===========================================================================
Slick
============================================================================*/
@media(min-width: 1200px) {
    .slick-common-styles {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*arrows*/
.slick-common-styles .slick-prev, .slick-common-styles .slick-next {
	background-image: none;
	background-color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 1px 1px 10px #d2d2d2;
	border: 1px solid #f9f9f9;
	transition: all 0.5s ease;
}

.slick-common-styles .slick-prev:hover,
.slick-common-styles .slick-next:hover {
    background-color: #000;
    box-shadow: 0 0 15px #444;
    border: 1px solid #000;
}

.slick-common-styles .slick-prev:hover::before,
.slick-common-styles .slick-next:hover::before {
    color: white;
}

html[lang="en"] .slick-common-styles .slick-next {
    right: 0;
    transform: translate(15px, -50%);
}

html[lang="en"] .slick-common-styles .slick-prev {
    left: 0;
    transform: translate(-15px, -50%);
}

html[lang="ar"] .slick-common-styles .slick-next {
    right: auto;
    left: 0;
    transform: translate(-15px, -50%);
}

html[lang="ar"] .slick-common-styles .slick-prev {
    left: auto;
    right: 0;
    transform: translate(15px, -50%);
}

.slick-common-styles .slick-prev::before,
.slick-common-styles .slick-next::before {
    font-family: 'bootstrap-icons';
    font-size: 21px;
    line-height: 1;
    opacity: 1;
    color: #575757;
    transition: all 0.5 ease;
}

html[lang="ar"] .slick-common-styles .slick-prev::before,
html[lang="ar"] .slick-common-styles .slick-next::before {
    transform: rotate(180deg);
}

.slick-common-styles .slick-next::before {
    content: "\F285";
}

.slick-common-styles .slick-prev::before {
    content: "\F284";
}

.slick-common-styles .slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

/* dots */
.slick-common-styles .slick-dots li button::before {
    font-size: 45px;
}


/* Responsive Adjustments */
/*
@media (pointer: coarse) {

    .slick-common-styles {
        padding-bottom: 55px;
    }
    .slick-common-styles .slick-prev,
    .slick-common-styles .slick-next {
        width: 40px;
        height: 40px;
        top: calc(100% - 42px) !important; !* substruct (height + 2px) *!
        left: 50% !important;
    }

    html[lang="en"] .slick-common-styles .slick-prev {
        transform: translateX(-60%);
    }
    html[lang="en"] .slick-common-styles .slick-next {
        transform: translateX(60%);
    }
    html[lang="ar"] .slick-common-styles .slick-prev {
        transform: translateX(60%);
        right: unset;
    }
    html[lang="ar"] .slick-common-styles .slick-next {
        transform: translateX(-60%);
    }

    .slick-common-styles .slick-prev::before,
    .slick-common-styles .slick-next::before {
        font-size: 17px;
    }

}
*/

@media(min-width: 1600px) {
    .slick-common-config-for-products .each-item {
        flex: 0 0 20%;
        max-width: 20% !important;
    }
}

/* for touch devices, no slick, use browser overflow styles */
@media (pointer: coarse) {
    .no-slider-on-touch-device {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .no-slider-on-touch-device::-webkit-scrollbar {
        display: none;
    }
    .no-slider-on-touch-device::-webkit-scrollbar-track {
        display: none;
    }
    .no-slider-on-touch-device::-webkit-scrollbar-thumb {
        display: none;
    }
    .no-slider-on-touch-device::-webkit-scrollbar-thumb:hover {
        display: none;
    }
}

@media (pointer: coarse) and (max-width: 1199.98px) {
    .slick-common-config-for-products .each-item {
        flex: 0 0 300px;
        max-width: 300px;
    }
    .row-catbox2 .each-item {
        flex: 0 0 350px;
        max-width: 350px;
    }
}
@media (pointer: coarse) and (max-width: 767.98px) {
    .slick-common-config-for-products .each-item {
        flex: 0 0 250px;
        max-width: 250px;
    }
    .row-catbox2 .each-item {
        flex: 0 0 300px;
        max-width: 300px;
    }
}
@media (pointer: coarse) and (max-width: 499.98px) {
    .slick-common-config-for-products .each-item {
        flex: 0 0 200px;
        max-width: 200px;
    }
    .row-catbox2 .each-item {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

/* ===========================================================================
Image Tiles
============================================================================*/
.tiles-5 img {
	border: 12px solid transparent;
	border-radius: 16px;
}
