@charset "UTF-8";
/* CSS Document */

/*reset*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
  ul {
  list-style:none;
}
  a {
  text-decoration:none;
  color:inherit;
display: block;
cursor: pointer;
}



@font-face {
    font-family: Montserrat Semibold;
    src: url('../font/Montserrat-SemiBold.ttf');
	font-weight: 300;
}

@font-face {
    font-family: Montserrat Regular;
    src: url('../font/Montserrat-Regular.ttf');
	font-weight: 200;
}

@font-face {
    font-family: Montserrat Light;
    src: url('../font/Montserrat-Light.ttf');
	font-weight: 100;
}

@font-face {
    font-family: Laviossa;
    src: url('../font/Laviossa-Medium.otf');
}

@font-face {
    font-family: Octobre;
    src: url('../font/octobre-regular.otf');
}
/*style*/

body{
	background-color: white;
	margin: 0;
	position: relative;
	min-height: 100vh;
  	font-family: Montserrat Regular, Montserrat Semibold, Montserrat Light;
	letter-spacing: 0.5px;
	scroll-behavior: smooth;
}

.body-wrapper{
	width: 100vw;
	overflow: hidden;
}

header{
	width: 100%;
    background-color: transparent;
	position: fixed;
	top: 0;
	z-index: 996;
	color: white;
	padding: 8px 10px;
	transition: 0.5s ease-in-out ;
	font-size: 14px;
	display: flex;
	gap: 10px;
}
/*search*/

header .search{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	z-index: 10;
	cursor: pointer;
}

.searchBox{
	position: absolute;
	left: -100%;
	width: 100%;
	
	display: flex;
	background: none;
	align-items: center;
	padding: 0 50px;
	transition: ease-in-out;
}

.searchBox.active{
	left: 0;
}
.searchBox input{
	width: 100%;
	border: none;
	outline: none;
	height: 50px;
	color: #fff;
	font-size: 14px;
	background: transparent;
	border-bottom: 1px solid white;
}

.searchBox input::placeholder{
color:gainsboro;
}


#searchBtn{
	position: relative;
	padding-left: 8px;
}

#searchBtn.active{
	right: 0;
}

#closeBtn{
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	scale: 0;
}

#closeBtn.active{
	opacity: 1;
	visibility: visible;
	transition: 0.5s;
	scale: 1;
}



nav{ 
  	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: 0.5s ease-in-out;
	padding: 5px 0;
	
    }

nav.active{
	opacity: 0;
	visibility: hidden;
	transition: 0.5s ease-in-out;
	scale: 0;
}

nav a:hover, i:hover{
	opacity: 0.7;
	color: darkgray;
	transition: 0.3s;
}

.navbar-left{
	
	display: flex;
	justify-content: flex-start;
}

i{
	margin-right: 8px;
}

/*HEADER FIXED START*/
header#fixed-header{
	width: 100%;
    background-color: #FFFFFF;
	position: fixed;
	top: 0;
	z-index: 996;
	color: #333333;
	padding: 8px 10px;
	transition: 0.5s ease-in-out ;
	font-size: 14px;
	display: flex;
	gap: 10px;
}
/*search*/

header .search{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	z-index: 10;
	cursor: pointer;
}

.searchBox{
	position: absolute;
	left: -100%;
	width: 100%;
	
	display: flex;
	background: none;
	align-items: center;
	padding: 0 50px;
	transition: ease-in-out;
}

.searchBox.active{
	left: 0;
}
.searchBox input#search-bl{
	width: 100%;
	border: none;
	outline: none;
	height: 40px;
	color: #333333;
	font-size: 14px;
	background: transparent;
	border-bottom: 1px solid #333333;
}

.searchBox input::placeholder{
color:gainsboro;
}


#searchBtn{
	position: relative;
	padding-left: 8px;
}

#searchBtn.active{
	right: 0;
}

#closeBtn{
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	scale: 0;
}

