@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;
}

.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: 20px;
	width: 70px;
}

.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 */
}

.product:hover {
    border-color: #B9AFAF; /* Change border color to white on hover */
}

.product img {
    width: 100%;
	border-radius: 5px;
	height: auto;
	height: 60%;
	object-fit: cover;
}

.product h3 {
    margin: 10px 0;
	font-size: 14px
}

.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;
}

.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;
}