/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: #0F1111;
    height: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* Logo */
.nav-logo {
    height: 50px;
    width: 100px;
}

.logo {
    background-image: url("images/amazon_logo.png");
    background-size: cover;
    height: 50px;
    width: 100px;
}

/* Navbar Hover Border */
.border {
    border: 1px solid transparent;
}

.border:hover {
    border: 1px solid white;
}

/* Address Styles */
.nav-address .add-first {
    color: #CCCCCC;
    font-size: 0.85rem;
    margin-left: 15px;
}

.nav-address .add-sec {
    color: #FFFFFF;
    font-size: 1rem;
    margin-left: 2px;
}

.nav-address .add-icon {
    display: flex;
    align-items: center;
}

/* Search Bar Styles */
.nav-search {
    display: flex;
    width: 620px;
    height: 40px;
    background-color: yellow;
    border-radius: 5px;
    justify-content: space-evenly;
}

.search-select {
    background-color: #f3f3f3;
    width: 50px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
}

.search-input {
    width: 100%;
    font-size: 1rem;
    border: none;
}

.search-icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #fedb68;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #0F1111;
}

/* Search Bar Hover Effect */
.nav-search:hover {
    border: 2px solid #fedb68;
}

/* Text Elements */
span {
    font-size: 0.7rem;
}

.nav-sec {
    font-size: 0.85rem;
    font-weight: bold;
}

.nav-cart i {
    font-size: 30px;
}

.nav-cart {
    font-size: 0.85rem;
    font-weight: bold;
}

/* Panel Section */
.panel {
    height: 40px;
    color: white;
    background-color: #222f3d;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* Panel Operations */
.panel-ops p {
    margin-left: 10px;
    display: inline-block;
}

.panel-ops {
    width: 70%;
    font-size: 0.85rem;
}

.panel-deals {
    font-size: 0.9rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-image: url("images/hero_image.jpg");
    background-size: cover;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Hero Message */
.hero-msg {
    background-color: white;
    color: black;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    width: 80%;
    margin: 40px;
}

.hero-msg a {
    color: #007185;
    text-decoration: none;
}

/* Shop Section */
.shop-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: #e2e7e6;
}

/* Box for Products in Shop Section */
.box {
    height: 400px;
    width: 23%;
    background-color: white;
    padding: 20px 0px 15px;
    margin-top: 15px;
}

.box-image {
    height: 250px;
    background-size: cover;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.box-content {
    margin-left: 1rem;
    margin-right: 1rem;
}

.box-content p {
    color: #007185;
}

/* Footer Panels */
.foot-panel1 {
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.foot-panel2 {
    background-color: #222f3d;
    color: white;
    height: 300px;
    display: flex;
    justify-content: space-evenly;
}

/* Footer Links */
ul a {
    display: block;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #dddddd;
}

ul p {
    margin-top: 15px;
    font-weight: bolder;
    color: #ffffff;
}

/* Footer Contact/Info Panel */
.foot-panel3 {
    background-color: #222f3d;
    border: 0.20px solid #dddddd;
    height: 100px;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
}

/* Final Footer Panel */
.foot-panel4 {
    background-color: #0F1111;
    color: white;
    height: 75px;
    font-size: 0.7rem;
    text-align: center;
}

/* Footer Pages and Copyright */
.pages {
    padding-top: 20px;
}

.copyright {
    padding-top: 5px;
}
