@import url('https://fonts.cdnfonts.com/css/visby');
/* GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
	/* cursor: none !important; */
}
body {
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
	/* cursor: none !important; */
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea {
    outline: none !important;
	/* cursor: none !important; */
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* GOBAL_CSS_CHANGES_END_HERE */

/* GOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --main-color: #FFB31A;
	--black: #000000;
    --visbyMedium: "visbycf-medium";
    --visbyRegular: "VisbyRegular";
    --visbyLight: "visbycf-light";
	--main-circle-size: 10px;
	--second-circle-size: 30px;
	--third-circle-size: 100px;
}
/* GOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "VisbyMedium";
    src: url("../webfonts/visbycf-medium.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "VisbyMedium";
    src: url("../webfonts/VisbyRegular.otf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "VisbyLight";
    src: url("../webfonts/visbycf-light.otf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* ONCLICK-TOP */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	line-height: 46px;
	font-size: 16px;
	color: #EA006A;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	line-height: 46px;
	font-size: 16px;
	opacity: 0;
	background-image: linear-gradient(298deg, #EA006A, var(--black));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: #EA006A;
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
/* ONCLICK-TOP */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 7px;
}
body::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
    transition: 0.5s all;
}
body::-webkit-scrollbar-thumb:hover {
	background-color: var(--main-color);
}
/* SCROLL-CSS */

/* HEADER-CSS */
.header-top-marq {
    background-color: var(--black);
    padding: 10px 0px;
    transition: .5s all;
}
.header-top-marq-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 5000px;
}
.header-top p{
	font-size: 12px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--white);
}
.header-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0px;
}
.header-nav ul{
	display: flex;
	align-items: center;
	gap: 30px;
}
.header-nav ul li a{
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--black);
	position: relative;
	transition: .5s all;
}
.header-nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #EA006A;
    bottom: -43px;
    border-radius: 50px;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 300ms ease-out;
}
.header-nav ul li a:hover{
	color: #EA006A;
}
.header-nav ul li a:hover::before{
	transform: scaleX(1);
}
.searchBar {
    position: relative;
    z-index: 1;
}
.searchBtn {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 100%;
    border: none;
}
.searchInput {
    font-size: 18px;
    width: 100%;
    height: 60px;
    border: none;
    padding: 20px 25px;
    outline: none;
    border-radius: 60px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transition: 1s;
	background-color: #eee;
}
.genBtn {
	position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Visby', sans-serif;
	font-weight: 500;
    width: fit-content;
    height: 60px;
    border-radius: 60px;
    color: var(--white);
    transition: all .2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border: 0;
    padding: 0px 35px;
    transition: all 0.3s;
}
.searchBar:focus-within .searchInput {
    width: 240px;
}
.header-btns{
	display: flex;
	align-items: center;
	gap: 40px;
	position: relative;
}
.header-btns::before {
    content: '';
    position: absolute;
    height: 60%;
    width: 1px;
    background-color: #000;
    right: 55%;
    opacity: 0.3;
}
.header-cart button{
	background-color: transparent;
	border: none;
	gap: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
}
/* HEADER-CSS */

