@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: poppins;
}

html{
	scroll-behavior: smooth;
}

body{
	min-height: 100vh;
    overflow-x: hidden;
}

a{
	text-decoration: none;
}

ul{
	list-style: none;
}

/* HEADER */
header {
	background-color: #f5f5f5;
	flex-direction: column;
	position: fixed;
	top: 0;
	transition: top 0.2s ease-in-out;
	width: 100%;
	z-index: 5;
}

header.hide{
	top: -120px;
	transition: top 0.2s ease-in-out;
}

.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.35s ease-out, transform 0.45s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.header-top-bar {
	align-items: center;
	background-color: #800080;
	border-bottom: #800080;
	display: flex;
	justify-content: center;
	padding: 10px 5px;
}

.header-top-bar a {
	color: white;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.3px;
	text-decoration: underline;
}

/* NAVIGATION */
.navigation {
	align-items: center;
	background-color: #f5f5f5;
	display: flex;
	height: 100px;
	margin: auto;
	max-width: 1200px;
	width: 100%;
}

.left-nav {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 10px;
}

.left-nav input {
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 30px;
	color: #7b4eb3;
	font-size: 14px;
	height: 40px;
	max-width: 300px;
	outline: none;
	padding-left: 10px;
	transition: box-shadow 0.3s ease-in-out;
	width: 70%;
}

.left-nav input:focus {
	box-shadow: 0px 5px 10px gray;
	outline: 2px solid white;
}

.left-nav button {
	background-color: white;
	border: none;
	border-radius: 30px;
	color: #7b4eb3;
	cursor: pointer;
	height: 40px;
	transition: background-color 0.3s ease-in-out;
	width: 40px;
	z-index: 2;
}

.search-wrapper {
    align-items: center;
    display: flex;
	position: relative;
	z-index: 2;
}

.search-icon {
	color: #7b4eb3;
	left: 10px;
    position: absolute;
	z-index: 2;
}

#search-input {
	background-color: white;
	border: 1px solid #ccc;
    border-radius: 30px;
	color: #7b4eb3;
	font-size: 14px;
	height: 40px;
	max-width: 300px; 
	outline: none;
	padding-left: 40px; 
    padding-right: 40px; 
	transition: box-shadow 0.3s ease-in-out;
    width: 100%;
	z-index: 1;
}

#search-input:focus {
	box-shadow: 0px 5px 10px gray;
    outline: 2px solid white;
}

#cancel-search {
    background: none;
    border: none;
    color: #7b4eb3;
    cursor: pointer;
    font-size: 18px;
	position: absolute;
    right: 10px;
	z-index: 2;
}

.hidden {
    display: none;
}

#suggestions-container {
	background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
	left: 19%;
	margin-top: 5px;
    position: absolute;
    top: 60%; 
    width: 12%;
	z-index: 2;
}

#suggestions-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#suggestions-container li {
	border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
	padding: 10px;
}

#suggestions-container li:last-child {
    border-bottom: none;
}

#suggestions-container li:hover {
    background: #f9f9f9;
}

#suggestions-container .no-results {
    color: #777;
	padding: 10px;
    text-align: center;
}

#loading-indicator {
	color: #777;
    padding: 10px;
    text-align: center;
}

.logo {
	align-items: center;
	display: flex;
	flex: 1;
	justify-content: center;
}

.logo img {
	height: auto;
	width: 70%;
}

.right-nav {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 10px;
	justify-content: flex-end;
}

.user-logo {
	align-items: center;
	background-color: #f5f5f5;
	border-radius: 50%;
	color: #800080;
	display: flex;
    font-size: 24px;
    font-weight: bold;
	height: 40px;
    justify-content: center;
	margin-left: 20px;
    width: 40px;
}

.right-nav a {
	align-items: center;
	border-radius: 50%;
	color: #800080;
	display: flex;
	height: 40px;
	justify-content: center;
	position: relative;
	width: 40px;
}

.nav-user i,
.nav-wishlist i {
	align-items: center;
	font-size: 24px;
	justify-content: center;
}

.right-nav a:hover, 
#cart-icon:hover {
	background-color: #800080; 
    border-radius: 50%; 
    color: white; 
    transition: all 0.3s ease-in-out; 
}

#cart-icon {
	border-radius: 50%;
	color: #800080;
	font-size: 24px;
	position: relative;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#cart-icon .cart-item-count {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: white;
	background-color: #7b4eb3;
	font-weight: 500;
	font-size: 0.6rem;
	visibility: hidden;
}

/* MENU */
.menu {
	display: flex;
	justify-content: center;
	max-width: 1200px;
	width: 100%;
	margin: auto;
	background: #f5f5f5;
}

.menu ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.menu ul li {
	position: relative;
}

