



/* ==========================================================================
	Base styles: opinionated defaults
	========================================================================== */
:root {
	--bs-purple: #3d1154;
	--alpha-color: #3d1154;
	--bravo-color: #eccf88;
	--swiper-theme-color: var(--bravo-color);
}

::-webkit-scrollbar {
	height: 0.5rem;
	width: 0.5rem;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: var(--bravo-color);
}

* {
	user-select: none;
}


html,
body {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  max-width: 100vw;
}

body {
	background-color: #FFFFFF;
	font-size: 1em;
	line-height: 1em;
	font-family: 'Kumbh Sans', sans-serif;
}

.bg-purple-pattern {
	background-color: var(--alpha-color);
	background-image: url('../images/purple-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}
.font-alpha {
	font-size: 1em;
	font-family: 'Cinzel', serif;
}

.font-bravo {
	font-size: 1em;
	font-family: 'Cinzel', serif;
}


.box-style-1 {
	background-color: #1f072c;
    box-shadow: 0 0 2rem  var(--bravo-color);
}

.modal-backdrop.show {
    opacity: 1;
	background-color: rgba(0,0,0,0.5);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
}


.bg-alpha {
	background-color: var(--alpha-color);
}
.bg-bravo {
	background-color: var(--bravo-color);
}

.text-bravo {
	color: var(--bravo-color);
}

.bg-shadow-left {
	background-image: url('../images/bg-shadow-left.jpg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom left;
}

.bg-golden 
{
	background-color: var(--bravo-color);
	background-image: url('../images/golden-gradient.png');
	background-repeat: repeat-y;
	background-size: contain;
}

.form-check-input:checked {
	background-color: var(--bravo-color);
    border-color: var(--bravo-color);
}


.btn-about-us {
	position: absolute;
    background: var(--bravo-color);
    font-weight: 600;
    font-size: 18px;
    margin: 20px;
    left: 0;
}

.btn-back-to-home {
	position: absolute;
    margin: 20px;
    left: 0;
	cursor: pointer;
}


/* =============================================================
CART
================================================================ */
.mz-cart {
	position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
	background-color: #FFFFFF;
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease 0s;
    transform: translate(150%,0);
}
.mz-cart .cart-wrapper {
	border-left: 3px solid var(--bravo-color);
}
.mz-cart .cart-wrapper .cart-items {
	height: 66vh;
    overflow-y: auto;
}
.mz-cart .cart-wrapper .cart-items.empty {
	background: url(../images/empty.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 75%;
	opacity: 0.4;
}

.mz-cart .checkout-wrapper {
	display:none;
}
.mz-cart.show-cart {
	transform: translate(66.66666667%,0);
}
.mz-cart.show-checkout {
	transform: translate(0,0);
}
.mz-cart.show-checkout .checkout-wrapper {
	display:block !important;
}
.mz-cart.show-place-order .cart-wrapper {
	display:none !important;
}
.mz-cart.show-place-order .checkout-wrapper {
	width:100% !important;
}
.order-placed-details {
	position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: var(--alpha-color);
	border:10px solid var(--bravo-color);
}
.order-placed-details .order-id {
	background: var(--bravo-color);
	padding: 1rem 0;
	display: inline-block;
	margin: 1rem 0;
	color: #000000;
	font-size: 140px;
	font-weight: 300;
	line-height: 160px;
}

.order-placed-details .order-id:before {
    background: linear-gradient(-45deg, var(--bravo-color) 16px, transparent 0), linear-gradient(45deg, var(--bravo-color) 16px, transparent 0);
    background-repeat: repeat-x;
    background-size: 32px 32px;
    content: " ";
    display: block;
    /* position: absolute; */
    margin-top: -46px;
    /* left: 0px; */
    width: 100%;
    height: 32px;
    margin-bottom: 0;
}
.order-placed-details .order-id:after {
    background: linear-gradient(45deg, var(--alpha-color) 16px, transparent 0), linear-gradient(-45deg, var(--alpha-color) 16px, transparent 0);
    background-repeat: repeat-x;
    background-size: 32px 32px;
    content: " ";
    display: block;
    width: 100%;
    height: 32px;
    margin-bottom: -21px;
}

.error-text {
	margin: 0;
	padding:0 0.75rem;
    font-size: 19px;
    background: rgb(255 0 0 / 27%);
    border-left: 5px solid red;
	color: #FFFFFF;
}
.form-control {
	font-size: 28px;
}
.form-floating>.form-control, 
.form-floating>.form-select {
    height: calc(3.5rem + 12px);
}




.cart-button-container .cart-icon .quantity {
	position: absolute;
    background: var(--bravo-color);
    width: 30px;
    height: 25px;
    font-size: 16px;
    line-height: 22px;
    border-radius: 50px;
    text-align: center;
    margin: 10px 0 0 2px;
    color: #000;
    font-weight: 700;
    border: 2px solid #FFF;
}


/* =============================================================
ADD TO CART
================================================================ */
.mz-add-to-cart .stepper,
.mz-add-to-cart .step-icon,
.mz-add-to-cart .quantity 
{
	display: inline-block;
}
.mz-add-to-cart .step-icon svg {
	margin: -6px 0 0 0;
    background: #000000;
    border-radius: 100px;
}
.mz-add-to-cart .quantity {
	font-weight: 600;
    font-size: 20px;
    display: inline-block;
    width: 60px;
    text-align: center;
}







.mz-category-card {
	border-radius: 40px;
	border:2px solid var(--bravo-color);
}
.mz-category-card > img {
	border-radius: 40px;
}


.mz-title-1 {
	font-size: 24px;
    font-weight: 600;
}
.mz-title-2 {
	font-size: 1.8rem;
    font-weight: 600;
}
.mz-title-3 {
	font-size: 4rem;
    font-weight: 600;
}

.mz-clear-all-filters {
	color:#FFFFFF;
	border: 1px solid #FFFFFF;
}


/* .mz-filters-container {
	
} */
.mz-filters-container .swiper-slide {
	width: auto;
}
.mz-filter-card {
	width: 27.5vw;
    border: rgba(236, 207, 136, 1) 1px solid;
    padding: 25px 0 25px 25px;
    border-radius: 27px;
	background-color: var(--alpha-color);
}
.mz-filters-list {
	height: 56vh;
    overflow-y: auto;
    padding: 0rem 2rem 0rem 0rem;
    overflow-x: hidden;
}
.form-switch {
    padding-left: 2.5em;
    font-size: 20px;
    margin: 1rem 0;
    text-transform: uppercase;
	line-height: 32px;
    font-weight: 500;
}

.mz-list-filters {
	direction: ltr;
}
.mz-filter-chip {
	background-color: var(--bravo-color);
	display: inline-block;
	border-radius: 50rem!important;
	padding: 0 0 0 1rem;
	font-weight: bold;
	margin: 0 1rem 1rem 0;
    line-height: 2.4em;
	text-transform: uppercase;
}
.mz-filter-chip button {
	background-color: #000;
	color:#FFF;
	width: 40px;
    height: 40px;
    padding: 0;
	margin: 0 0 0 0.7rem;
}


.mz-filters-wrapper {
	height: 74vh;
	overflow-y: auto;
	overflow-x: hidden;
    direction:rtl; 
}

.direction-rtl {
    direction:rtl; 
}
.direction-ltr {
    direction:ltr; 
}



.swiper-product-cards .swiper-wrapper {
	height: calc(100vh - 125px) !important;
	max-height: calc(100vh - 125px) !important;
}

.mz-product-image-container {
	overflow: hidden;
	background: #FFF;
	border-radius: 20px;
}

.mz-product-slide {
	width:29vw;
	height: calc((100vh - 125px) / 2);
}
.mz-product-card {
	height: 100%;
	background-color: #FFF;
	border-right: 3px solid var(--bravo-color);  
    border-bottom: 3px solid var(--bravo-color);
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}
.mz-product-card.full-screen {
	height: 100%;    width: 100vw;
    position: fixed;
    left: 0;
    background: var(--alpha-color);
    border: none;
	color:#FFFFFF;
}

.mz-product-card-title {
	line-height: 20px !important;
    overflow: hidden;
    max-height: 60px;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.mz-product-card-title::-webkit-scrollbar-thumb {
	background: transparent;
}

/* .border-right {
	border-right: 3px solid #EEE;
}
.border-bottom {
	border-bottom: 3px solid #EEE;
} */

.mz-product-card .mz-product-image {
	width: 110%;
	margin: 0 -5%;
}

.mz-product-card .out-of-stock {
	display: none;
	position: absolute;
	color: #000000;
	margin: 0px 0 3px -8px;
	padding: 7px 0;
	width: 35px;
	text-align: center;
	border-radius: 0 10px 0 0;
	font-size: 12px;
	font-family: 'Kumbh Sans';
	line-height: 13px;
	bottom: 0;
	width: 80px;
	background: var(--bravo-color);
}
.mz-product-card .out-of-stock.yes {
	display: block;
}
.mz-product-card .in-cart {
	display: none;
	position: absolute;
	color: rgb(35, 68, 48);
    background-color: rgb(178, 243, 203);
    margin: -8px 0 0 -8px;
    padding: 7px 0;
    width: 110px;
    text-align: center;
    border-radius: 0 0 10px 0;
    font-size: 12px;
    font-family: 'Kumbh Sans';
    line-height: 13px;
}
.mz-product-card .in-cart.yes {
	display: block;
}

.mz-product-card .index {
	position: absolute;
    color: #BBB;
    margin: -8px 0 0 -8px;
    padding: 7px 0;
    width: 35px;
    text-align: center;
    border-radius: 0 0 10px 0;
    font-size: 12px;
    font-family: 'Kumbh Sans';
    line-height: 13px;
}





.mz-product-card.detailed {
	height: 100%;	
	width: 100%;	
	background: none;
	border: none;
	color: #FFF;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
}
.mz-product-card.detailed .mz-product-image {
	width: 100%;
	margin:auto;
}

/* 
.mz-product-list {

} */

.mz-product-list.tall .mz-product-card {
	height: 49.5vh;
}
.mz-product-list.tall .swiper-slide {
	/* padding-top: 16vh;
	padding-bottom: 16vh; */
	padding-top: 5vh;
    padding-bottom: 2vh;
}

.mz-product-details-container,
.mz-product-container,
.mz-product-wrapper
{
	height: 88vh;	
}
/* .mz-product-wrapper .mz-product-details-container {
	width: 33.3333% !important;
	position: absolute;
	right: -35%;
} */

/* .mz-product-wrapper .mz-product-container {
	width: 100%;
    transition: all 0.5s ease 0s;
}



.mz-product-wrapper.show-product-details .mz-product-details-container {
    transform: translate(0,0);
}
.mz-product-wrapper.show-product-details .mz-product-container {
	width: 66.6667% !important;
} */

.mz-product-details-container {
	/* box-shadow: 0px 0px 50px rgb(0 0 0 / 30%);
	background-color: var(--alpha-color); */
	border-left: 3px solid var(--bravo-color);
	overflow: auto;

	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

}

.mz-product-wrapper-1 {
    background: #FFF;
	border-radius: 20px;
	color: #000000;
}
.mz-product-wrapper-2 {
    background: var(--bravo-color);
	border-radius: 20px;
	color: #000000;
}
.mz-product-wrapper-2 > .row:nth-child(odd) {
    background:rgba(236,207,136,0.35);
}

.mz-product-details {
	display: none;
	border-bottom: 3px solid #EEE;
}
.mz-product-details-close {
	position: absolute;
    right: 10px;
    color: #FFF;
    line-height: 16px;
    font-size: 16px;
    padding: 0px 8px;
    z-index: 999;
}
.mz-product-pricing .btn-add-to-cart:disabled {
	background: #ffe7e7 !important;
    color: #ff2d2d !important;
    border-color: #ff2d2d !important;
	font-size: 13px;
    letter-spacing: -0.01em;
}

.mz-product-filter-chip {
	background: rgba(255,255,255,0.4);
	border: 1px solid #FFFFFF;
}

.btn-back-to-filters {
	margin: -4px 0 -4px -16px;
    border-radius: 0;
	color: #FFFFFF;
	background: #000000;
	border: 0;
}

.mz-global-loader {
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.item-table {
	color:#FFFFFF;
}
.item-table {
    border:1px solid rgba(255,255,255,0.3) !important;
}
.item-table.border-light {
    border-color: rgba(255,255,255,0.3) !important;
}
.item-table > :not(caption) > * > * {
	padding-top:2px;
	padding-bottom:2px;
	
}

.swiper-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 50;
    height: 10px;
    width: 100%;
}
.swiper-scrollbar {
	background: var(--bravo-color);
}
.swiper-scrollbar-drag {
    background: var(--alpha-color);
    border-radius: 10px;
}
/* .mz-product-details-attributes {
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
}
.mz-product-details-attributes .item {
	border-bottom: 1px solid #FFFFFF;
} */

.mz-product-details.has-contents {
	height: 26vh;
	display: block;
}

.btn-outline-warning {
	color:#000;
    border-color: var(--bravo-color);
}
.btn-check:active+.btn-outline-warning, 
.btn-check:checked+.btn-outline-warning,
.btn-outline-warning.active, 
.btn-outline-warning.dropdown-toggle.show, 
.btn-outline-warning:active, 
.btn-outline-warning:hover, 
.btn-outline-warning:focus {
    color: #000;
    background-color: var(--bravo-color);
    border-color: var(--bravo-color);
	box-shadow:none !important;
}


.attribute-list {
	font-size: 14px;
	line-height: 16px;
    margin: 6px 0;
}
.attribute-list .flag-icon,
.attribute-list img.icon {
	width: 24px;
	height: 23px;
}


.swiper-horizontal>.swiper-pagination-progressbar, 
.swiper-pagination-progressbar.swiper-pagination-horizontal, 
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, 
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 0.75rem;
    left: 0;
    bottom: 0;
	top: auto;
}

.swiper-pagination-progressbar {
	background: #e0e0e0;
}



.mz-status-bar {
	background-color: var(--bravo-color);
	color: #000;
	height: 5vh;
}


@-webkit-keyframes pulse {
	0% { -webkit-transform: scale(1); }
	50% { -webkit-transform: scale(1.3); }
	100% { -webkit-transform: scale(1); }
 }
 
 @keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.3); }
	100% { transform: scale(1); }
 }

 @-webkit-keyframes pulse-2 {
	 0% { -webkit-transform: scale(0.85); }
	 50% { -webkit-transform: scale(1); }
	 100% { -webkit-transform: scale(0.85); }
  }
  
  @keyframes pulse-2 {
	 0% { transform: scale(0.85); }
	 50% { transform: scale(1); }
	 100% { transform: scale(0.85); }
  }


 .pulse {
    animation: pulse 2.5s infinite;
 }
 .pulse-2 {
    animation: pulse-2 6s infinite;
 }


 
.bounce {
	position: absolute;
	bottom: 30px;
	left: 50% ;
	width: 60px;
	height: 60px ;
	margin-left:-30px;
	border: 2px solid #990000;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	-ms-border-radius:50%;
	border-radius:50%;
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}
 
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}
 
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}
 
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}


.text-overflow {
	overflow:hidden; 
	white-space:nowrap; 
	text-overflow: ellipsis;
}



.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
  }
  
  .animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
  }
  
  .animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
  }
  
  /*the animation definition*/
  
  @-webkit-keyframes wobble {
	0% {
	  -webkit-transform: none;
	  transform: none
	}
	15% {
	  -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	  transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
	  -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	  transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
	  -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	  transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
	  -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	  transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
	  -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	  transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	100% {
	  -webkit-transform: none;
	  transform: none
	}
  }
  
  @keyframes wobble {
	0% {
	  -webkit-transform: none;
	  -ms-transform: none;
	  transform: none
	}
	15% {
	  -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	  -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	  transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
	  -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	  -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	  transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
	  -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	  -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	  transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
	  -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	  -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	  transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
	  -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	  -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	  transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	100% {
	  -webkit-transform: none;
	  -ms-transform: none;
	  transform: none
	}
  }
  
  .wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
  }