/* INDEX-CSS */
marquee {
    padding: 20px 0px;
}
.common-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 50px;
	position: relative;
	background-color: var(--main-color);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--black);
	transition: .5s all;
	z-index: 2;
	overflow: hidden;
	border: none;
}
.common-btn::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black);
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.common-btn:hover{
	background-color: transparent;
	color: var(--white);
}
.common-btn:hover::before{
	transform: scaleX(1);
}
.common-btn-dark{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 50px;
	position: relative;
	background-color: var(--main-color);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--black);
	transition: .5s all;
	z-index: 2;
	overflow: hidden;
}
.common-btn-dark::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--white);
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.common-btn-dark:hover{
	background-color: transparent;
	color: var(--black);
}
.common-btn-dark:hover::before{
	transform: scaleX(1);
}
.banner-swiper {
	width: 100%;
	height: 100%;
}
.banner-swiper .swiper-slide {
	display: flex;
	align-items: flex-end;
	background-position: center;
	background-size: cover;
	height: 80vh;
	display: flex;
	align-items: flex-end;
	padding: 100px 0px;
}
.banner-swiper .swiper-pagination {
    position: absolute;
    right: 1%;
    width: 1%;
    bottom: 50%;
    left: 98%;
}
.banner-swiper .swiper-pagination span{
	background-color: transparent;
	border: 1px solid var(--white);
	transition: .5s all;
	opacity: 1;
}
.banner-swiper .swiper-pagination-bullet-active{
	background-color: var(--white) !important;
}
.index-banner-wrapper{
	position: relative;
}
.index-banner-text-box{
	position: absolute;
	bottom: 15%;
	z-index: 99;
	left: 15%;
}
.index-banner-wrap-text h2{
	font-size: 20px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--white);
	margin: 0px 0px 10px 0px;
}
.index-banner-wrap-text h6{
	font-size: 40px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--white);
	width: 60%;
}
.index-first-wrapper {
    padding: 100px 0px;
}
.index-first-wrap-box{
	background-color: #F6F6F6;
}
.index-first-wrap-img-1 {
    margin: 0px 0px 20px 0px;
}
.index-first-wrap-img img {
    mix-blend-mode: darken;
}
.index-banner-wrap-text {
    margin: 0px 0px 10px 0px;
}
.index-first-wrap-text h6{
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.index-first-wrap-text p{
	font-size: 18px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.index-second-wrapper {
    padding: 100px 0px;
}
.index-second-wrap-text-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0px 0px 20px 0px;
}
.index-second-wrap-text h6{
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
}
.index-second-wrap-box{
	text-align: center;
	position: relative;
	overflow: hidden;
	cursor: none;
}
.index-second-wrap-box:hover .index-second-wrap-box-img-2{
	visibility: visible;
	opacity: 1;
}
.index-second-wrap-box:hover .index-second-wrap-box-img{
	transform: scale(1.1);
	opacity: 0;
	visibility: hidden;
}
.index-second-wrap-box-img{
	transition: .9s all;
}
.index-second-wrap-box-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: .9s all;
}
.index-second-wrap-box-text p{
	font-size: 20px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	margin: 20px 0px 0px 0px;
}
.first-slider-wrapper ul{
	display: flex;
	align-items: center;
	gap: 50px;
}
.first-slider-wrapper ul li{
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 30px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
}
.index-third-wrapper{
	padding: 100px 0px;
}
.index-third-box{
	background-color: #EFE8DC;
	overflow: hidden;
	height: 670px;
	cursor: none;
}
.index-third-wrap-slider ul li {
    width: 65%;
}
.index-third-wrap-slider ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0px 0px 0px;
    animation: slider 20s cubic-bezier(.44,.46,.75,.74) infinite;
}
.index-fourth-wrapper{
	background-color: var(--black);
	padding: 100px 0px;
}
.index-fourth-wrap-text-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0px 0px 50px 0px;
}
.index-fourth-wrap-text h6{
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--white);
}
.index-fourth-wrap-box{
	text-align: center;
	position: relative;
	overflow: hidden;
}
.index-fourth-wrap-box:hover .index-fourth-wrap-box-img-2{
	visibility: visible;
	opacity: 1;
}
.index-fourth-wrap-box:hover .index-fourth-wrap-box-img{
	visibility: hidden;
	opacity: 0;
}
.index-fourth-wrap-box:hover .index-fourth-wrap-box-btn{
	bottom: 20%;
	visibility: visible;
	opacity: 1;
}
.index-fourth-wrap-box-text h6{
	font-size: 18px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--white);
}
.index-fourth-wrap-box-img {
    margin: 0px 0px 10px 0px;
    transition: .8s all;
    width: 100%;
    height: 490px;
}
.index-fourth-wrap-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.index-fourth-wrap-box-img-2{
	position: absolute;
	top: 0%;
	left: 0%;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: .8s all;
	width: 100%;
    height: 490px;
}
.index-fourth-wrap-box-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.index-fourth-wrap-box-btn{
	position: absolute;
	bottom: -20%;
	right: 25%;
	visibility: hidden;
	opacity: 0;
	transition: .8s all;
}
.index-fifth-wrapper{
	padding: 100px 0px;
}
.index-fifth-wrap-box{
	background-color: #F6F6F6;
}
.index-fifth-wrap-text h6{
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.index-fifth-wrap-text p{
	font-size: 18px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.index-sixth-wrapper{
	padding: 100px 0px;
	background-color: var(--black);
}
.index-sixth-wrap-text h6{
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--white);
	margin: 0px 0px 20px 0px;
}
.index-sixth-wrap-links{
	display: flex;
	align-items: center;
	gap: 20px;
}
.index-sixth-wrap-link{
	position: relative;
	overflow: hidden;
}
.index-sixth-wrap-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, rgb(253 244 151 / 40%) 0%, rgb(253 244 151 / 40%) 5%, rgb(253 89 73 / 40%) 45%,rgb(214 36 159 / 40%) 60%,rgb(40 90 235 / 40%) 90%);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}
.index-sixth-wrap-link img{
	transform: scale(1);
	transition: 0.7s;
}
.index-sixth-wrap-link:hover img{
	transform: scale(1.2);
}
.index-sixth-wrap-link:hover::before{
	opacity: 1;
}
.index-sixth-wrap-link:hover .index-sixth-wrap-link-icon{
    transform: scale(1);
}
.index-sixth-wrap-link-icon {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #FFF;
    transition: 0.5s;
    transform: scale(0);
    transform-origin: center;
    z-index: 2;
}
/* INDEX-CSS */

