@font-face {
    font-family: 'Amazon Ember';
    src: url('path-to-font/AmazonEmber.woff2') format('woff2'),
         url('path-to-font/AmazonEmber.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Amazon Ember', sans-serif;
	font-size: 16px;
    line-height: 1.5;
}

body {
    background-color: #f9f9f9;
    color: #333;
	min-width: 1080px;
}

.zm-clear::after {
	content: "";
	clear: none;
	display: table;
}

.zm-clear {
	overflow: auto;
}

.container {
	width: calc(100% - 30px);
    max-width: 1300px;
    margin: 0 auto;
}
.container_header {
	display: flex;
    align-items: center;
}

header {
    background-color: #131A22;
    color: #FFFFFF;
	font-weight: 550;
    padding: 10px 0;
}

header .logo {
    display: inline-block;
	width: 40px;
}

.header-nav {
	display: inline-block;
	width: 440px;
}

header nav {
    margin-left: 20px;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
	padding: 7px 9px;
	border: 1px solid transparent; /* Initial transparent border */
    transition: border-color 0.3s ease; /* Smooth transition effect */
}

header nav ul li:hover {
    border-color: #FFFFFF; /* Change border color to white on hover */
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
	min-width: calc(100% - 500px);
}

.header-right input[type="text"] {
    padding: 7px 10px;
	border-radius: 5px;
    margin-right: 20px;
	min-width: calc(100% - 350px);
}

.cart-icon {
    margin-right: 10px;
	width: 70px;
}

.user {
    margin-right: 20px;
}

.user a {
    text-decoration: none; /* Removes underline */
    color: white; /* Makes text white */
}

.login-btn,
.signup-btn, .subscribe-btn {
    background-color: #f90;
    border: none;
	border-radius: 5px;
	width: 110px;
	font-weight: 550;
    padding: 10px 20px;
    margin-left: 10px;
    color: #fff;
    cursor: pointer;
}

.featured-products {
    padding: 50px 0;
    text-align: center;
}

.featured-products h2 {
    margin-bottom: 20px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: flex-start; /* Aligns items to the left */
	gap: 13.1px; /* Adds spacing between items */
}

.product {
    background-color: #fff;
    padding: 10px;
	width: 19%; /* Adjust the percentage based on your desired item width */
	height: 410px;
	box-sizing: border-box;
	border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
	border: 1px solid transparent; /* Initial transparent border */
    transition: border-color 0.3s ease; /* Smooth transition effect */
}

.size {
	width: 28%;
	float: left;
	margin: 10px;
	box-sizing: border-box;
	border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
	border: 1px solid; /* Initial transparent border */
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px
}

.product:hover {
	border-color: #B9AFAF; /* Change border color to white on hover */
	cursor: pointer; /* Changes cursor to hand */
}

.size:hover {
    border-color: #B9AFAF; /* Change border color to white on hover */
	cursor: pointer; /* Changes cursor to hand */
}

.productDetails {
    background-color: #fff;
    padding: 10px;
	width: 100%;
}

.product img {
    width: 100%;
	border-radius: 5px;
	height: auto;
	height: 60%;
	object-fit: cover;
}

.pictureList img {
    width: 100%;
	border-radius: 5px;
	height: auto;
	height: 20%;
	object-fit: cover;
}

.mainPicture img {
    width: 100%;
	border-radius: 5px;
	height: auto;
	height: 60%;
	object-fit: cover;
}

.product h3 {
    margin: 10px 0;
	font-size: 14px
}

.productName h1 {
	margin: 10px 0;
    font-size: 20px
}

.productPrice h2{
	margin: 10px 0;
	font-size: 25px;
}

.product p {
    color:#000000;
    font-size: 20px;
	font-weight: 700;
}
.product-title {
    margin: 10px 0;
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: pre-wrap;
	word-break: break-word;
}

.product-title:hover {
    color: blue;
}

.quick-view-btn {
    background-color: #333;
    border: none;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
}

.why-choose-us {
    padding: 50px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.why-choose-us h1 {
    margin-bottom: 20px;
	font-size: 30px;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
}

.benefit {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 24%;
	height: 410px;
	border-radius: 5px;
}

.benefit img {
    width: 100%;
	border-radius: 5px;
	height: auto;
	height: 60%;
	object-fit: cover;
    margin-bottom: 10px;
}

.testimonials {
    padding: 50px 0;
    text-align: center;
}

.testimonials h1 {
    margin-bottom: 20px;
	font-size: 30px;
}

.testimonials-grid {
    display: flex;
    justify-content: space-around;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 24%;
	border-radius: 5px;
}

.testimonial img {
    border-radius: 50%;
    max-width: 80px;
    margin-bottom: 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 5px;
}

.testimonial span {
    color: #555;
}

.call-to-action {
    padding: 50px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.call-to-action h1 {
    margin-bottom: 10px;
	font-size: 30px;
}

.call-to-action p {
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscription-form input[type="email"] {
    padding: 10px;
    width: 300px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}

footer {
    background-color: #222;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-info {
    margin-bottom: 10px;
}

.footer-info p {
    margin: 5px 0;
}

.newsletter-signup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-signup input[type="email"] {
    padding: 10px;
    width: 300px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}

.zm-submitButton, .zm-closeButton, .zm-addButton, .zm-viewButton, .zm-saveButton, .zm-approveButton, .zm-takePhoto, .zm-uploadPhoto, .zm-capturePhoto, .zm-upload{
	border: none;
	height: 40px;
	width: 110px;
	border-radius: 5px;
	float: right;
	font-family: 'Merienda', cursive;
	font-size: 12px;
	font-weight: bold;
	color: white;
	cursor: pointer;
	margin: 10px;
}

.zm-submitButton{
	background-color: DodgerBlue;
}

.zm-saveButton{
	background-color:#008000;
}

.zm-viewButton{
	background-color: #800080;
}

.zm-closeButton{
	background-color:#ED1316;
}

.zm-approveButton{
	background-color:DeepPink;
}

.zm-addButton{
	background-color: DeepSkyBlue;
	float: center;
	margin: 10px 0;
}

.zm-takePhoto{
	background-color: Gray;
	float: left;
}

.zm-uploadPhoto{
	background-color: SlateBlue;
	float: center;
	margin: 10px 0;
}

.zm-capturePhoto{
	background-color: Gray;
	float: center;
	margin: 10px 0;
}

.zm-upload{
	background-color: SlateBlue;
	margin: 2px 5px;
	width: calc(100% - 10px);
}

.zm-delete{
	float: none;
	 position: relative;
      left: 24%;
}

button i.fa {
	margin-right: 2px;
}