* {
  margin: 0;
  font-family: Arial;
  box-sizing: border-box;
}

.navbar {
  background-color: #131921;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  justify-content: space-between;
}

.nav-logo img {
  width: 100px;
}

.nav-address {
  padding: 0 10px;
}

.nav-search {
  display: flex;
  flex: 1;
  max-width: 600px;
  margin: 0 20px;
}

.nav-search select,
.nav-search input,
.nav-search button {
  padding: 8px;
  border: none;
}

.nav-search input {
  flex: 1;
}

.nav-search button {
  background-color: #febd69;
  cursor: pointer;
}

.nav-options {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-option {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-section {
  background-image: url("hero_image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 550px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-msg {
  background-color: white;
  color: black;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  width: 80%;
  margin-bottom: 25px;
}

.hero-msg a {
  color: #077185;
}

.shop-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #e2e7e6;
  padding: 20px 0;
}

.box {
  height: 400px;
  width: 24%;
  background-color: white;
  padding: 20px 0px 15px;
  margin-top: 10px;
  box-sizing: border-box;
}

.box-content {
  padding: 0 1rem;
  text-align: left;
}

.box-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  margin: 1rem 0;
}



/* Individual background images */
.box:nth-child(1) .box-img { background-image: url("box1_image.jpg"); }
.box:nth-child(2) .box-img { background-image: url("box2_image.jpg"); }
.box:nth-child(3) .box-img { background-image: url("box3_image.jpg"); }
.box:nth-child(4) .box-img { background-image: url("box4_image.jpg"); }
.box:nth-child(5) .box-img { background-image: url("box5_image.jpg"); }
.box:nth-child(6) .box-img { background-image: url("box6_image.jpg"); }
.box:nth-child(7) .box-img { background-image: url("box7_image.jpg"); }
.box:nth-child(8) .box-img { background-image: url("box8_image.jpg"); }

.box-content p {
  color: #077185;
  cursor: pointer;
}

footer {
  margin-top: 30px;
  background-color: #232f3e;
  color: white;
  font-family: Arial, sans-serif;
}

.foot-panel {
  background-color: #37475a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  cursor: pointer;
}

.foot-panel:hover {
  background-color: #485769;
}

.foot-panel2 {
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  background-color: #232f3e;
  flex-wrap: wrap;
}

.foot-panel2 ul {
  list-style: none;
}

.foot-panel2 p {
  font-weight: bold;
  margin-bottom: 10px;
}

.foot-panel2 a {
  display: block;
  color: #ddd;
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
}

.foot-panel2 a:hover {
  text-decoration: underline;
}

.foot-panel3 {
  text-align: center;
  padding: 10px;
  background-color: #131a22;
  font-size: 14px;
}

.foot-panel4 {
  background-color: #131a22;
  padding: 10px 20px;
  text-align: center;
  border-top: 1px solid #444;
  font-size: 12px;
}

.foot-panel4 .pages {
  margin-bottom: 5px;
}

.foot-panel4 a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}

.foot-panel4 a:hover {
  text-decoration: underline;
}

.foot-panel4 .copyright {
  color: #888;
}