#closeBtn.active{
	opacity: 1;
	visibility: visible;
	transition: 0.5s;
	scale: 1;
}
/*HEADER FIXED END*/

/*NAVBAR START*/

.logo-center{
	
	text-align: center;
	transition: all 0.5s;
}

.logo-center img{
	width: 100px;
	text-align: center;
}


.navbar-right{
	
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}


main{
	justify-content: center;
	min-width: 100vw;
	min-height: 100vh;
	
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
	width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
	filter: brightness(70%);
}

/* Add some content at the bottom of the video/page */




.vid-button{
	text-align: center;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	min-width: 250px;
	min-height: 80px;
	padding: 5px;
	border: 1px solid white;
	border-radius: 100px;
	align-items: center;
	justify-content: center;
	color: white;
	transition: 0.3s;
	background-color: transparent;
	cursor: pointer;
	
}

.vid-button:hover{
	opacity: 0.7;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

footer{
	width: 100%;
background-color: #fff;
	align-items: center;
	padding: 15px 30px;
   position: static;
   bottom: 0;
	color: #333;
}

footer.homepage{
	background-color: transparent;
	position: absolute;
	color: #fff;
}

footer.container{
	min-height: 100%;
	align-items: center;
	
}

footer a:hover{
	opacity: 0.7;
	color: gainsboro;
	transition: 0.3s;
}

.footer-flex{
	display: flex;
	justify-content: space-between;
}

.logo-footer{
	text-align: center;
}

.menubar-footer{
	font-size: 10px;
	align-items: center;
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}


.text-footer{
	font-size: 8px;
}

/* SHOP.HTML */

.card-wrapper{
	width: 100%;
}

.card{
 
	position: relative;
	height: 400px;
}

.card img, .card video{
	width: 100%;
	height: 400px;
	object-fit: cover;
	filter: brightness(80%)
}

.card:hover{
	filter: brightness(100%);
	opacity: 0.8;
	color: gainsboro;
	transition: 0.1s ease-in-out;
}

.card-text{
	color: white;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*COLLECTION*/

.catalogue{
	padding: 100px;
}

p.intro-text{
	text-align: center;
	font-size: 12px;
	margin: 0 auto 30px;
	display: block;
	width: 600px;
	line-height: 2;
}

.cat-wrapper{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
  justify-content: space-between;
}

.cat-card{
	width: 300px;
}

.cat-card img{
	width: 300px;
}

.cat-card:hover{
	transform: scale(1.2);
	transition: 0.3s ease-in-out;
}

/*LOGIN FORM*/

main#user-form{
	background-image: url('../images/deco/for-user.jpg');
	background-size: cover;
	min-height: 100vh;
	
}


.body-02, .body-03{
	width: 100vw;
	height: 100vh;
	top: 0;
	right: -100%;
	position: fixed;
	z-index: 997;
	overflow: hidden;
}

.body-02.active, .body-03.active{
	top: 0;
	right: 0;
	
}

.black-02, .black-03{
	z-index: 998;
	width: 100vw;
	height: 100%;
	outline: 0;
	border: none;
	background-color: #333;
	opacity: 0;
	position: fixed;
	top: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out;
	cursor: pointer;
}

.black-02.active, .black-03.active{
	visibility: visible;
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
}

.form-wrapper, .basket-wrapper{
	top: 0;
	position: fixed;
	z-index: 999;
	right: -100%;
	justify-items: center;
	align-items: center;
	transition: 0.5s ease-in-out;
}



.form-wrapper.active, .basket-wrapper.active{
	transition: 0.5s ease-in-out;
	top:  0;
	right: 0;
}

form.form{
	transition: 1s;
	background: #fff;
	padding: 50px 40px;
	width: 350px;
	height: 100vh;
	position: absolute;
	right: 0;
}

.form i{
	width: 20px;
	position: absolute;
	right: 10px;
	top: 20px;
}
h1.form-title{
	width: 100%;
	text-align: center;
	font-size: 20px;
	margin: 20px 0 10px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #333333;
}

p.login-intro{
	text-align: center;
	margin: 10px 0 50px 0;
	font-size: 12px;
}

p.basket-intro{
	text-align: center;
	padding: 60px 40px 60px;
	font-size: 15px;
	line-height: 20px;
	color: gray;
}

.basket-button{
	justify-content: center;
	width: 100%;
	height: 50px;
	border: 1px solid gray;
	border-radius: 50px;
	background-color: transparent;
	color: gray;
}

.basket-button:hover{
	color: #333;
	border: 1px solid #333333;
	transition: 0.3s;
}

.form-message-error{
	color: red;
}

.form-input-error{
	color: indianred
}

.form-input{
	
}

input.form-input{
	margin: 10px 0;
	width: 100%;
	padding: 10px 5px;
	border: none;
	border-bottom: 1px solid #B9B9B9;
	background-color: transparent;
	outline: 0;
	}

input.form-input:focus{
	border-bottom: 1px solid #333333;
	
}

button.form-button{
	width: 100%;
	padding: 10px;
	margin: 20px 0;
	border: none;
	border-radius: 50px;
	background: #333;
	color: white;
}

button.form-button:hover{
	opacity: 0.7;
	transition: 0.3s ease-in-out;
}

a.form-link{
	font-size: 12px;
	color: gray;
	margin: 10px 0;
}

a.form-link:hover{
	opacity: 0.7;
	cursor: pointer;
}

/*product*/

.slider-wrap {
  width: 500px;
  margin: 0 50px 0 0;
  position: relative;
}
.slider .slick-slide {
  height: 500px;
  overflow: hidden;
}
.slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs_dots {
  margin: 10px 0 0;
}
.thumbs_list li {
  display: inline-block;
  width: 20%;
  height: 80px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}
.thumbs_list li.slick-active {
  opacity: 1;
}


.video-c01{
	width: 100vw;
  height: 300px;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
	filter: brightness(80%);
}

.product-base{
	padding-top: 100px;
}

.product-wrapper{
	width: 100%;
	display: flex;
	justify-content: center;
	margin: auto;
}

.product-image{
	margin: 20px;
	width: 300px;
}

.product-image img{
	width: 300px;
}

.product-details{
	user-select: none;
}
.product-text{
	margin-bottom: 50px;
	font-size: 13px;
}

.collection-name, .price-tag, p.textCol{
	font-family: montserrat light;
}

.product-name, p.textselect{
	font-family: Montserrat SemiBold;
}
.product-name{
	margin: 5px 0;
	letter-spacing: 1px;
}

.product-code{
	font-family: montserrat light;
	color: gray;
	margin-bottom: 20px;
	font-size: 12px;
}


.text-color{
	display: flex;
	
}

.textCol{
	font-size: 14px;
	margin-bottom: 10px;
}

p.text-select{
	margin-left: 0.5em;
	font-size: 14px;
}

.select-color {
  display: flex;
}

.color {
  height: 25px;
  width: 25px;
  margin-right: 0.5em;
	margin-bottom: 20px;
  border-radius: 18px;
  border: 1px solid gainsboro;
  cursor: pointer;
}

.color.selected{
	border: 1px solid black;
}

.select-size {
  display: flex;
}

.size{
	border: 1px solid gainsboro;
	text-align: center;
	line-height: 30px;
	align-content: center;
	width: 30px;
	height: 30px;
	color: #333;
	font-family: "Montserrat Light";
	margin-right: 0.5em;
	margin-bottom: 50px;
}

.color:hover, .size:hover, .qtyminus:hover, .qtyplus:hover{
   border: 1px solid #333333;
  }

.size.selected{
	border: 1px solid black;
}

.qty-add{
	display: flex;
	margin-bottom: 10px;
	align-items: center;
}

.qty {
    width: 40px;
    height: 25px;
    text-align: center;
	background: #fff;
	border: 1px solid gainsboro;
	color: #333;
	margin: 0 5px;
}
input.qtyplus {
	width:25px;
	height:25px;
	background: #fff;
	border: 1px solid gainsboro;
	color: #333;
}
input.qtyminus {
	width:25px;
	height:25px;
	background: #fff;
	border: 1px solid gainsboro;
	color: #333;
}

.add-button{
	font-size: 12px;
	height: 25px;
	width: 150px;
	background-color: transparent;
	border: none;
	color: #333;
	margin: 0 10px;
}

.add-button:hover{
	background-color: gainsboro;
}

.buy-button{
	height: 50px;
	width: 260px;
	letter-spacing: 1px;
	background: #333;
	border: 1px solid gainsboro;
	color: #fff;
	cursor: pointer;
}

.buy-button:hover{
	opacity: 0.8;
}

.productIntro{
	display: flex;
	width: 100%;
	margin: 100px 0;
}


.productIntroText{
	width: 30%;
	margin: 50px;
	overflow: scroll;
}

.productIntroText h2{
	margin-bottom: 25px;
}

.productIntroText p{
	text-align: justify;
	line-height: 24px;
}

.productGallery{
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 100px;
}

.productGallery img{
	width: 100%;
	height: 50vh;
	object-fit: cover;
}

#p01{
	transition: opacity 0.8s ease;
}

