* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
  
body {
    background-color: #e3e6e6;
    margin-bottom: 100px; 
}
  
/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    background-color: #131921;
    color: white;
    padding: 10px 20px;
    gap: 20px;
}
  
.logo img {
    width: 100px;
    object-fit: contain;
}
  
.nav-text1 {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}
  
.address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: bold;
}
  
.nav-search {
    display: flex;
    flex-grow: 1;
    max-width: 600px;
    margin: 0 10px;
}
  
.nav-search select {
    padding: 8px;
    border: none;
    background-color: #f3f3f3;
    border-radius: 4px;
}
  
#Search-bar {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 4px;
}
  
.icon {
    background-color: #febd69;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
  
.link-address, .returns, .shopping {
    font-size: 12px;
    text-align: left;
}
  
.link-address .container,
.returns .container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}
  
.shopping i {
    font-size: 20px;
}

/* Sub Navigation */
.navshop {
    background-color: #232f3e;
    color: white;
    padding: 10px 20px;
}
  
.navshop .all {
    display: flex;
    align-items: center;
    gap: 20px;
}
  
.together {
    display: flex;
    align-items: center;
    gap: 5px;
}
  
.list ul {
    display: flex;
    gap: 15px;
    list-style: none;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
  
/* Hero Section */
.herocomb {
    background-image: url('amazonbg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    margin-bottom: 40px;
}
  
.hero {
    padding: 20px;
    position: relative;
}
  
.location-banner {
    background-color: #f3f3f3;
    width: fit-content;
    width: 1200px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    padding-left: 100px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    position: absolute;
    top: 170px;
    left: 50%;
    transform: translateX(-50%);

}
.location-banner a{
    text-decoration: none;
}  
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    margin-top:190px;
    margin-bottom: 30px; 
}
  
.cards .card1,
.cards .card2,
.cards .card3,
.cards .card4 {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
  
.cards img {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    border-radius: 5px;
}
  
.cards h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}
  
.see-more {
    text-decoration: none;
    color: #007185;
    font-size: 14px;
}
  
/* Footer */
.footer {
    margin-top: 60px; 
    background-color: #232f3e;
    color: white;
    padding-top: 40px;
    padding-bottom: 20px;
}
  
.back-to-top {
    background-color: #37475a;
    text-align: center;
    padding: 15px;
    margin-top: 0px;
    margin-bottom: 50px;
    
}
  
.back-to-top a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
  
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 60px;
    gap: 30px;
}
  
.footer-links h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}
  
.footer-links ul {
    list-style: none;
}
  
.footer-links ul li {
    margin-bottom: 10px;
}
  
.footer-links ul li a {
    text-decoration: none;
    color: #dddddd;
    font-size: 14px;
}
  
.footer-links ul li a:hover {
    text-decoration: underline;
}
  
.footer-bottom {
    text-align: center;
    border-top: 1px solid #3a4553;
    padding: 20px;
    font-size: 13px;
}
  
.footer-bottom img {
    width: 100px;
    margin-bottom: 10px;
}