.menu ul li a {
	display: block;
	padding: 3px 10px;
	color: black;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-size: 1.2rem;
	transition: all ease 0.3s;
}

.menu ul li:hover a {
	color: #b8962f;
}

.menu ul li ul.sub_menu {
	position: absolute;
	min-width: 200px;
	padding: 10px 15px;
	background: #f5f5f5;
	border: 3px solid #b8962f;
	left: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	z-index: 1;
	text-align: left;
}

.menu ul li:hover ul.sub_menu {
	opacity: 1;
	visibility: visible;
}

.menu ul li ul.sub_menu li {
	display: flex; 
	padding: 10px 0; 
}

.menu ul li ul li:hover a{
	color: #800080;
}

.cloud-wavy{
    content: " ";
    position: absolute;
    background: radial-gradient(circle at 50% 0%, #f5f5f5 27%, #b8962f 40%, transparent 35%);
    background-size: 15px 26px;
    height: 11px;
    background-repeat: repeat-x;
    left: 50%;
    bottom: -10px;
    z-index: 1;
    width: 100%;
    margin: auto;
    transform: translateX(-50%);
}

/* MAIN BANNER */
#main-banner{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;	
	margin-top: 170px;
	margin-bottom: 0;
	background-color: #800080;
}

.main-banner-box{
	width: 100%;
	height: auto;
}

.main-banner-box img{
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

/* SERVICE */
#service{
	padding: 0 20%;
	height: 400px;
	padding-bottom: 10px;
	background-color: #800080;
	text-transform: capitalize;
	margin-top: 0;
}

.custom-wavy-top {
    position: absolute;
    top: 1370px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-wavy-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 78px;
}

.custom-wavy-top .shape-fill {
    fill: #800080;
}

.box-container{
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
	cursor: pointer;
	margin-top: 0;
}
	
.box{
	margin-top: 110px;
	padding: 20px;
	text-align: center;
	border-radius: 5px;
	background: white;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}

.box:hover	{
	transform: scale(1.03);
	box-shadow: 0 10px 15px rgba(0,0,0,0.3);
}

.box img{
	height: 70px;
}

.box h3{
	color: black;
	padding: 10px 0;
	font-size: 20px;
}

.box p{
	color: #777;
	line-height: 1.6;
	font-size: 14px;
}

/* CART */
.cart{
	position: fixed;
	top: 0;
	right: -100%;
	width: 360px;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 10px rgba(0,0,0,0.3);
	padding: 65px 20px 40px;
	z-index: 6;
	overflow: auto;
	transition: 0.5s;
}

.cart.active{
	right: 0;
}

.cart-title{
	text-align: center;
	font-size: 30px;
}

.cart-box{
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.cart-box img{
	width: 100px;
	height: 100px;
	border-radius: 6px;
	object-fit: cover;
	margin-right: 20px;
}

.cart-detail{
	display: grid;
	gap: 8px;
	margin-right: auto;
}

.cart-product-title{
	font-size: 16px;
	line-height: 1;
}

.cart-price{
	font-weight: 500;
}

.cart-quantity{
	display: flex;
	width: 100px;
	border: 1px solid #999;
	border-radius: 6px;
}

.cart-quantity button{
	background: transparent;
	width: 30px;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

.cart-quantity #decrement{
	color: #999;
}

.cart-quantity .number{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	cursor: default;
}

.total{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-top: 1px solid #333;
	margin-top: 20px;
	font-size: 18px;
}

.total-price{
	margin-left: 10px;
	font-weight: 600;
}

.btn-buy{
	display: block;
	padding: 10px 30px;
	background: #800080;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	color: #fff;
	margin: 20px auto 0;
	cursor: pointer;
}

.btn-buy:hover{
	background: #b8962f;
}

#cart-close{
	position: absolute;
	top: 20px;
	right: 15px;
	font-size: 35px;
	cursor: pointer;
}

.cart-remove{
	font-size: 25px;
	cursor: pointer;
}

/* BEST SELLER */
#best_seller{
	max-width: 1200px;
	width: 100%;
	margin: 40px auto;
}

.best-seller-heading{
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 30px;
}

.best-seller-heading h2{
	margin-top: 5%;
	color: #b8962f;
	font-size: 2rem;
	font-weight: 500;
}

.best-seller-heading p{
	color: #777;
	font-size: 1rem;
	font-weight: 400;
}

.best-seller-heading img{
	width: 100%;
}
	
.best-seller-box{
	max-width: 250px;
	width: 100%;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	background-color: white;
}