.cat-wrapper#product{
	padding: 0 200px;
}
.product{
	width: 200px;
}

.product img{
	width: 200px;
}

.more-product{
	margin: 100px 0;
}

.more-product h2{
	text-align: center;
	font-size: 15px;
	margin: 50px;
}

/*contact*/

.contact-wrapper{
	width: 400px;
	position: relative;
	display: block;
	margin: 100px auto;	
}

.form-contact{
	
justify-content: center;
}

h2.form-text{
	margin-bottom: 20px;
	text-align: center;
}

p.contact-intro{
	text-align: center;
	color: gray;
	font-family: montserrat light;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 20px;
}
.form-contact input{
	width: 100%;
	height: 40px;
	padding: 10px;
	outline: 0;
	border: 1px solid gainsboro;
	margin: 15px 0;
}

.form-contact textarea{
	width: 100%;
	height: 100px;
	padding: 10px;
	outline: 0;
	border: 1px solid gainsboro;
	margin: 15px 0;
	resize: vertical;
	
}

input, textarea, button{
	font-family: "Montserrat Regular";
}

button.send-contact{
	justify-content: center;
	width: 200px;
	height: 40px;
	background-color: #333;
	color: #fff;
	border: none;
	margin: 15px auto;
	border-radius: 20px;
	position: relative;
	display: block;
}