/* CHECKOUT-SIDEBAR-CSS */
.checkout-modal {
    background-color: var(--white);
    backdrop-filter: blur(10px);
    border-radius: 15px 0px 0px 15px;
}
.checkout-modal .offcanvas-header{
	border-bottom: 1px solid #dee2e6;
}
.checkout-modal .offcanvas-header h5 {
    font-size: 30px;
    font-family: 'Visby', sans-serif;
	font-weight: 800;
    color: var(--black);
}
.checkout-modal .offcanvas-header i {
    font-size: 20px;
    color: var(--black);
}
.checkout-modal .offcanvas-body {
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px 0px 10px 0px;
}
.checkout-modal .offcanvas-body::-webkit-scrollbar {
    width: 9px;
}
.checkout-modal .offcanvas-body::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.checkout-modal .offcanvas-body::-webkit-scrollbar-thumb {
    background: #dfd9d0; 
    border-radius: 20px;
    transition: 0.5s all;
}
.checkout-modal .offcanvas-body::-webkit-scrollbar-thumb:hover {
    background: #000; 
  }
.cart-modal-product-text span {
    cursor:pointer;
}
.cart-modal-product-text .number {
    display: flex;
    align-items: center;
}
.cart-modal-product-text .minus, .plus{
    width: 25px;
    height: 25px;
    background:#f2f2f2;
    border:1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.cart-modal-product-text input{
    height: 25px;
    width: 70px;
    text-align: center;
    font-size: 16px;
    border:1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    border-right: 0;
    border-left: 0;
}
.cart-modal-product-main-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-modal-product-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}
.cart-modal-product-text h6{
    font-size: 16px;
    font-family: 'Visby', sans-serif;
	font-weight: 400;
    color: #000000;
    margin: 0px 0px 20px 0px;
}
.cart-modal-product-trash {
    text-align: end;
}
.cart-modal-product-trash i{
    font-size: 14px;
    color: #999;
    cursor: pointer;
    margin: 0px 0px 10px 0px;
}
.cart-modal-product-trash p{
    font-size: 14px;
    font-family: 'Visby', sans-serif;
	font-weight: 400;
    color: #999;
}
.cart-modal-product {
    border-bottom: 1px solid #dee2e6;
    padding: 15px 30px 15px 20px;
}
.cart-modal-product-img {
    width: 25%;
}
.checkout-modal .offcanvas-footer {
    padding: 15px;
	border-top: 1px solid #dee2e6;
}
.cart-modal-product-text-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
}
.cart-modal-product-text-flex h6 {
    font-size: 18px;
    font-family: 'Visby', sans-serif;
	font-weight: 400;
    color: var(--black);
}
.cart-modal-product-text-flex h4 {
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 600;
	color: var(--black);
	}