.best-seller-img{
	width: 100%;
	height: 250px;
	display: flex;
	margin: auto;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.best-seller-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.best-seller-img span{
	position: absolute;
	left: 10px;
	top: 10px;
	background-color: #b8962f;
	color: white;
	padding: 3px 10px;
	font-weight: 400;
	border-radius: 20px;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
}

.best-seller-img:hover img{
	transform: scale(1.1);
	transition: all ease 0.5s;
}

.best-seller-text{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 5px 20px;
}

.best-seller-text span{
	color: black;
	font-weight: 400;
	font-size: 0.9rem;
}

.best-seller-text .best-seller-title{
	color: #800080;
	font-weight: 500;
	font-size: 0.9rem;
}

.best-seller-cart-btn{
	bottom: 20px;
}

.swiper-pagination{
	position: static !important;
	margin-top: 10px !important;
}

.swiper-pagination-bullet{
	margin: 0 3px !important;
	width: 100px !important;
	height: 5px !important;
	border-radius: 10px !important;
}

.swiper-pagination-bullet-active{
	height: 9px !important;
	background-color: #800080 !important;
}

/* COLLECTION */
#collection {
    position: relative;
    padding-top: 100px;
    background-color: #800080;
    width: 100%; 
    margin: 200px 0 0 0;
	padding-bottom: 60px;
}

.custom-wavy-bottom{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.custom-wavy-bottom svg {
	position: relative;
    display: block;
    width: calc(112% + 1.3px);
    height: 100px;
}

.custom-wavy-bottom .shape-fill {
    fill: #800080;
}

.collection-heading{
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 30px;
}

.collection-heading h2{
	margin-top: -100px;
	color: #b8962f;
	font-size: 2rem;
	font-weight: 500;
}

.collection-heading p{
	color: white;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 40px;
}

.collection-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 30px;
	padding: 0px;
	margin: 0 auto;
	max-width: 1200px;
	box-sizing: border-box;
}

.collection-box{
	width: 100%;
	height: 300px;
	position: relative;
	transition: all ease 0.3s;
}

.collection-box:hover{
	opacity: 0.6;
}

.collection-box::after {
    content: attr(data-tooltip); 
    position: absolute;
    bottom: -1.5em; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #b8962f; 
    color: #fff; 
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    font-size: 0.85em;
    z-index: 10;
}

.collection-box:hover::after {
    opacity: 1;
    visibility: visible;
}

.collection-box img{
	position: absolute;
	border-radius: 20px;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	object-fit: cover;
	object-position: center;
}

.collection-box b{
	position: absolute;
	left: 40px;
	bottom: 10px;
	font-size: 1.2rem;
	font-weight: 500;
	color: black;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.custom-wavy-bottom-close {
    position: absolute;
    top: 823px;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}

.custom-wavy-bottom-close svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-wavy-bottom-close .shape-fill {
    fill: #800080;
}

/* REVIEW */
.review-container{
    align-items: center;
    text-align: center;
    padding: 20px;
	margin: 20px auto;
	margin-bottom: 40px;
}

.review-title{
	padding-top: 70px;
	width: 100%;
}

.review-title h2{
	margin-top: 5%;
	color: #b8962f;
	font-size: 2rem;
	font-weight: 500;
}

.review-title p{
	color: #777;
	font-size: 1rem;
	font-weight: 400;
}

.review-plushie-wrap {
    position: relative;
    width: 100%;
    margin: auto;
    align-items: center;
	padding-top: 50px;
}

.listing-plushie-button{
	position: absolute;
	top: 50%;
	width: 80px;
	height: 50px;
	line-height: 50px;
	margin-top: -25px;
	z-index: 3;
	cursor: pointer;
	background: #800080;
	box-shadow: 0 9px 26px rgba(58, 87, 135,0.45);
	transition: all 200ms linear;
	outline: none;
}

.listing-plushie-button.listing-plushie-button-next{
	right: -30px;
	padding-right: 20px;
	border-radius: 60px 0 0 60px;
}

.listing-plushie-button.listing-plushie-button-prev{
	left: -30px;
	padding-left: 72px;
	border-radius: 0 60px 60px 0;
}

.listing-plushie-button.listing-plushie-button-next:hover{
	right: -15px;
}

.listing-plushie-button.listing-plushie-button-prev:hover{
	left: -15px;
}

.review-plushie{
    width: 100%;
    overflow: hidden;
	height: auto;
}

.swiper-container{
	width: 80%;
	margin: auto;
	align-items: center;
	margin-bottom: 250px;
	overflow: hidden;
}

.swiper-slide-active .test-item{
	opacity: 1.5;
	transform: scale(1.0);
}

.test-item{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all .3s ease-in-out;
    transform: scale(0.9);
    opacity: 0.5;
	margin-top: 30px;
}

.test-avatar{
	position: absolute;
	left: 50%;
	top: -20px;
	width: 100px;
	height: 100px;
	margin-left: -50px;
}

.test-avatar img{
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 6px solid #800080;
	box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
	object-fit: cover;
}

.review-text-before{
	position: absolute;
	color: #800080;
	opacity: .1;
	font-size: 35px;
	bottom: 25px;
	right: 30px;
}

.review-text{
	padding: 77px 50px 75px;
	background: #dcdcdc;
	border-radius: 10px;
	text-align: center;
	transition: all .3s ease-in-out;
}

.review-text .listing-rating{
	margin-bottom: 12px;
}

.listing-rating i{
	color: #efcc00;
}

.review-text p{
	color: #808080;
	font-size: 18px;
	font-style: italic;
	line-height: 25px;
	padding-bottom: 15px;
	font-weight: 600;
}

.review-avatar h3{
	color: #800080;
	font-size: 20px;
}

.review-avatar h4{
	font-size: 16px;
	padding-top: 2px;
	color: #800080;
}

.review-text-after{
	position: absolute;
	color: #800080;
	opacity: 1.5;
	font-size: 35px;
	top: 25px;
	left: 30px;
}

/* FOOTER */
footer{
	width: 100%;
	position: relative;
	background: #e0ccf4;
	padding: 20px 50px;
	min-height: 100px;
}

footer .wave{
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100px;
	background: url('images/wave.png');
	background-size: 1000px 100px;
}

footer .wave#wave1{
	z-index: 5;
	opacity: 1;
	bottom: 0;
	animation: animateWave 4s linear infinite;
}

