/* 
   _____                                    _      
  / ____|                                  | |     
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___ 
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |                                        
        |_|                                        

    ------------
    Version 0.1.21

*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
	border-radius: 0px;
}

::-webkit-scrollbar-thumb {
	background-color: rgb(0, 0, 0);
	border-radius: 0px;
}

* {
	padding: 0;
	margin: 0;
}

html {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	height: 100%;
	overflow-x: hidden;
	background-color: #ffffff;
}

img{
	max-width: 100%;
}

.selected{
	background-color: black;
	color: white!important;
}


.navbar{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	margin: 30px 50px;
}

.brand img{
	width: 80px;
}

.links ul{
	display: flex;
	flex-direction: row;
}

.links li{
	margin: 0 20px;
	list-style: none;
	padding-bottom: 8px;
	border-bottom: 2px solid transparent;
}

.links li:hover{
	margin: 0 20px;
	border-bottom: 2px solid black;
}

.links a{
	text-decoration: none;
	font-weight: 500;
	color: black;
	font-size: 15px;
}

.sale{
	color: #d10707!important;
}

.search input{
	height: 45px;
	background-color: rgba(239, 239, 239, 0.53);
	border: none;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	padding-left: 28px;
	outline: none;
}

.info{
	margin: 0 50px;
	background-color: rgba(239, 239, 239, 0.51);
	border-radius: 15px;
	padding: 50px;
}

.info h1{
	font-size: 40px;
	font-weight: 800;
}

.info p{
	font-weight: 500;
	margin-bottom: 30px;
}

.shop{
	margin: 20px 50px;
}

.row{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2%;
}

.col-3{
	width: 18.4%;
}

.card__shop{
	margin-bottom: 60px;
}

.card__img{
	background-color: rgba(239, 239, 239, 0);
	padding: 50px;
	border-radius: 12px;
	border: 2px solid rgba(128, 128, 128, 0.39);
	height: 190px;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card__img img{
	max-height: 190px;
}

.card__shop h5{
	color: #d10707;
	margin-top: 10px;
}

.card__shop h3{
	font-weight: 700;
}

.card__shop button{
	background-color: black;
	color: white;
	font-family: 'Montserrat', sans-serif;
	border-radius: 50px;
	margin-top: 20px;
	padding: 15px 40px;
	font-weight: 500;
	cursor: pointer;
	transition: .3s;
}

.card__shop button:hover{
	background-color: #1c1c1c;
	transition: .3s;
}

.card__shop[end="true"]{
	opacity: 0.6;
}

.card__shop[end="true"] button{
	cursor: not-allowed;
}

.footer{
	margin: -10px 50px;
	padding-top: 30px;
	border-top: 2px solid rgba(0, 0, 0, 0.14);
	padding-bottom: 50px;
	font-weight: 700;
	letter-spacing: 2px;
}

.footer p{
	font-size: 13px;
	color: #5a5a5a;
	letter-spacing: normal;
	margin-bottom: 20px;
}

.footer a{
	text-decoration: none;
	color: #2f2f2f;
	letter-spacing: normal;
	font-size: 13px;
}

.footer a:hover{
	color: #000000
}

/* MODAL (https://codepen.io/francoiscoron/pen/wvyQoPV) */

.modal {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	inset: 0;
	backdrop-filter: blur(2px);
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 999;
}

.modal__inner {
	position: relative;
	max-height: 90vh;
	width: min(100% - 2rem, 90ch);
	padding: 4rem;
	opacity: 1;
	background-color: rgb(255, 255, 255);
	color: #9497ac;
	border-radius: 14px;
}

@media all and (max-width: 1120px) {
	.modal__inner {
		padding: 3rem;
	}

	.modal{
		bottom: 80px;
	}
}

.modal__header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 1.8rem;
	gap: 1rem;
}

.modal__content {
	padding-bottom: 1rem;
	margin-top: -90px;
}

.button-close-modal {
	flex-shrink: 0;
	height: 40px;
	width: 40px;
	background-color: transparent!important;
	border: 0;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 20px;
}


.js-modal {
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.js-modal .modal__inner {
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.5s ease-in-out 0.1s;
}

.js-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.js-modal.is-open .modal__inner {
	opacity: 1;
	transform: translateY(0);
}

.modal__title{
	margin-top: 30px;
	width: 400px;
	font-weight: 800;
	color: #000000;
}

.modal__content{
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.modal__content img{
	width: 360px;
}

.glide__arrows button{
	background-color: transparent;
	border: none;
	margin: 0 20px;
	cursor: pointer;
}

.glide__arrows{
	margin-top: 20px;
}

.modal__content p{
	margin-top: 5px;
	font-weight: 500;
	font-size: 14px;
}

.modal__content h3{
	margin-top: 28px;
	color: black;
	font-size: 14px;
	margin-bottom: 9px;
}

.size-row{
	align-items: center;
	justify-content: center;
	width: 50%;
}

.size{
	border: 2px solid rgba(0, 0, 0, 0.4);
	margin: 8px;
	font-size: 13px;
	padding: 10px 15px;
	border-radius: 2px;
	font-weight: 600;
	color: black;
	transition: .3s;
	cursor: pointer;
}

.size:hover{
	background-color: black;
	color: white;
	transition: .3s;
}

.modal__content h1{
	color: #000000;
	font-weight: 800;
	margin-top: -10px;
}

.modal__content a{
	margin-top: 30px;
	background-color: black;
	border-radius: 50px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	padding: 20px 60px;
	transition: .3s;
}

.modal__content a:hover{
	background-color: #151515;
	transition: .3s;
}

/* Responsive */
@media only screen and (max-width: 1100px) {
	.navbar{
		margin: 40px 30px;
	}

	.info{
		margin: 0 30px;
		padding: 50px 28px 50px;
	}

	.info h1{
		font-size: 30px;
	}

	.info p{
		font-size: small;
	}

	.shop{
		margin: 40px 30px;
	}

	.col-3{
		width: 100%;
	}

	.footer{
		margin: -20px 30px;
	}

	.footer p{
		font-size: 13px;
		color: #5a5a5a;
		letter-spacing: normal;
		margin-bottom: 20px;
	}
	.modal {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		position: fixed;
		inset: 0;
		z-index: 999;
	}

	.modal__title{
		width: 90%;
	}

	.size-row{
		width: 90%;
	}

	.modal__header{
		z-index: 999;
		position: relative;
	}

}
