* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

body {
	background: #f3f3f3;
	color: #222;
}

/* NAVBAR */

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background: white;
	/*border-radius: 10px;*/
	margin: 20px 10%;
	box-shadow: 0 0 .6rem rgba(0, 0, 0, .2);
	position: sticky;
	top: 10px;
	height: 100px;
	box-sizing: border-box;
	z-index: 2;
}

.logo {
	font-weight: bold;
	letter-spacing: 1px;
}

.logo img{
	width: 200px;
	height: auto;
}

nav a {
	margin: 0 12px;
	font-size: 14px;
	color: #444;
	cursor: pointer;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-right input {
	padding: 7px 10px;
	/*border-radius: 20px;*/
	border: 1px solid #ddd;
}

.nav-right span{
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-right span img{
	width: 100%;
	height: auto;
}

/* HERO */

.hero {
	margin: 0 10%;
	height: 260px;
	background: url(' /img/wall-art.jpg') center/cover;
	/*border-radius: 12px;*/
	display: flex;
	align-items: center;
	padding: 40px;
}

.hero-text {
	background: rgba(255, 255, 255, 0.8);
	padding: 25px;
	/*border-radius: 8px;*/
}

.hero h1 {
	font-size: 26px;
	margin-bottom: 10px;
}

.hero button {
	margin-top: 10px;
	padding: 10px 18px;
	border: none;
	background: #111;
	color: white;
	border-radius: 20px;
	cursor: pointer;
}

/* SHOP LAYOUT */

.shop {
	display: flex;
	margin: 30px 10%;
	gap: 40px;
}

.filters {
	width: 20%;
	max-width: 300px;
	background: white;
	padding: 20px;
	/*border-radius: 10px;*/
	height: fit-content;
	position: sticky;
	top: 115px;
}

.filters h4 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 14px;
}

.filters ul {
	list-style: none;
}

.filters li {
	margin-bottom: 6px;
	color: #555;
}

.colors {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.colors span {
	min-width: 20px;
	height: 20px;
	/*border-radius: 50%;*/
	background: #ccc;
	display: block;
}

.colors span:nth-child(1) {
	background: #000;
}
.colors span:nth-child(2) {
	background: #e5e5e5;
}
.colors span:nth-child(3) {
	background: #8d9a7a;
}
.colors span:nth-child(4) {
	background: #b08a62;
}
.colors span:nth-child(5) {
	background: #d8d8d8;
}

.sizes span {
	border: 1px solid #ddd;
	padding: 5px 10px;
	margin: 5px;
	display: inline-block;
	font-size: 12px;
}

/* PRODUCTS */

.products {
	flex: 1;
}

.products-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.products-header select {
	padding: 6px 10px;
	/*border-radius: 6px;*/
	border: 1px solid #ddd;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.product_details .product-grid {
	grid-template-columns: repeat(4, 1fr);
}

.product_details > h2{
	margin-bottom: 2rem;
	font-size: 2rem;
}

.card {
	background: #ffffff;
	padding: 1.5rem;
	/*border-radius: .8rem;*/
	text-align: center;
	transition: 0.2s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.card img {
	width: 100%;
	margin-bottom: 10px;
	padding: 6px;
	background: #000000;
}

.card h3 {
	font-size: 14px;
	margin-bottom: 5px;
}

.card p {
	font-weight: bold;
	margin-bottom: 5px;
}

.card span {
	font-size: 12px;
	color: #666;
}

/* FOOTER */

footer {
	margin: 50px 10%;
	background: white;
	padding: 30px;
	/*border-radius: 10px;*/
}

.newsletter {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.newsletter input {
	padding: 10px 14px;
	/*border-radius: 20px;*/
	border: 1px solid #ddd;
	width: 260px;
}

.newsletter button {
	border: none;
	background: #111;
	color: white;
	/*border-radius: 50%;*/
	width: 36px;
	height: 36px;
	cursor: pointer;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #555;
}

.links a {
	margin-right: 10px;
	cursor: pointer;
}

.social span {
	margin-left: 10px;
}

.product_details{
	padding: 40px 60px;
	background:#f5f5f5;
	margin: 0 6%;
}

.product-wrapper{
	display:grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items:start;
}


/* LEFT SIDE */

.product_gallery{
	background: #ffffff;
	padding: 6rem 0;
}

.product_gallery .main-image{
	margin: auto;
	width: 400px;
	border: 10px solid #000000;
	background: #fff;
	padding: 20px;
	box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.product_gallery .main-image img{
	width:100%;
	display:block;
}

.thumbnails{
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: auto;
	margin-top: 15px;
}

.thumbnails img{
	width:90px;
	height:90px;
	object-fit:cover;
	border-radius:10px;
	cursor:pointer;
	background:#fff;
	padding:6px;
	box-shadow:0 5px 15px rgba(0,0,0,0.05);
}


/* RIGHT SIDE */

.product-info h1{
	font-size:28px;
	font-weight:500;
	margin-bottom:10px;
}

.price{
	font-size:20px;
	font-weight:600;
	margin-bottom:20px;
}

.option-group{
	margin-bottom:20px;
}

.option-group label{
	display:block;
	font-size: 1.1rem;
	margin-bottom:6px;
	color:#555;
}

.option-group select{
	width:100%;
	padding: 1rem 1rem;
	border-radius: 1.5rem;
	border:1px solid #ddd;
	background:#fff;
}


/* SIZE */

.sizes span{
	padding:8px 12px;
	border-radius:20px;
	border:1px solid #ddd;
	font-size:12px;
	cursor:pointer;
}

.sizes .active{
	background:#111;
	color:#fff;
	border:none;
}


/* COLORS */

.colors{
	display:flex;
	gap:10px;
}

.colors span{
	width:24px;
	height:24px;
	border-radius:50%;
	display:inline-block;
	border:1px solid #ccc;
	cursor:pointer;
}

.black{background:#000;}
.gray{background:#555;}
.brown{background:#8b5a2b;}
.oak{background:#c49a6c;}
.beige{background:#e5d3b3;}


/* DESCRIPTION */

.desc{
	font-size: 1.1rem;
	line-height:1.6;
	color:#555;
	margin:20px 0;
}


/* QTY */

.qty{
	display:flex;
	align-items:center;
	gap:15px;
	margin-bottom:20px;
}

.qty button{
	width:40px;
	height:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	border-radius:50%;
	border:1px solid #ddd;
	background:#fff;
	cursor:pointer;
}


/* BUTTONS */

.add-cart{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width: 100%;
	height: 50px;
	border:none;
	border-radius:25px;
	background:linear-gradient(to right,#333,#000);
	color:#fff;
	margin-bottom:10px;
	cursor:pointer;
}

.favorite{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width:100%;
	padding:12px;
	border-radius:25px;
	border:1px solid #ccc;
	background:#fff;
	cursor:pointer;
}
.add-cart img, .favorite img{
	width: 24px;
	height: auto;
}


/* ACCORDION */

.accordion div{
	padding:15px 0;
	border-bottom:1px solid #eee;
	font-size:14px;
	color:#444;
	cursor:pointer;
}