:root {
    --app-border-color: #dfe7ff;
    --app-blue: #0d6efd;
    --app-red: #db3646;
    --app-orange: #ffc107;
    --app-green: #0ed087;
    --app-rating: #faca51;
    --app-shodow-x: 0 3px 10px -2px rgba(67, 90, 176, 0.2);
    --app-shodow-x2: 0 6px 50px -2px rgba(67, 90, 176, 0.3);
    --app-shadow-border: 0 0px 1px #bcc8fb;
    --app-shadow-border-active: 0 -1px 2px var(--primary, var(--app-primary)), 0 10px 30px -25px var(--primary, var(--app-primary));
}
body, p, li {
    color: var(--text-color, var(--app-text-color));
}
.text-primary {
    color: var(--primary, var(--app-primary));
}
.text-heading-color {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.text-color {
    color: var(--text-color, var(--app-text-color)) !important;
}
.text-red {
    color: var(--app-red);
}
.text-orange {
    color: var(--app-orange);
}
.text-green {
    color: var(--app-green);
}
.text-gray {
    color: var(--app-text-light);
}
.form-control {
    border-radius: 2px !important;
}
strong {
    font-weight: 500 !important;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
label {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.relative {
    position: relative;
    z-index: 1;
}
.checkbox {
    display: inline-block;
}
.checkbox, .checkbox > span {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.checkbox > input {
    opacity: 0;
    position: absolute;
}
.checkbox > span {
    position: relative;
    z-index: 1;
    padding-left: 30px;
    color: var(--text-color, var(--app-text-color));
    display: inline-block;
    font-weight: 400;
    padding-top: 2px;
}
.text-bold {
    font-weight: 500;
}
.text-bold.checkbox > span {
    font-weight: 600;
}
.checkbox > span::after, .checkbox > span::before {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background-color: #EAEAFD;
    z-index: -2;
}
.checkbox > span::before {
	z-index: -1;
	content: "\f00c";
	font-family: "Font Awesome 6 Pro";
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: var(--primary, var(--app-primary));
    opacity: 0;
    background-color: transparent;
}
.checkbox > input:checked + span::before {
    opacity: 1;
}
.checkbox-x, .checkbox-y {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.checkbox-x.checkbox-pading .checkbox, .checkbox-y.checkbox-pading .checkbox {
    padding-left: 20px;
}
.checkbox-y {
    flex-direction: column;
    gap: 2px;
}
.mix-blend-invert .checkbox > span::after {
    background-color: #FFF !important;
}

.alert {
    border: none !important;
    border-radius: 2px !important;
    font-size: 14px;
}
.alert-success {
	background-color: #d9ffd8;
	color: #10c245;	
}
.alert-danger {
	background-color: #ffe9e9;
	color: #c21010 !important;
}
.alert strong {
    color: inherit !important;
}
.alert-dismissible .btn-close {
	top: 3px;
	font-size: 11px;
    box-shadow: none !important;    
    outline: none !important;
}

.store-section:has(+ .store-section) {
    margin-bottom: 20px;
}
.store-attributes {
    list-style: none;
    margin: 0 0 5px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.store-attributes .store-attribute-title {
	flex-basis: 100%;
}
.store-attributes .store-attribute-title > span {
    color: var(--text-color, var(--app-text-color));
    font-weight: 300;
}
.store-attributes > li:not(.store-attribute-title) {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0px 3px 2px;
	white-space: nowrap;
	font-size: 13px;
	line-height: 13px;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	position: relative;
	background-color: var(--attribute-color, #FFF);
	color: var(--text-heading-color, var(--app-text-heading-color));
	margin-left: 5px;
	font-weight: 600;
	border-radius: 50%;
}
.store-attributes > li:not(.store-attribute-title)::after {
    position: absolute;
    content: "";
    inset: -4px;
    z-index: 1;
    border: 1px solid var(--app-border-color);
    border-radius: 2px;	
}
.store-attributes > li:not(.store-attribute-title):hover::after,
.store-attributes > li:not(.store-attribute-title).active::after {
    border-color: var(--primary, var(--app-primary));    
}

.store-attribute-title {
	font-size: 18px;
	color: var(--text-heading-color, var(--app-text-heading-color));
	font-weight: 500;
}

.store-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.store-gallery-thumbler .slick-custom-arrow {
    width: calc(100% + 10px);
    margin-left: -10px;
}
.slick-custom-arrow .pro-thumb {
    padding-left: 10px;
}
.slick-custom-arrow .slick-prev, .slick-custom-arrow .slick-next {
    --custom-arrow-size: 40px;
    width: var(--custom-arrow-size);
    height: var(--custom-arrow-size);
	z-index: 10;
}
.slick-custom-arrow .slick-prev::before, .slick-custom-arrow .slick-next::before {
    width: var(--custom-arrow-size);
    height: var(--custom-arrow-size);
	background-color: #fff !important;
	display: flex;
	justify-content: center;
	align-items: center;
	inset: 0;
	border-radius: 5px;
	box-shadow: 0 5px 50px rgba(77, 102, 185, 0.58);
	opacity: 0 !important;
	content: "\f060";
    color: var(--text-heading-color, var(--app-text-heading-color)) !important;
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
}
.slick-custom-arrow:hover .slick-arrow::before {
    opacity: 1 !important;
}
.slick-custom-arrow .slick-arrow:active {
    margin-top: 2px;
}
.slick-custom-arrow .slick-next::before {
    content: "\f061";
}
.slick-custom-arrow .slick-prev {
	left: -10px;
}
.slick-custom-arrow .slick-next {
	right: -20px;
}
.slick-track {
    margin-left: 0 !important;
}
.zoomWindow {
    border: none !important;
}
.ZoomContainer {
    margin-left: 10px;
}
.zoomLens {
    border: none !important;
}
.productZoom {
    position: relative;
    z-index: 1;
}
.pro-thumb {
    position: relative;
    z-index: 1;
    cursor: pointer;
    aspect-ratio: 1;
}
.pro-thumb.active::after {
    position: absolute;
    content: "";
    inset: 5px 5px 5px 15px;
    border: 2px dotted var(--primary, var(--app-primary));
    z-index: 2;
    cursor: pointer;
}
.pro-thumb img {
    width: 100%;
    min-height: 100%;
    background-color: #f4f5ff;
}

.addtocart-qty {
	max-width: 100px;
}
.addtocart-qty .form-control {
	padding-right: 35px;
    text-align: center;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.store-addtocart .addtocart-qty {
    position: relative;
}
.store-addtocart .addtocart-control {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.addtocart-control .addtocart-nav {
    position: relative;
	padding: 0;
	margin: 0;
	line-height: 1;
	width: 30px;
	flex: 1;
	border: 1px solid #ced4da;
	background-color: #fff;
    outline: none !important;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.addtocart-nav.addtocart-plus {
    border-top-right-radius: 2px;
    margin-bottom: -1px;
}
.addtocart-nav.addtocart-minus {
    font-size: 12px;
    border-bottom-right-radius: 2px;
}
.addtocart-control .addtocart-nav:active {    
    top: 1px;
}
.store-addtocart {
	display: flex;
	gap: 20px 10px;
	flex-wrap: wrap;
}
.addtocart-button i {
    font-size: 16px;
}


.addtocart-x {
    --border-color: var(--primary, var(--app-primary));
    --border-width: 1px;
}
.addtocart-x .addtocart-qty {
    max-width: 130px;
    min-width: 130px;
	width: 100%;
	position: relative;
}
.addtocart-x [attribute-name="product-qty"] {
	position: absolute;
	z-index: 3;
	padding-inline: 10px;
	width: calc(100% - 76px);
	margin-left: 38px;
	height: 100%;
	border-color: var(--border-color);
	border-width: var(--border-width);
    border-radius: 0 !important;
    color: var(--border-color);
}
.addtocart-x .addtocart-control {
	position: relative;
	z-index: 1;	
	flex-direction: row;
	align-items: stretch;
    min-height: 39px;
}
.addtocart-x .addtocart-nav {
    width: 40px;
    flex: initial;
    border-color: var(--border-color);
    border-width: var(--border-width);
    color: var(--border-color);
}
.addtocart-x .addtocart-nav.addtocart-plus {
    margin-bottom: 0;
    order: 2;
    border-radius: 0 2px 2px 0 !important;
}
.addtocart-x .addtocart-nav.addtocart-minus {
    border-radius: 2px 0 0 2px !important;
}

.store-pirce {
    display: flex;
    gap: 10px;
    font-size: 22px;
    color: var(--text-heading-color, var(--app-text-heading-color));
    font-weight: 500;
    line-height: 1;
    align-items: baseline;
}
.store-pirce:has(.has-varient-price) {
    gap: 5px;
}
.store-pirce.price-y {
    flex-direction: column;
}
.store-pirce:not(.currency-right) .store-regular-price::before,
.store-pirce:not(.currency-right) .store-sale-price:not([style*="none"])::before,
.currency-right .store-regular-price::after,
.currency-right .store-sale-price:not([style*="none"])::after,
.currency:not(.currency-right)::before, .currency.currency-right::after {
    position: relative;
    content: attr(store-currency);
    font-family: Arial, Helvetica, sans-serif;
    padding-right: 2px;
    font-size: 80%;
    font-weight: 400;
}
.currency-right .store-regular-price::after,
.currency-right .store-sale-price:not([style*="none"])::after {
    padding-right: 0;
    padding-left: 2px;
}
.store-sale-price:not([style*="none"]) + .store-regular-price {
	font-size: 70%;
	opacity: .7;
    position: relative;
}
.store-pirce:not(.currency-right) .store-sale-price:not([style*="none"]) + .store-regular-price::after,
.currency-right .store-sale-price:not([style*="none"]) + .store-regular-price::before {
	position: absolute;
	content: "";
	border-top: 1px solid red;
	left: -2px;
	right: -5px;
	top: 0;
	z-index: 2;
	margin-block: auto;
	bottom: 0;
	height: 1px;
	transform: rotate(-7deg);
	opacity: 1;
}
.currency.currency-right::after {
    padding-right: 0;
    padding-left: 2px;
}
[data-currency]::before, .currency-right [data-currency]::after {
    position: relative;
    content: attr(data-currency);
    font-family: Arial, Helvetica, sans-serif;
    padding-right: 2px;
    font-size: 80%;
    font-weight: 400;
}
.currency-right [data-currency]::before {
    padding-right: 0;
    display: none;
}
.currency-right [data-currency]::after {
    padding-left: 2px;
}

.store-sticker {
	--sticker-color: #f73333;
	position: absolute;
	top: 10px;
	right: 10px;
	height: 30px;
	background-color: var( --sticker-color);
	z-index: 5;
	white-space: nowrap;
	display: inline-flex;
	padding: 5px 10px 5px 6px;
	font-size: 14px;
	color: #fff;
	line-height: 1;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	border-radius: 0 2px 2px 0;
	filter: drop-shadow(-6px 2px 0px rgba(0, 0, 0, 0.1));
}
.productZoom .store-sticker {
    top: 20px;
	right: 20px;
}
.store-sticker.sticker-inline {
    position: static;
    margin-left: 30px;
}
.store-sticker::before, .store-sticker::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 20px;
    z-index: -1;
    background-color: var( --sticker-color);
    top: 0;
    right: 100%;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.store-sticker::after {
    background-color: var( --sticker-color);
    top: auto;
    bottom: 0;
    clip-path: polygon(100% 0, 30% 100%, 100% 100%);
}

.form {
    display: block;
}
.form:has(> .column) {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-end;
}
.form.no-wrap:has(> .column) {
	display: flex;
	flex-wrap: nowrap;
}
.form:not(:last-child) {
    margin-bottom: 15px;
}
.form > .column {
	flex: 1;
	flex-basis: 150px;
}
.form label {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.form-group:has(> .column) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px 15px;
    width: 100%;
    flex-wrap: wrap;
}
label:has(+.app-input) {
    margin-bottom: 10px;
}
.input-group {
	flex-wrap: nowrap !important;
}


.store-payment-methods {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 20px;
}
.store-pm-header {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	border-radius: 10px;
	padding: 12px 0 12px 20px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
    box-shadow: var(--app-shadow-border);
}
.store-pm-header:has([type="radio"]:checked) {
    box-shadow: var(--app-shadow-border-active);
}
.pm-header-caption {
	display: flex;
	align-items: center;
	gap: 20px;
    flex: 1;
}
.pm-header-action {
	flex: 0 0 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
    color: var(--text-heading-color, var(--app-text-heading-color));
    position: relative;
}
.pm-header-action:active {
    top: 2px;
}
.pm-header-action i {
	font-size: 12px;
}
.pm-logo {
	flex: 0 0 80px;
	aspect-ratio: 1/.6;
	display: flex;
	justify-content: center;
	align-items: center;	
	border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--app-shadow-border);
}
.pm-identifier {
	position: absolute;
	top: 15px;
	left: -20px;
}
.pm-logo img {
    max-height: 100%;
}
.pm-caption {
	flex: 1;
}
.pm-caption .pm-title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--text-heading-color, var(--app-text-heading-color));
}
.pm-caption p {
	margin: 0;
	color: var(--text-color, var(--app-text-color));
	font-size: .9rem;
}
.store-pm-body {
	color: var(--text-color, var(--app-text-color));
	padding: 20px;
    display: none;
}
.store-pm-body p, [data-label-top] p {
    color: var(--text-color, var(--app-text-color));
}
[data-label-top] {
    color: inherit;
}
.mp-body-title {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
[data-label-top]:has(+ [data-label-top]) {
    margin-bottom: 20px;
}
[data-label-top]::before {
    position: relative;
    content: attr(data-label-top);
    display: inline-block;
    margin-bottom: 10px;  
    font-size: 18px;
    font-weight: 500;  
    text-transform: capitalize;
    color: var(--text-heading-color, var(--app-text-heading-color));
}

.mp-qr {
	max-width: 105px;
}
.pm-header-action i.icon-active {
	font-size: 20px !important;
	color: #10c245;
}

.shipping-charges {
    position: relative;
}
.shipping-charges .loader {
    top: 1px;
}
[align="right"] {
    text-align: right;
}
[align="center"] {
    text-align: center;
}
[align="left"] {
    text-align: left;
}
.store-total-title {
	font-size: 1.2rem;
	font-weight: 500;
}

.store-product-single {
	display: flex;
	align-items: flex-start;
	gap: 15px;
    margin-bottom: 10px;
}
.store-product-single:has(+ .store-product-single) {
	border-bottom: 1px dotted var(--text-heading-color, var(--app-text-heading-color));
	padding-bottom: 10px;
}
.store-product-single .store-p-thumb {
    flex: 0 0 80px;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: var(--app-shadow);
}
.store-product-single .store-p-thumb img {
    width: 100%;
    min-height: 100%;
}
.store-product-single .store-p-title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
    color: var(--text-heading-color, var(--app-text-heading-color));
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}
.store-product-single .store-p-title:hover {
    color: var(--accent, var(--app-accent));
}
.store-product-single .store-p-attributes {
    color: var(--text-color, var(--app-text-color));
    display: flex;
    flex-wrap: wrap;
    gap: 0 6px;
}
.store-product-single .store-p-attributes > span:not(:last-child)::after {
    content: ",";
}


[store-appkey="facebook"] i, [store-appkey="whatsapp"] i {
	font-size: 25px !important;
	margin-left: 0 !important;
	margin-right: 2px;
}
[store-appkey="facebook"] {
    background-color: #0865FD;
    padding-top: 3px;
}
[store-appkey="facebook"]:hover {
    background-color: #0b59d8;
}
[store-appkey="whatsapp"] {
    background-color: #4CC258;
    padding-top: 3px;
}
[store-appkey="whatsapp"]:hover {
    background-color: #2DB340;
}

.store-button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 10px;
}
.store-button-group .app-button {
    margin: 0 !important;
}


.app-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 40px;
}
.app-panel .app-panel-logo {
    max-width: 150px;
}

.app-panel .app-panel-caption h1.app-panel-uc {
    color: var(--primary, var(--app-primary));
	font-size: 5rem;
	line-height: 1;
	margin: 0 0 20px;
	text-shadow: 4px 4px 6px rgba(0,0,0,0.3);
	font-weight: 800;
}
.app-panel .app-panel-caption h3 {
    color: var(--text-heading-color, var(--app-text-heading-color));
	font-size: 2.2rem;
	line-height: 1;
	margin: 0 0 20px;
}
.app-panel .app-panel-caption {
    max-width: 700px;
}
.app-panel .app-panel-caption p {
	font-size: 1rem;
	line-height: 1.5;
    color: var(--text-color, var(--app-text-color));
    margin: 0;
}
.app-panel .app-panel-action {
    display: block;
    padding-top: 40px;
}
.app-panel .app-panel-action {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.info-grid .badge {
    border-radius: 2px !important;
}
.custom-tbl .badge {   
    border-radius: 15px !important;
    padding: 7px 15px;
}
.badge.status-bg-1 {
	background-color: #10c245 !important;
}
.badge.status-bg-2, .badge.status-bg-5, .badge.status-bg-6 {
	background-color: #db3646 !important;
}
.badge.status-bg-3 {
	background-color: #ffc107 !important;
}
.badge.status-bg-4 {
	background-color: #0d6efd !important;
}

.store-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.store-cart-items > li {
	display: flex;
	gap: 20px 30px;		
    position: relative;
    padding-block: 20px;
}
.store-cart-items > li:not(:last-child){
    border-bottom: 1px solid var(--app-border-color);    
}
.store-cart-items > li .store-cart-thumb {
	flex: 0 0 130px;
	aspect-ratio: 1;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}
.store-cart-items > li .store-cart-thumb  img {
    width: 100%;
    min-height: 100%;
}
.store-cart-items > li .store-cart-details {
    flex: 1;
}
.store-cart-items > li .store-cart-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    gap: 10px;
}
.store-cart-title {
	font-size: 18px;
	color: var(--text-heading-color, var(--app-text-heading-color));
	text-decoration: none;
	font-weight: 500;
}
.store-cart-title:hover {
    color: var(--accent, var(--app-accent));
}
.store-cart-items .store-cart-action {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
    justify-content: space-between;
}
.store-cart-price {
	font-size: 18px;
}
.store-cart-price del {
    color: var(--app-text-light);
}
.store-cart-attributes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 1px;
}
.store-cart-attributes > span:not(:last-child, .title)::after {
    position: relative;
    content: "/";
    padding-left: 1px;    
}
.store-cart-attributes > span.title {
    padding-right: 5px;
}
.store-button-invisible {
	padding: 5px 5px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: none;
	background-color: transparent;
    position: relative;
}
.store-button-invisible:active {
    top: 2px;
}
.store-cart-caption {
	display: flex;
	justify-content: space-between;
	/* flex-wrap: wrap; */
    gap: 5px;
}
.store-cart-subtotal-amount {
	font-size: 20px;
	font-weight: 500;
}
.store-cart-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.store-cart-updates {
	justify-content: flex-end;
	gap: 20px !important;
}
.flex-1 {
    flex: 1;
}

.store-addtocart.addtocart-x {
	align-items: center;
}
.store-cart-subtotal {
	white-space: nowrap;
}

.store-total-amount {
	font-size: 24px;
	position: relative;
	font-weight: 500;
}
.store-total-abount i {
    margin-left: 3px;
    font-size: 14px;
}

.store-cart-subtotal {
	display: flex;
	gap: 10px;
    color: var(--text-heading-color, var(--app-text-heading-color));
    text-decoration: none;
}
.store-cart-subtotal:hover {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.store-cart-subtotal .store-cart-icon {
	position: relative;
}
.store-cart-icon .store-cart-count {
	position: absolute;
	top: -10px;
	right: -12px;
	z-index: 2;
	background-color: orange;
    color: #000;
	padding: 2px;
	min-width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	border-radius: 50%;
	font-size: 14px;
}
.cursor {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.10196078431372549);
    border-radius: 5px;
    background-color: #fff;
}
.product-card:hover {
    box-shadow: 0px 12px 12px -6px rgba(0, 0, 0, 0.06);
}
.product-card .product-card-thumb {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    background-color: #f4f7ff;
}
.product-card-sticker {
	position: absolute;
	background-color: red;
	color: #fff;
	padding: 3px 10px;
	top: 10px;
    z-index: 10;
}
.product-card .product-card-thumb img {
    width: 100%;
    min-height: 100%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}
.product-card .product-card-thumb:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}
.product-card .product-card-thumb img[src*="not-found.png"] {
    object-fit: none;
    transform: none !important;
    background-color: var(--app-thumb);
}
.product-card .product-card-caption {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding: 20px 10px;
    align-items: center;
    text-align: center;
}
.product-card .card-title {
	text-decoration: none;
	color: var(--app-text-heading-color, var(--text-heading-color));
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
    flex: 1;
}
.product-card-attributes {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 5px;
}
.product-card-attributes .product-card-reviewer {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.addtocart-button-group {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;    
}
.addtocart-button-group .app-button {
    margin: 0 !important;
    padding-inline: 15px;
}
.paginator:not(.textOnly).pageOnly > nav > div > div:first-child {
    display: none !important;
}
.paginator.pageOnly.center > nav > div {
    justify-content: center !important;
}
.paginator.pageOnly.right > nav > div {
    justify-content: flex-end !important;
}
.paginator.textOnly > nav > div > div:last-child {
    display: none !important;
}
.paginator.textOnly > nav > div > div p {
    margin: 0;
}

.shop-filter-group {
	display: grid;
	gap: 20px;
	box-shadow: 15px 0 35px 0 rgba(179, 187, 213, 0.24);
	padding: 20px 30px 30px 0;
}
.shop-filter-group .shop-filter:not(:last-child) {
    border-bottom: 1px solid var(--app-border-color);
    padding-bottom: 20px;
}
.shop-filter-title {
	margin-bottom: 0;
}
.shop-filter label {
    font-weight: 500;
    cursor: pointer;
}
.shop-filter-box {
	max-height: 250px;
	overflow-y: auto;
}

.shop-filter .app-rating-list {
    color: var(--app-rating);
    display: inline-flex;
}
.shop-filter .app-rating-list .fa-regular.fa-star {
    color: var(--app-border-color);
}

.checkbox > span {
    --checkboxColor: #EAEAFD;
}
.checkbox > span::after {
    background-color: var(--checkboxColor);
}

.relatedPrducts .slick-track, .store-carousels .slick-track {
    display: flex;
}
.relatedPrducts .slick-slide, .store-carousels .slick-slide {
    height: auto;
}
.relatedPrducts .slick-list, .store-carousels .slick-list {
  margin: 0 -7px !important;
}
.relatedPrducts .related-item, .store-carousels .store-carousels-item {
  padding: 0 10px 10px !important;
}
.relatedPrducts .related-item > div, .store-carousels .store-carousels-item > div {
    height: 100%;
}
.slick-arrow.slick-disabled {
	display: none !important;
}
.store-content-title {
	margin-bottom: 20px;
}

.nav.custom-pills {
	--bs-nav-link-padding-x: 0;
	--bs-nav-link-padding-y: 0;
	--bs-nav-link-font-weight: 500;
	--bs-nav-link-color: var(--text-color, var(--app-text-color));
	--bs-nav-link-hover-color: var(--primary, var(--app-primary));
	--bs-nav-link-disabled-color: #6c757d;
    gap: 30px;
    margin-bottom: 20px;
}
.nav-pills.custom-pills {
	--bs-nav-pills-border-radius: 2px;
	--bs-nav-pills-link-active-color: var(--primary, var(--app-primary));
	--bs-nav-pills-link-active-bg: transparent;
}
.nav-pills.custom-pills > .nav-item {
    position: relative;
}
.nav-pills.custom-pills > .nav-item:not(:last-child)::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -15px;
    border: 1px solid var(--app-border-color);
}
.nav-pills.custom-pills > .nav-item > .nav-link {
    font-size: 18px;
}

/********** START RATING ***********/
.pro-ratings {
    display:flex;
    gap:30px;
    padding-block:30px;
}
.rating-details {
    flex:0 0 230px;
}
.pro-rating-counter {
	display: grid;
	gap: 5px;
}
.pro-rating-count-item {
    display:flex;
    align-items:center;
    gap:20px;
}
.pro-rating-list {
    display:flex;
    font-size:30px;
    gap:5px;
    color:#faca51;
}
.store-review-section .fa-regular.fa-star {
	color: var(--app-border-color);
}
.pro-rating-list.list-small {
    font-size:16px;
    white-space:nowrap;
    align-items:center;
}
.pro-rating-progress {
    flex:0 0 140px;
    height:12px;
    border-radius:0;
}
.pro-rating-progress .progress-bar {
    background-color:var(--app-rating);
}
.rating-details {
    display:flex;
    flex-direction:column;
    gap:5px;
}
.pro-rate {
    font-size:48px;
    line-height:40px;
    font-weight:400;
    color:#000;
}
.pro-rate span {
    font-size:60%;
    opacity:.5;
}
.rating-details p {
    opacity:.6;
    font-size:14px;
    margin: 10px 0 0;
}
.ar-middle-bar {
    padding:10px 15px;
    border-top:1px solid #eff0f5;
    border-bottom:1px solid #eff0f5;
}
.store-review-heading {
    border-top: 1px solid var(--app-border-color);
    border-bottom: 1px solid var(--app-border-color);
}
.store-review-heading {
	border-top: 1px solid var(--app-border-color);
	border-bottom: 1px solid var(--app-border-color);
	padding-block: 10px;
	margin-bottom: 20px;
}

.store-rv-panel {
	display: grid;
	gap: 20px;
}
.store-rv-title {
    margin: 0;
}
.store-rv-item {
	display: flex;
	gap: 20px;
    align-items: flex-start;
}
.store-rv-item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--app-border-color);
}
.store-rv-thumb {
	flex: 0 0 70px;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 50%;
}
.store-rv-comment {
	flex: 1;
}
.store-rv-thumb img {
    width: 100%;
    min-height: 100%;
    background-color: var(--app-thumb);
}
.store-rv-thumb img[avatar="app"] {
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.store-rv-content {
	display: grid;
	gap: 2px;
}
.store-rv-content p {
    margin-bottom: 0;
}
.store-rv-date {
    color: var(--app-text-light);
}
.store-rv-commentline {
	margin-top: 10px;
}
.store-rv-thumbnails {
	margin-top: 20px;
}
.store-rv-thumbnails {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 20px;
}
.store-rv-thumbnails > a {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	box-shadow: var(--app-shadow);
	border: 8px solid #fff;
}
.store-rv-thumbnails > a img {
    min-height: 100%;
}
/********** END RATING ***********/

.store-product-review {
	display: flex;
	gap: 5px;
	align-items: baseline;
}
.store-attributes-list {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.store-attributes-list > span:not(:last-child)::after {
    content: ",";
}
.store-attributes-list > span.title {
    font-weight: 500;
}
.store-attributes-list > span.title::after {
    content: ":";    
}
.store-product-brand a {
    text-decoration: none;
}

.store-carousels-group {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.store-carousels-section {
    width: 100%;
    box-sizing: border-box;
}
.store-carousels-group > .store-carousels-section:not(:last-child) {
    margin-bottom: 30px;
}
.store-carousels-section .store-carousels-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}
.store-carousels-heading .store-carousels-caption .store-carousels-title {
    margin-bottom: 0;
    font-size: clamp(1.2rem, 4.5vw, 2rem);
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.store-carousels-heading .store-carousels-caption p {
    margin: 5px 0 0;
    color: var(--text-color, var(--app-text-color));
}
.store-see-all-button {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-heading-color, var(--app-text-heading-color));
    white-space: nowrap;
}
.store-see-all-button:hover {
    color: var(--primary, var(--app-primary));
}

.app-tabs-payment {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    border-bottom: none !important;
    background-image: linear-gradient(#fff, var(--app-border-color));
    box-shadow: 0 -7px 5px -5px rgba(0, 0, 0, 0.1) inset;
}
.app-tabs-payment .nav-item {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.app-tabs-payment .nav-link {
	padding: 0 20px !important;
	display: flex;
	justify-content: center;
	align-items: center;
    border: none !important;
    border-radius: 2px !important;
    flex-direction: column;
    gap: 10px;  
    background-color: transparent !important;  
}
.app-tabs-payment .nav-item:has(.nav-link.active) {
    background-color: #fff;
}
.app-tabs-payment .nav-item:not(:last-child) {
    border-right: 1px solid #fff;
}
.nav-item-icon {
	width: 60px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-item-caption {
    text-align: center;
}
.app-tabs-payment + .tab-content {
    padding-top: 30px;
}

.app-list-view li {
    display: block;
    position: relative;
}
.app-list-view.app-list-x {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.app-list-view.app-list-x.app-list-center {
    justify-content: center;
}
.app-list-view.app-list-icon li {
    padding-left: 22px;
}
.app-list-view.app-list-icon li:not(:last-child) {
    margin-bottom: 8px;
}
.app-list-view.app-list-icon li::before {
	position: absolute;
	content: "\f058";
	font-family: "FontAwesome";
	top: 0;
	left: -2px;
	width: 20px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--app-green);
}

.store-thank-info {
	display: flex;
	align-items: center;
	min-height: 400px;
	gap: 60px;
	padding: 50px;
}
.store-thank-info .store-thank-caption {
    flex: 1;
}
.store-thank-info .store-thank-thumb {
    width: 200px;
}
.store-thank-caption .title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--app-green);
}
.store-thank-sales-info {
	padding: 60px;
	box-shadow: 0px 0px 1px 0px rgba(101, 118, 200, 0.3);
	border-radius: 9px;
    background-color: #fff;
}


.store-filterbar {
    position: relative;
}
.store-filterbar-navs {
	display: none;
	align-items: center;
	border-top: 1px solid var(--app-border-color);
	border-bottom: 1px solid var(--app-border-color);
    margin-bottom: 20px;
}
.store-filterbar-navs > div {
	flex: 1;
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
	padding-block: 10px;
	cursor: pointer;
}
.store-filterbar-navs > div:nth-child(2) {
    border-left: 1px solid var(--app-border-color);
}
.store-filbar-close {
	font-size: 24px;
	padding: 0;
	line-height: 24px;
	display: none;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	border: none;
	color: var(--app-red);
	position: absolute;
	top: 15px;
	right: 20px;
    cursor: pointer;
}
.store-filbar-close:active {
    top: 16px;
}

/********** START SEARCH BAR **********/
.store-searchbar {
    --serachbar-border-radius: 20px;
    --searchbar-background: #fff;
    --searchbar-text-color: var(--text-heading-color, var(--app-text-heading-color));
    position: relative;
    width: 100%;
    z-index: 100;    
}
.store-searchbar > * {
    position: relative;
    z-index: 2;
}
.store-searchbar .store-searchbar-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 0 1px 0px #9faff0;
	padding: 5px 16px 5px 10px;
	gap: 10px;
    border-radius: var(--serachbar-border-radius);
    background-color: var(--searchbar-background);
}
.store-searchbar.focused .store-searchbar-panel {
    box-shadow: none;
    padding: 5px 0;
}

.store-searchbar .store-searchbar-inputbox {
	flex: 1;
    position: relative;
}
.store-searchbar.focused .store-searchbar-inputbox::before {
	position: absolute;
	content: "\f002";
	width: 18px;
	inset: 0 auto 0 0;
	font-family: 'Font Awesome 6 Pro';
	font-size: 14px;
	display: flex;
	align-items: center;
	opacity: .5;
}
.store-searchbar .store-searchbar-input {
	width: 100%;
	height: 32px;
	font-size: 16px;
	background-color: transparent;
	border: none;
	outline: none !important;
    padding-left: 12px;
}
.store-searchbar-input.search-small {
    height: 28px;
}

.store-searchbar.focused .store-searchbar-input {
    padding-left: 24px;
}
.store-searchbar .store-searchbar-action {
	display: flex;
    gap: 11px;
}
.store-searchbar .store-searchbar-button {
	background-color: transparent;
	width: auto;
	padding: 0;
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	cursor: pointer !important;
    font-size: 16px;
    color: var(--searchbar-text-color);
}
.store-searchbar .store-searchbar-button:has(+ .store-searchbar-button) {
    border-right: 1px solid var(--app-border-color);
    padding-right: 10px;
}
.store-searchbar .store-searchbar-suggestions {    
    position: absolute;
    padding: 18px 0 0;
    margin: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    list-style: none;
    z-index: 0;  
    display: none;  
}
.store-searchbar.focused .store-searchbar-suggestions {
    display: block;
}
.store-searchbar .store-searchbar-suggestions::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 8px;
    z-index: 5;
    height: 1px;
    background-color: var(--app-border-color);
}
.store-searchbar .store-searchbar-suggestions::after {
    position: absolute;
    content: "";
    background-color: var(--searchbar-background);
    inset: -56px -20px -20px -20px;
    z-index: 1;
    border-radius: var(--serachbar-border-radius);
    box-shadow: 0 -1px 11px -6px rgba(64,60,67,.24), 0 9px 8px -3px rgba(64,60,67,.24),8px 0 8px -7px rgba(64,60,67,.24),-8px 0 8px -7px rgba(64,60,67,.24);
}
.store-searchbar .store-searchbar-suggestions > li {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 0 5px 24px;
    cursor: pointer;
}
.store-searchbar .store-searchbar-suggestions > li::before {
	position: absolute;
	content: "\f002";
	width: 18px;
	inset: 16px 0 0 0;
	font-family: 'Font Awesome 6 Pro';
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	opacity: .5;
}
.store-searchbar .store-searchbar-suggestions > li:hover::after {
    position: absolute;
    content: "";
    inset: 0 -20px 0;
    z-index: -1;
    background-color: #F3F5F6;
}
.store-searchbar .store-searchbar-product {
	display: flex;
	width: 100%;
	gap: 20px;
    align-items: flex-start;
}
.store-searchbar .store-searchbar-thumb {
	flex: 0 0 43px;
	aspect-ratio: 1;
	overflow: hidden;
    border-radius: 10px;
    background-color: var(--app-thumb);
}
.store-searchbar .store-searchbar-thumb img {
    min-height: 100%;
}
.store-searchbar .store-searchbar-content {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}
.store-searchbar .store-searchbar-caption {
	flex: 1;
}
.store-searchbar .store-searchbar-title {
	font-size: 16px;
	margin-bottom: 3px;
    color: var(--searchbar-text-color);
}
.store-searchbar .store-searchbar-text {
	margin-bottom: 0;
}
.store-searchbar .store-searchbar-price {
	display: flex;
	flex-direction: column;
	white-space: nowrap;
    text-align: right;
}
.store-searchbar .store-searchbar-price strong {
    color: var(--searchbar-text-color);
}
/********** END SEARCH BAR **********/

.store-category-grid {
    --category-grid: 6;
    display: grid;
    grid-template-columns: repeat(var(--category-grid), 1fr);
    gap: 20px;
}
.store-ct-item {
    display: block;
    background-color: #fff;
    box-shadow: 0px 3px 30px 0px rgba(74, 104, 147, 0.12);
    padding: 20px;
    text-decoration: none;
    color: var(--text-heading-color, var(--app-text-heading-color));
    border-radius: 2px;
}
.store-ct-item:hover {
    color: var(--primary, var(--app-primary));
    box-shadow: var(--app-shodow-x2);
}
.store-ct-thumb {
	width: 80px;
	aspect-ratio: 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.store-ct-caption {
    padding-top: 15px;
    text-align: center;
}

.store-feature-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.store-feature-item {
	flex: 1;
	display: flex;
    flex-basis: 260px;
	gap: 10px;
	align-items: center;
	text-decoration: none;
	color: var(--primary, var(--app-primary)) !important;
	background-color: #fff;
	box-shadow: 0px 3px 30px 0px rgba(74, 104, 147, 0.12);
	padding: 15px 20px;
    border-radius: 2px;
}
.store-feature-item[href="https://"] {
    cursor: auto;
}
.store-feature-thumb {
	flex: 0 0 48px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 23px;
	border: 1px solid var(--primary, var(--app-primary));
	border-radius: 50%;
}
.store-feature-title {
	font-size: 16px;
	margin-bottom: 0;
}
.store-feature-caption p {
	margin-bottom: 0;
	line-height: 1.2;
}
.store-brand-carousel .store-ct-item {
    box-shadow: 0 0 1px rgba(144, 174, 230, 0.5) !important;
    border-radius: 20px;
}
.store-brand-carousel .store-carousels-item {
	padding: 10px 10px 10px !important;
}
.store-brand-carousel .store-ct-thumb {
	width: auto;
	aspect-ratio: 1/.5;
}
.store-brand-carousel .store-ct-thumb > img {
	max-height: 100%;
}

.store-shadow-box-right {
	box-shadow: 61px 10px 70px -17px rgba(183, 186, 212, 0.5);
	padding: 50px 50px 50px 0;
	margin-right: 20px;
}

.store-box-bordered {
	box-shadow: 0 0 2px 0 rgba(183, 186, 212, 0.5);
	padding: 30px;
	border-radius: 20px;
}

.app-area-shop, .app-area-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.app-area-shop .app-shop-filter {
    flex: 0 0 300px;
}
.app-area-content .app-content-summary {
    flex: 0 0 440px;
}
.app-area-shop .app-shop-content, .app-area-content .app-content {
    flex: 1;
}
.page-content-cart .app-content,
.app-area-content .app-content-summary,
.app-content-card {
	box-shadow: var(--app-shadow);
	padding: 30px;
}
.app-content-card:has(+ .app-content-card) {
    margin-bottom: 30px;
}



.app-page-content {
	min-height: 300px;
}
.app-content-title {
    font-size: clamp(1.2rem, 4.5vw, 1.4rem);
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.store-bs-address {
    font-size: clamp(1.1rem, 4.5vw, 1.2rem);
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.store-product-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    color: var(--text-heading-color, var(--app-text-heading-color));
}


.product-card .card-title,
.product-card,
.store-cart-title,
.store-filterbar,
.store-ct-item,
[store-appkey="facebook"], [store-appkey="whatsapp"],
.store-attributes > li:not(.store-attribute-title)::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

@media(max-width:1024px){
    .store-carousels, .relatedPrducts {
        overflow: auto;
        display: flex;
        gap: 20px;
    }
    .store-carousels .store-carousels-item, .relatedPrducts .related-item {
        flex: 0 0 190px;
        padding: 0 0 20px !important;
    }
    .store-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media(max-width:992px){
    .store-filterbar {
        position: fixed;
        left: -450px;
        top: 0;
        background: #fff;
        z-index: 1000;
        width: 320px;
        height: 100dvh;
        overflow-x: hidden;
        overflow-y: auto;
        box-shadow: 20px 0 50px 0 rgba(0, 0, 0, 0.3);
    }
    .shop-filter-group {
        padding-left: 30px;
    }
    .store-filterbar-navs,
    .store-filbar-close {
        display: flex;
    }
    .app-area-shop, .app-area-content {
        flex-wrap: wrap;
        gap: 0;
    }
    .app-area-content {
        gap: 30px;
    }
    .app-area-shop .app-shop-filter, .app-area-content .app-content-summary {
        flex: 0 0 100%;
    }
}
@media(max-width:991px){
    .store-shadow-box-right {
        padding: 0;
        box-shadow: none;
        margin-right: 0;
    }
    .store-box-bordered {
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }    
}

@media(max-width: 575px) {     
    .slick-custom-arrow .slick-prev {
        left: 5px;
    } 
    .slick-custom-arrow .slick-next {
        right: -5px;
    }
}

@media(max-width:768px){
    .slick-custom-arrow .slick-arrow::before {
        opacity: 1 !important;
    }
    .store-cart-items > li {
        align-items: flex-start;
    }
    .store-cart-items > li .store-cart-thumb {
        flex: 0 0 80px;
    }
    .store-cart-updates {
        justify-content: flex-start;
    }
    .store-product-reviews .pro-ratings {
        flex-direction: column;
    }
    .store-product-reviews .pro-ratings > div {
        flex: auto;
    }    
    .store-rv-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    .store-thank-info {
        flex-direction: column;
        padding: 20px;
    }
    .store-thank-sales-info {
        padding: 20px;
        margin-top: 20px;
    }
    .store-thank-info .store-thank-thumb {
        width: 100px;
    }
    .store-thank-caption .title {
        font-size: 1.2rem;
    }
    .page-content-cart .app-content, .app-area-content .app-content-summary {
        padding: 20px;
    }
}
@media(max-width:475px){
    .store-carousels .store-carousels-item, .relatedPrducts .related-item {
        flex: 0 0 155px;
    }
    .store-carousels .addtocart-button-group .app-button,
    .relatedPrducts .addtocart-button-group .app-button {
        font-size: 11px;
    }    
}
@media(max-width:360px){
    .store-product-reviews .pro-ratings .pro-rating-progress {
        flex: 0 0 100px;
    }
    .store-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}