/*---faq---*/

.faq-wrapper, .order-wrapper{
	width: 700px;
	margin: 100px auto;
  position:relative;
}

.faq-wrapper h2, .order-wrapper h2{
	
	margin: 20px;
 text-align: center;
}

p.FAQ-intro, p.order-intro{
	font-size: 12px;
	text-align: center;
	margin-bottom: 50px;
	color: gray;
	line-height: 20px;
}

div.question {
    display: block;
    line-height: 20px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    transition: 0.5s ease-in;
    position: relative;
    padding: 20px 60px;
    
    margin: 0;
    background: #FFF;
    margin-bottom: 15px;
    font-weight: 600;
	border-bottom: 1px solid gainsboro;
	color: gray;
}
.question:before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-block;
   padding: 20px 0 20px 10px;
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    font-size: 21px;
    background-color: transparent;
    color: gainsboro;
	border: none;
    transform: translateY(-50%);
}
.question.active {
    margin-bottom: 0;
}
div.answer{
	font-size: 12px;
	line-height: 35px;
  max-height:0;
	text-align: justify;
  overflow:hidden;
  transition: 0.3s ease-out;
}
.answer p {
    padding: 10px 20px;
    background-color: transparent;
    margin: 10px 0 15px;
    position:relative;
    padding-left: 60px;
}
.answer p:before {
    content: "A";
    position: absolute;
    left: 0;
    display: inline-block;
   padding: 10px 10px;
	
    line-height: 20px;
    vertical-align: middle;
    text-align: center;
    font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
    font-size: 24px;
    background-color: transparent;
    color: gray;
	border: none;
}

