* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scrollbar-width: none;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.nav-text {
    display: flex;
    gap: 20px;
}

.icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 45px;
    margin: 46px;
    margin-top: 20px;
}

.product-item {
    text-align: center;
    color: #333;
}

.product-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.product-item h3 {
    font-size: 16px;
    font-weight: normal;
}

.slider {
    width: 1540px;
    height: 750px;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.slides {
    display: flex;
    animation: slide 40s infinite;
}

.slides img {
    width: 100%;
    height: auto;
}

@keyframes slide {
    0% { transform: translateX(0); }
    11.11% { transform: translateX(0); }
    22.22% { transform: translateX(-100%); }
    33.33% { transform: translateX(-200%); }
    44.44% { transform: translateX(-300%); }
    55.55% { transform: translateX(-400%); }
    66.66% { transform: translateX(-500%); }
    77.77% { transform: translateX(-600%); }
    88.88% { transform: translateX(-700%); }
    100% { transform: translateX(-800%); }
}

.bestsellers-section {
    text-align: center;
}

.title {
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 15px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    color: #666;
}

.menu .active {
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 2px;
}

.product-container {
    display: flex;
    justify-content: start;
    width: 100%;
    overflow-x: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    scrollbar-width: none;
}

.product-card {
    width: 350px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-image{ 
    position: relative; 
    display: inline-block; 
} 
 
.default-image { 
    display: block; 
} 
 
.hover-image { 
    display: none;
} 
 
.product-image:hover .default-image { 
    display: none;
} 
 
.product-image:hover .hover-image { 
    display: block;
} 

.product-title {
    font-size: 16px;
    margin: 10px 0;
}

.product-rating {
    color: #f5a623;
    font-size: 14px;
    margin: 5px 0;
}

.product-price {
    font-size: 18px;
    margin: 5px 0;
}

button {
    color: var(--color);
    transition: 0.50s;
}

.add-to-cart {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background-color: #f6921e;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

:root {
    --up-hover: #d9841d;
}

.add-to-cart {
    --hover: var(--up-hover);
}

.add-to-cart:hover,
.add-to-cart:focus {
    box-shadow: inset 0 -3.25em 0 0 var(--hover);
}

.view-all-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 15vh;
    padding-top: 3px; 
}

.view-all-button {
    border: 1px solid #1d2a38;
    padding: 10px 20px;
    text-align: center;
    color: #1d2a38;
    font-weight: bold;
    font-size: 16px;
}

.gift img{
    margin-top: 50px;
    height: 450px;
    width: 1520px;
}

.title-2{
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 15px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 70%;
}

.mmk img{
    margin-top: 20px;
    width: 1520px;
    height: 800px;
}

.shark img{
    margin-top: 20px;
    width: 1520px;
    height: 800px;
}

.product-container-2 {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.product-card-2 {
    width: 350px;
    text-align: center;
    padding: 20px;
}

.product-image-2 img {
    width: 100%;
    height: auto;
}

.product-title-2 {
    font-size: 16px;
    margin: 10px 0;
}

.product-title-2 {
    font-size: 16px;
    margin: 10px 0;
}

.product-rating-2 {
    color: #f5a623;
    font-size: 14px;
    margin: 5px 0;
}

.product-price-2 {
    font-size: 18px;
    margin: 5px 0;
}

.add-to-cart-2 {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background-color: #f6921e;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

:root {
    --up-hover: #d9841d;
}

.add-to-cart-2 {
    --hover: var(--up-hover);
}

.add-to-cart-2:hover,
.add-to-cart-2:focus {
    box-shadow: inset 0 -3.25em 0 0 var(--hover);
}


.product-image-2{ 
    position: relative; 
    display: inline-block; 
} 
 
.default-image-2{ 
    display: block;
} 
 
.hover-image-2 { 
    display: none;
} 
 
.product-image-2:hover .default-image-2 { 
    display: none;
} 
 
.product-image-2:hover .hover-image-2 { 
    display: block;
}


.benefit{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px;
    margin: 46px;
    margin-top: 100px;
}

.benefit img{
    height: 220px;
    width: 150px;
}

.one{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin: 0;
    background-color: #d3efe9;
    font-family: Arial, sans-serif;
}

.testimonial-card {
    max-width: 400px;
    padding: 20px;
    background-color: #d3efe9;
    border-radius: 8px;
}

.quote {
    font-size: 1.2em;
    font-style: italic;
    color: #333;
    margin: 0;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 15px;
}

.profile-name {
    margin: 8px 0;
    font-weight: bold;
    color: #555;
}

.nav-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.nav-buttons button {
    border: none;
    background-color: #ffffff;
    color: #555;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-buttons button:hover {
    background-color: #ddd;
}

.product-title-2 {
    font-size: 18px;
    margin: 10px 0;
}

.product-container-3 {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.product-card-3 {
    width: 350px;
    text-align: center;
    padding: 20px;
}

.product-image-3 img {
    width: 100%;
    height: auto;
}

.product-image-3 img {
    transition: transform 0.5s ease-in-out;
}

.product-image-3 img:hover {
    transform: scale(1.1);
}

.product-title-3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: bold;
}

.featured{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px;
    margin: 46px;
    margin-top: 70px;
}

.featured img{
    height: 130px;
    width: 150px;
}

.end{
    display: flex;
    justify-content: space-around;
}
.two{
    padding-top: 35px;
    height: 40vh;
    margin: 0;
    background-color: #181818;
    font-family: Arial, sans-serif;
    color: white;
}

.know{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