.cart-modal-product-text-flex p {
    font-size: 16px;
    font-family: 'Visby', sans-serif;
	font-weight: bold;
    color: var(--black);
}
.cart-modal-product-btn button{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
	border: none;
    position: relative;
    background-color: var(--main-color);
    font-size: 16px;
    font-family: 'Visby', sans-serif;
    font-weight: 400;
    color: var(--black);
    transition: .5s all;
    z-index: 2;
    overflow: hidden;
}
.cart-modal-product-btn button:hover {
    background-color: transparent;
    color: var(--white);
}
.cart-modal-product-btn button::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black);
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.cart-modal-product-btn button:hover::before {
    transform: scaleX(1);
}
/* CHECKOUT-SIDEBAR-CSS */

/* INNER-CSS-START-FROM-HERE */

.common-banner-wrapper{
	padding: 100px 0px;
	background-position: top;
	background-size: cover;
	height: 50vh;
	min-height: 500px;
	display: flex;
	align-items: center;
}
.common-banne-text h6 {
    font-size: 40px;
    font-family: 'Visby', sans-serif;
    font-weight: 300;
    color: var(--white);
}
.index-fifth-wrap-img img {
    transition: 0.5s all;
}
.index-fifth-wrap-img {
    overflow: hidden;
}
.index-fifth-wrap-box:hover .index-fifth-wrap-img img {
    transform: scale(1.1);
}
.index-first-wrap-box:hover .index-first-wrap-img img{
    transform: scale(1);
}
.index-first-wrap-img{
	overflow: hidden;
}
.index-first-wrap-img img{
	transition: 0.5s all;
}
.index-first-wrap-box:hover .index-first-wrap-img-1 img{
    transform: scale(1.2);
}
.index-first-wrap-img-1 img{
	transition: 0.5s all;
}
.index-third-box:hover .index-third-wrap-img img{
    transform: scale(1.1);
}
.index-third-wrap-img img{
    transition: 0.5s all;
    width: 100%;
    object-fit: cover;
}
    
.index-third-wrap-img{
	overflow: hidden;
}
.shop-wrap-box-btn{
	position: absolute;
    bottom: -20%;
    right: 25%;
    visibility: hidden;
    opacity: 0;
    transition: .8s all;
}
.index-second-wrap-box:hover .shop-wrap-box-btn{
	bottom: 20%;
	opacity: 1;
	visibility: visible;
}
.contact-wrapper{
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ebebeb;
}
.contact-wrapper-ttext h6{
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	text-align: center;
	margin: 0px 0px 40px 0px;
}
.contact-wrapper-input input{
    width: 100%;
    height: 50px;
    border: none;
    border: 1px solid var(--black);
    font-size: 16px;
    font-family: 'Visby', sans-serif;
    font-weight: 300;
    color: var(--black);
    padding: 0px 20px;
    transition: 0.5s all;
    border-radius: 5px;
	background: transparent;
}
.contact-wrapper-input input:focus-visible{
    border: 1px solid #ea046d;
}
.contact-wrapper-input textarea{
	width: 100%;
	height: 170px;
	border: none;
	border: 1px solid var(--black);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	resize: none;
	padding: 10px 20px;
	transition: 0.5s all;
	border-radius: 5px;
	background: transparent;
}
.contact-wrapper-input textarea:focus-visible{
    border: 1px solid #ea046d;
}
.contact-wrapper-input{
	width: 50%;
	margin: 0px auto 20px auto;
}
.contact-wrapper-input-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* INNER-CSS-END-FROM-HERE */

/* PRO-DEC-CSS-HERE */