footer .wave#wave2{
	z-index: 4;
	opacity: 0.5;
	bottom: 10px;
	animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3{
	z-index: 5;
	opacity: 0.2;
	bottom: 15px;
	animation: animateWave 4s linear infinite;
}

footer .wave#wave4{
	z-index: 4;
	opacity: 0.7;
	bottom: 20px;
	animation: animateWave_02 4s linear infinite;
}

@keyframes animateWave{
	0%{
		background-position-x: 1000px;
	}
	100%{
		background-position-x: 0px;
	}
}

@keyframes animateWave_02{
	0%{
		background-position-x: 0px;
	}
	100%{
		background-position-x: 1000px;
	}
}

.row{
	width: 85%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.col{
	flex-basis: 25%;
	padding: 10px;
}

.col:nth-child(2), .col:nth-child(3){
	flex-basis: 15%;
}

.col .logo{
	width: 70%;
	margin-bottom: 20px;
	margin-left: 0px;
}

.col p{
	line-height: 1.5rem;
	color: #800080;
}

.col h3{
	width: fit-content;
	margin-bottom: 40px;
	position: relative;
	color: #800080;
	font-size: 20px;
}

.col h4{
	color: #800080;
}

.email-id{
	width: fit-content;
	border-bottom: 1px solid #800080;
	margin: 20px 0;
}

.col ul li{
	list-style: none;
	margin-bottom: 12px;
}

.col ul li a{
	text-decoration: none;
	color: #800080;
}

.col ul li a:hover{
	color: white;
}

.col form{
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #800080;
	margin-bottom: 50px;
}

.col form .far{
	font-size: 18px;
	margin-right: 10px;
	color: #800080;
}

.col form input{
	width: 100%;
	background-color: transparent;
	color: white;
	border: 0;
	outline: none;
}

.col form button{
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}

.col form button .fas{
	font-size: 16px;
	color: #800080;
}

.social-icons .fab{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #800080;
	background: #fff;
	margin-right: 15px;
	transition: 1s;
	cursor: pointer;
}

.social-icons .fab:hover{
	background: #800080;
	color: #b8962f;
}

hr{
	width: 90%;
	border: 0;
	border-bottom: 2px solid #800080;
	margin: 30px auto;
}

.copyright{
	text-align: center;
	color: #800080;
}

.card-icons {
    display: flex;
    justify-content: center; 
}

.card-icons img{
	width: 50px;
	padding: 15px 0px;
	margin-left: 5px;
}

.underline{
	width: 100%;
	height: 5px;
	background: #800080;
	border-radius: 3px;
	position: absolute;
	top: 30px;
	left: 0;
	overflow: hidden;
}

.underline span{
	width: 15px;
	height: 100%;
	background: white;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 10px;
	animation: moving 2s linear infinite;
}

@keyframes moving{
	0%{
		left: -20px;
	}
	100%{
		left: 100%;
	}
}

/* LOADING TO TOP */
#progress{
	position: fixed;
	bottom: 20px;
	right: 10px;
	height: 70px;
	width: 70px;
	display: none;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0,2);
	cursor: pointer;
}

#progress-value{
	display: block;
	height: calc(100% - 15px);
	width: calc(100% - 15px);
	background-color: white;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 35px;
	color: #800080;
}