div.question:hover{
  
}
div.question:after {
    content: '\02795';
    font-size: 1rem;
    color: #777;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-46%);
}
div.question.active:after {
    content: "\2796";
}

/*---order---*/

.order-wrapper{
	width: 400px;
}

.step-wrapper{
	border-left: 1px solid #333;
	padding-left: 30px;
}

.order-head{
	margin-bottom: 10px;
	font-family:Consolas;
	font-size: 16px;
	letter-spacing: 1.5px;
}

.order-text{
	margin-bottom: 30px;
	line-height: 24px;
	font-size: 12px;
	text-align: justify;
}

/*=====RESPONSIVE=====*/

@media screen and (max-width:798px) {
	header{
		width: 100%;
		text-align: center;
		justify-content: space-between;
		
	}
	
	header#fixed-header{
		width: 100%;
		text-align: center;
		justify-content: space-between;
		
	}
	
	#myVideo {
  width: 100%;
}
	
	li{	
		text-align: center;
	}
	.footer-flex{
		align-content: center;
		flex-direction: column;
		gap : 10px;
	}
	ul.menubar-footer{
		flex-wrap: wrap;
		align-content:space-evenly;
		justify-content: center;
		font-size: 8px;
		gap: 10px;
	}


/*collection*/

.product-base{
	margin: 0 10%;
}
	
	p.intro-text{
		width: auto;
	margin: 0 auto 30px;
	display: block;
	line-height: 2;
}

.cat-wrapper#collection{
	flex-direction: column;
	align-content: center;
}

	.cat-card{
	width: 250px;
}
.cat-card img{
	width: 250px;
}
	
	/*product*/


.product-wrapper{
	width: 100%;
	margin-top: 30px;
	flex-direction: column;
	justify-content: center;
}
	
	.slider-wrap{
		margin: 0 auto;
		position: relative;
		width: 100%;
		margin-bottom: 50px;
	}

.product-image{
	width: 300px;
}

.product-image img{
	width: 300px;
	justify-content: center;
}

.product-details{
	text-align: center;
	margin: 20px;
}
.product-text{
	margin-bottom: 30px;
	font-size: 13px;
}

.product-name{
	margin: 5px 0;
	
}
	
	.product-select{
		justify-content: center;
		
	}
	
	.size-group{
	display: inline-grid;
		margin-bottom: 20px;
	}
	
.text-color{
	display: inline-flex;
		margin: 0 auto;
	font-size: 13px;
}

	.select-color{
		display: block;
		margin: 0 auto;
	}
	.select-size{
		display: inline-flex;
		margin: 0 auto;
	}

	.size-group p{
		margin-left: 0.5em;
	}
	
	
	input.qtyminus, input.qtyplus, input.qty{
		height: 50px;
		width: 50px;
	}
	
	input.qtyminus, input.qtyplus{
		font-size: 20px;
	}
.qty-add{
	display: flex;
	margin-bottom: 8px;
}


.add-button{
	height: 40px;
	width: 100%;
	margin: 0 0 0 10px;
}

.buy-button{
	height: 50px;
	width: 100%;
}
	.cat-wrapper#product{
		padding: 0;
}
.product{
	width: 100px;
}

.product img{
	width: 100px;
}
	
	/*contact resp*/
	.contact-wrapper{
	width: 200px;
		
}
	
	/*faq resp*/
	.faq-wrapper{
	width: 300px;
}
}
@media screen and (min-width:767px) {
	
	
}	