.pro-dec-first-wrapper{
	padding: 100px 0px;
	background-color: #f8f8f8;
}
.pro-detail-main-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px 0px #00000029;
    transition: 0.5s all;
    overflow: hidden;
}
.pro-detail-main-box:hover{
	box-shadow: 5px 6px 20px 0px #ea006a24;
}
.pro-detail-wrap-img {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}
.pro-detail-wrap-text-1 h6 {
	font-size: 35px;
	font-family: 'Visby', sans-serif;
	font-weight: 700;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.pro-detail-wrap-text-1 ul li i {
    color: #F2863B;
}
.pro-detail-wrap-text-1 h5 {
    font-size: 35px;
    font-family: 'Visby', sans-serif;
    font-weight: 700;
    color: #ea006aad;
    margin: 0px 0px 10px 0px;
}
.pro-detail-wrap-text-2 h6 {
    font-size: 25px;
    font-family: 'Visby', sans-serif;
    font-weight: 300;
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.pro-detail-wrap-text-2 p {
	font-size: 18px;
    font-family: 'Visby', sans-serif;
    font-weight: 400;
    color: #333333;
    margin: 0px 0px 10px 0px;
}
.pro-detail-wrap-btns-f{
	display: flex;
	align-items: center;
	gap: 20px;
}
.common-btn1{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 170px;
	height: 50px;
	position: relative;
	background-color: var(--black);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--white);
	transition: .5s all;
	z-index: 2;
	overflow: hidden;
	border: none;
}
.common-btn1::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--main-color);
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.common-btn1:hover{
	background-color: transparent;
	color: var(--black);
}
.common-btn1:hover::before{
	transform: scaleX(1);
}
.pro-detail-wrap-text-1 ul{
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0px 0px 10px 0px;
}
.checkout-form .title {
    font-size: 30px;
    font-family: 'Visby', sans-serif;
    font-weight: 300;
    color: var(--black);
    margin: 0px 0px 10px 0px;
}
.checkout-form .form-top-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.codLabel {
    font-size: 16px;
    font-weight: 600;
}
.form-check-input:checked {
    background-color: #ea006a;
    border-color: #ea006a;
}
.contact-wrapper-input1 input{
    width: 100%;
    height: 50px;
    border: none;
    border: 1px solid var(--black);
    font-size: 16px;
    font-family: 'Visby', sans-serif;
    font-weight: 300;
    color: var(--black);
    padding: 0px 20px;
    transition: 0.5s all;
    border-radius: 5px;
	background: transparent;
}
.contact-wrapper-input1{
	margin: 0px 0px 10px 0px;
}
.contact-wrapper-input1 input:focus-visible{
    border: 1px solid #ea046d;
}
.common-btn-2{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	position: relative;
	background-color: var(--main-color);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--black);
	transition: .5s all;
	z-index: 2;
	overflow: hidden;
	border: none;
}
.common-btn-2::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black);
	z-index: -1;
	transform-origin: left;
	transform: scaleX(0);
	transition: .5s all;
}
.common-btn-2:hover{
	background-color: transparent;
	color: var(--white);
}
.common-btn-2:hover::before{
	transform: scaleX(1);
}
.order-summary-card {
    padding: 0 15px;
    border-radius: 15px;
    max-width: 100%;
    background: var(--main-color);
    margin-left: 35px;
}
.order-summary-card .summary-group {
    border-bottom: 1px solid var(--white);
    padding: 15px 0;
}
.order-summary-card .title {
	font-family: 'Visby', sans-serif;
    text-align: center;
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
}
.order-summary-card .summary-group ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.order-summary-card span {
    text-align: center;
    font-size: 16px;
    color: var(--white);
    font-weight: 300;
	font-family: 'Visby', sans-serif;
}
.order-summary-card .summary-group:last-of-type {
    border-bottom: none;
}
/* PRO-DEC-CSS-HERE */

