@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container{
	max-width: auto;
	transition: transform .5s;
	background-image: url(images/Background8.png);
}

a{
	text-decoration: underline;
	color: #fff;
	box-shawdow: 0 0 0 #ff523b inset;
	transition: box-shadow 0.3s ease-in-out;
}

a:hover {
	box-shadow: 0 -100px 0 #ff523b inset;
	color: black;
}

body {
	background-image: url(images/Background8.png);
}

header {
    position: fixed;

    width: 100%;
    padding: 25px 9%;
 
    z-index: 99;
}

.container-h{	
	background-color: #000000;		
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}
.navbar{
	display: flex;
	align-items: center;
}

.logo img{
	width: 83px;
	height: 74px;
	margin-bottom: 10px;
	margin-top: 10px;	
}

.nav a{
	text-decoration: none;
}

.nav{
	flex: 1;
	text-align: right;
	font-size: small;
	max-width: auto;
}

.nav ul{
	display: inline-block;
	list-style-type: none;
}

.nav ul li{
	display: inline-block;
	margin-right: 10px;
}

.row{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}


.header-pics img{
	cursor: pointer;
	filter: grayscale(0%);
}

.header-pics img:hover{
	filter: grayscale(100%);
}

.header-hamburger img{
	cursor: pointer;
	filter: grayscale(0%);
}

.header-hamburger img:hover{
	filter: grayscale(100%);
}


.price-and-cart .add-cart {
    padding: 5px;
    background: #e35f26;
    border-radius: 6px;
    font-size: small;
    color: #fff;
    cursor: pointer;
}

.product-box .price-and-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.product-list-container{	
	max-width: 1300px;
	margin: auto;
	margin-top: 30px;
	padding-top: 25px;
	padding-left: 25px;
	padding-right: 25px;	
}

.shop {
	max-width: 1300px;
	margin: auto;
	margin-top: 30px;
	padding-top: 25px;
	padding-left: 25px;
	padding-right: 25px;
}

.section-title {
    font-size: 35px;
    text-align: left;
    margin-bottom: 15px;
	color: #FF523B;
}

.product-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-box .img-box {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    transition: 0.5s;
}

.img-box:hover img {
    transform: scale(1.1);
}

.product-box .product-title {
    font-size: 20px;
    margin-top: 10px;
}



.about-me{
	background: radial-gradient(#ffffff,#ffd6d6);
	max-width: 1300px;
	margin: auto;
	margin-top: 30px;
	padding-top: 25px;
	padding-left: 25px;
	padding-right: 25px;	
}
.about-me-layout {
     display: flex;
     flex-direction: row;               
     align-items: top;
     justify-items: center;
}
		
.about-me-text, .about-me-image {                 
     width: 100%;
     height: auto;
     flex-direction: column;
}
.contact-me-text{
	  width: 100%;
     height: auto;
     flex-direction: column;
	
}

.contact-me-text img{
	cursor: pointer;
	filter: grayscale(0%);
}

.contact-me-text img:hover{
	filter: grayscale(100%);
}

about-me-content img {
       width: 100%;
       height: auto;
		padding-bottom: 20px;
}

about-me-content p {
    text-align: left;
    color: #000000;
    max-width: 100%;
    padding-right: 10px;
	padding-bottom: 20px;
    font-size: large;
	vertical-align: top;
}

.review-submit{
	background: radial-gradient(#ffffff,#ffd6d6);
	max-width: 1300px;
	margin: auto;
	margin-top: 30px;
	padding-top: 25px;
	padding-left: 25px;
	padding-right: 25px;	
	padding-bottom: 20px;
	text-align: center;
}


.review-btn{
	background-color: #ff523b;
	color: #fff;
	font-size: large;
	padding: 8px 10px;
	margin: 5px 5px;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none;
}

.review-btn:hover{
	background: #563434;
}

input[type="submit"] {
	background-color: #ff523b;
	color: #fff;
	font-size: small;
	padding: 8px 10px;
	margin: 5px 5px;
	border-radius: 10px;
	cursor: pointer;
}

input[type="submit"]:hover{
	background: #563434;
}

input[type="reset"] {
	background-color: #ff523b;
	color: #fff;
	font-size: small;
	padding: 8px 10px;
	margin: 5px 5px;
	border-radius: 10px;
	cursor: pointer;
}

input[type="reset"]:hover{
	background: #563434;
}


	
	.menu-icon{
	display: none;
	cursor: pointer;
	width: 30px;
	height: 30px; 
}




/*----------------footer--------------*/

.footer{
	background: #000;
	color: #FFFFFF;
	font-size: small;	
	padding: 15px 0 15px;
	margin: auto;
	padding-left: 25px;
	padding-right: 25px;
}

.footer p{
	color: #FFFFFF;

}

.footer h3{
	color: #FFFFFF;
	margin-bottom: 20px;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
	min-width: 125px;
	padding: 10px;	
}

.footer-col-1 img{
	width: 83px;
	height: 74px;
	margin-bottom: 5px;
}

.footer-col-2,{
	line-height: 30px;	
}

.footer-col-2, .footer-col-3, .footer-col-4{
	
	flex-basis: 50%;	
	text-align: center;
}

.footer p{	
	color: #ffffff;
	margin-bottom: 10px;
	line-height: 20px;
}



.footer-col-3{
	flex-basis: 20%;	
	text-align: center;
		
}

.footer-col-3 ul{
	display: inline-block;
	list-style-type: none;
}

.footer-col-3 ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-col-3 img{
	cursor: pointer;
	filter: grayscale(0%);
}

.footer-col-3 img:hover{
	filter: grayscale(100%);
}

.footer-col-4{
	flex-basis: 20%;	
	text-align: center;
}

.footer-col-4 ul{
	display: inline-block;
	list-style-type: none;
}

.footer-col-4 ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-col-4 img{
	cursor: pointer;
	filter: grayscale(0%);
}

.footer-col-4 img:hover{
	filter: grayscale(100%);
}

.footer hr{
	border: none;
	background: #b5b5b5;
	height: 1px;
	margin: 20px 0;
}

.copyright{
	text-align:center;
}

.menu-icon{
	display: none;
	cursor: pointer;
	width: 30px;
	height: 30px; 
}

/*----------------end of footer--------------*/


/*------------ media query for menu ---------*/

@media screen and (max-width: 900px){
	
  
	
.nav ul{		
	position: absolute;
	top: 90px;
	left: 0;
	background: #333;
	width: 100%;
	overflow: hidden;
	transition: max-height 0.5s;
}
	
.nav ul li{
	display: block;
	margin-right: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
}
	
.nav ul li a{
	color: #FFFFFF;
	text-decoration: none;
}
	
.menu-icon{
	display: block;
	cursor: pointer;
	margin-left: 20px;
}
	
.header-pics{
	display: none;
}
	
 .about-me-layout {
     flex-direction: column;
}

}
