* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: Arial, Helvetica, sans-serif;
}

/* Navigation Bar */
.navBar {
    height: 50px;
    width: 100%;
    background-color: #0F1111;
    color: white;
    display: flex;
    align-items: center; 
    justify-content:space-evenly;
}

/* Amazon Logo Container */
#nav-logo {
    height: 60px;
    width: 140px;
}

/* Amazon Logo Image */
#logo {
    background-image: url("amazon-logo-on-transparent-background-free-vector.jpg");
    background-size: cover;
    background-repeat: no-repeat; /* ✅ Prevent tiling */
    height: 55px;
    width: 135px;
    margin: 2px;
}

/* Hover Border Effect */
.border {
    border: 1.5px solid transparent;
    transition: border 0.3s; 
}
.border:hover {
    border: 1.5px solid white;
}

/* Address Section */
#nav-add {
    width: 160px;
    padding: 10px 0 0 10px;
    margin-left: 5px;
}

/* Delivery Address Text */
#deliver-add {
    font-size: 0.7rem; 
    color: #CCCCCC;
    padding-left: 1px;
}

/* Location Icon + Text */
#loc-icon {
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
}


/* box3 */
#search-bar {
    display: flex;
    align-items: center; /* ✅ Vertically center items */
    width: 600px;
    height: 45px;
    background-color: #0F1111;
    justify-content: space-evenly;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#search-bar:hover {
    border-color: #febd69;
}

.search-select {
    background-color: #f3f3f3;
    height: 100%; /* ✅ Matches parent's height */
    width: 40px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-input {
    width: 100%;
    height: 100%; /* ✅ Matches parent's height */
    font-size: 1.1rem;
    border: none;
    outline: none;
}

#search-icon {
    width: 45px;
    height: 100%; /* ✅ Matches parent's height */
    background-color: #febd69;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #0F1111;
}

/* box4 */
.one-signin {
    font-size: 0.7rem;
    color: #ffffff;
    width:100px;
    height:14px;
}
.two-signin {
    font-size: 1rem;
    color: #ffffff;
    width:100px;
    height:15px;
    font-weight: 700;
}
/* box5 */
.cart-div{
    display: flex;
}

.cart-div i{
    font-weight: 700;
    font-size:2rem;
}
.cart{
    top:90%;
    font-weight: 700;
}
/* Navigation Bar */
#nav-main {
    width: 100%;
    height: 40px;
    background-color: #232f3e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 0 1rem;
}

.main-panel {
    height: 100%;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 3rem;
}

.panel-icon {
    font-size: 1.20rem;
    margin-right: 0.3rem;
}

.nav-banner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 0.6rem;
}

/* Hero Section */
.hero-image {
    background: url("hero_image.jpg") ;
    background-size: cover;

    width: 100%;
    height: 400px;
    /* margin-top:10px; */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-message {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 80%;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.hero-message a {
    color: #007185;
    text-decoration: none;
}

/* Shopping Section */
.shopping-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: rgb(253, 231, 242);
    padding: 1rem 0;
}

.box {
    height: 300px;
    width: 20%;
    min-width: 200px;
    padding: 20px 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-img {
    height: 90%;
    width: auto;
    object-fit: contain;
    padding: 5px;
}
/* ///footer */
footer {
    /* background-color: #232f3e; */
    color:white;
    margin: top 10px;
}
/* back to top */
.back-to-top{
    margin-top:0;
    background-color: #37475a;
    width: 100%;
    height: 50px;
    font-size:1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight:700;
}
.second-panel {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 300px;
    background-color: #232f3e;
    color: white;
    font-size: 0.8rem;

}
.second-panel p{
font-size: 16px;
font-weight: 700;
}
ul{
    list-style-type: none;
}
.second-panel li {
   font-size: 14px;
   font-weight: 100;
   color: #dddddd;
   margin-top: 10px;
}


.footer-text{
    color:white;
    height: 50px;
    background-color: #232f3e;
    display: block;
    display:flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-top:2px solid white

}