.index-fourth-wrap-box1{
	text-align: center;
	position: relative;
	overflow: hidden;
}
.index-fourth-wrap-box1:hover .index-fourth-wrap-box-img-22{
	visibility: visible;
	opacity: 1;
}
.index-fourth-wrap-box1:hover .index-fourth-wrap-box-img1{
	visibility: hidden;
	opacity: 0;
}
.index-fourth-wrap-box1:hover .index-fourth-wrap-box-btn1{
	bottom: 20%;
	visibility: visible;
	opacity: 1;
}
.index-fourth-wrap-box-text1 h6{
	font-size: 18px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
}
.index-fourth-wrap-box-img1{
	margin: 0px 0px 10px 0px;
	transition: .8s all;
	min-height: 405px;
    background: #0003;
}
.index-fourth-wrap-box-img-22{
	position: absolute;
	top: 0%;
	left: 0%;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: .8s all;
}
.index-fourth-wrap-box-btn1{
	position: absolute;
	bottom: -20%;
	right: 25%;
	visibility: hidden;
	opacity: 0;
	transition: .8s all;
}
.index-fourth-wrap-box-text1 {
    background: #ccc;
    padding: 5px 0px;
}
/* FOOTER-CSS */
.footer-wrapper {
    padding: 100px 0px 0px 0px;
}
.footer-text h6{
	font-size: 20px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.footer-text p{
	font-size: 14px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	margin: 0px 0px 30px 0px;
}
.footer-input {
    display: flex;
    align-items: center;
}
.footer-input input{
	width: 75%;
	height: 60px;
	border: none;
	border-bottom: 1px solid var(--black);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
}
.footer-input button{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 20%;
	height: 60px;
	background-color: var(--black);
	font-size: 16px;
	font-family: 'Visby', sans-serif;
	font-weight: 400;
	color: var(--white);
	transition: .5s all;
	border: none;
}
.footer-input button:hover{
	background-color: transparent;
	color: var(--black);
	border: 1px solid var(--black);
}
.footer-logo {
    margin: 0px 0px 30px 0px;
}
.footer-link h6{
	font-size: 18px;
	font-family: 'Visby', sans-serif;
	font-weight: 500;
	color: var(--black);
	margin: 0px 0px 30px 0px;
}
.footer-link ul li a{
	font-size: 14px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--black);
	line-height: 2;
	position: relative;
	transition: .5s all;
}

.footer-link ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    background-color: #EA006A;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 400ms ease-out;
}
.footer-link ul li a:hover{
	color: #EA006A;
}
.footer-link ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.copyright{
	background-color: var(--black);
	padding: 10px 0px;
	text-align: center;
	margin: 100px 0px 0px 0px;
}
.copyright p{
	font-size: 14px;
	font-family: 'Visby', sans-serif;
	font-weight: 300;
	color: var(--white);
}
/* FOOTER-CSS */

.circle-main{
	position: fixed;
	width: var(--main-circle-size);
	height: var(--main-circle-size);
	margin-top: calc(-1 * var(--main-circle-size) / 2);
	margin-left: calc(-1 * var(--main-circle-size) / 2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: white;
	pointer-events: none;
	top: 0;
	left: 0;
	transition: opacity .3s;
	mix-blend-mode: difference;
	z-index: 99999999;
}
.second-circle{
	position: fixed;
	transition: transform .15s, width .3s, height .3s, margin .3s;
	width: var(--second-circle-size);
	height: var(--second-circle-size);
	top: 0;
	left: 0;
	margin-top: calc(-1 * var(--second-circle-size) / 2);
	margin-left: calc(-1 * var(--second-circle-size) / 2);
	background-color: var(--main-color);
	border-radius: 50%;
	pointer-events: none;
	mix-blend-mode: multiply;
	z-index: 99999999;
}
.shopnow-cursor{
	margin-top: calc(-1 * var(--third-circle-size) / 2) !important;
	margin-left: calc(-1 * var(--third-circle-size) / 2) !important;
	width: var(--third-circle-size) !important;
	height: var(--third-circle-size) !important;
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	overflow: hidden;
	mix-blend-mode: normal;
	transition: 0.5s all;
}
.shopnow-cursor::before{
	content: "Explore Now";
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-family: var(--kanit-regular);
	color: var(--black);
	background-color: var(--main-color);
}
.circle-scale{
	width: calc(var(--second-circle-size) * 2);
	height: calc(var(--second-circle-size) * 2);
	margin-top: calc(-1 * var(--second-circle-size));
	margin-left: calc(-1 * var(--second-circle-size));
	z-index: 99999999;
}


/* ANIMATIONS */
@keyframes slider {
	0% {
		transform: translate(0px , -1900px);
	}
	50% {
		transform: translate(0px , -200px);
	}
	100% {
		transform: translate(0px , -1900px);
	}
}
/* ANIMATIONS */
.offcanvas-p {
    text-align: center;
    font-size: 18px;
    font-family: 'Visby', sans-serif;
    font-weight: 400;
    color: var(--black);
}