* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* Logo Styles */
.nav-logo {
    height: 50px;
    width: 100px;
    padding: 5px;
}

.nav-logo-img {
    background-image: url("/Images/amazon_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

/* Address Styles */
.add-first {
    color: #cccccc;
    font-size: 0.75rem;
    margin-left: 15px;
}

.add-second {
    font-size: 0.85rem;
    margin-left: 3px;
    font-weight: 700;
}

.add-icon {
    display: flex;
    align-items: center;
}

/* Search Bar Styles */
.nav-search {
    display: flex;
    justify-content: space-evenly;
    width: 620px;
    height: 40px;
    border-radius: 4px;
    margin: 0 10px;
}

.search-select {
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: none;
    font-size: 0.75rem;
}

.search-input {
    width: 100%;
    font-size: 0.9rem;
    border: none;
    padding: 0 10px;
}

.search-icon {
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #febd68;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #0f1111;
}

.nav-search:hover {
    border: 2px solid orange;
}

/* Sign In & Returns Styles */
span {
    font-size: 0.7rem;
}

.nav-second {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Cart Styles */
.nav-cart {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 10px;
}

.nav-cart i {
    font-size: 1.8rem;
    margin-right: 5px;
}

/* Border Hover Effect */
.border {
    border: 1.5px solid transparent;
    padding: 5px 8px;
    border-radius: 3px;
}

.border:hover {
    border: 1.5px solid white;
    cursor: pointer;
}

/* Panel Styles */
.panel {
    height: 40px;
    background-color: #222f3d;
    color: white;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.panel-all {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-weight: 500;
}

.panel-ops {
    display: flex;
    width: 70%;
    font-size: 0.85rem;
    margin-left: 15px;
}

.panel-ops p {
    margin: 0 5px;
    padding: 5px 10px;
}

.panel-ops p:hover {
    border: 1px solid white;
    cursor: pointer;
}

.panel-deals {
    margin-left: auto;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background-image: url("/Images/hero_image.jpg");
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Shop Section */
.shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
    padding: 20px 0;
}

.box {
    height: 400px;
    width: 23%;
    background-color: white;
    padding: 20px 0 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.box-content {
    margin: 0 15px;
}

.box-content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.box-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    margin: 15px 0;
}

.box-content p {
    color: #007185;
    font-size: 0.85rem;
}

.box-content p:hover {
    color: #c7511f;
    text-decoration: underline;
    cursor: pointer;
}

/* Footer Styles */
footer {
    margin-top: 20px;
}

.foot-panel1 {
    background-color: #374758;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.foot-panel1:hover {
    background-color: #485769;
    cursor: pointer;
}

.foot-panel2 {
    background-color: #222f3d;
    color: white;
    padding: 40px 0;
    display: flex;
    justify-content: space-evenly;
}

.foot-panel2 ul {
    margin: 0 15px;
}

.foot-panel2 ul p {
    font-weight: 700;
    margin-bottom: 10px;
}

.foot-panel2 ul a {
    display: block;
    font-size: 0.85rem;
    margin: 10px 0;
    color: #dddddd;
}

.foot-panel2 ul a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.foot-panel3 {
    background-color: #222f3d;
    border-top: 0.5px solid #3a4553;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    background-image: url("amazon_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    height: 50px;
    width: 100px;
}

.foot-panel4 {
    background-color: #131a22;
    color: white;
    height: 80px;
    font-size: 0.75rem;
    text-align: center;
    padding: 25px 0;
}

.pages {
    margin-bottom: 5px;
}

.pages a {
    margin: 0 10px;
}

.pages a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.copyright {
    color: #999999;
}
