 * {
  margin: 0;
  padding: 0;
  font-family: Arial;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  height: 60px;
  background-color: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.nav-logo {
  height: 50px;
  width: 100px;
}

.logo {
  background-image: url(lakshay.jpg);
  height: 50px;
  width: 100px;
  background-size: cover;
}

.border {
  border: 1.5px solid transparent;
  padding: 5px;
}

.border:hover {
  border: 1.5px solid white;
  border-radius: 5px;
}

/* Box 2 */
.add-1 {
  color: #cccccc;
  font-size: 0.75rem;
  margin-left: 15px;
}

.add-2 {
  font-size: 0.9rem;
  margin-left: 3px;
  font-weight: 700;
}

.add-icon {
  display: flex;
  align-items: center;
}

/* Box 3 */
.nav-search {
  display: flex;
  justify-content: space-evenly;
  background-color: pink;
  width: 620px;
  height: 40px;
  border-radius: 7px;
}

.nav-search:hover {
  border: 2px solid orange;
}

.search-select {
  background-color: #f3f3f3;
  width: 50px;
  text-align: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: none;
  font-size: 10px;
  font-weight: 700;
}

.search-input {
  width: 100%;
  font-size: 1rem;
  border: none;
  padding: 0 10px;
}

.search-icon {
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background-color: #febd68;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: black;
}

.nav-signin a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: block;
  font-size: 0.85rem;
}

/* Box 4 */
span {
  font-size: 0.7rem;
}

.nav-second {
  font-size: 0.85rem;
  font-weight: 700;
}

/* Box 5 */
.nav-cart i {
  font-size: 30px;
}

.nav-cart {
  font-size: 0.85rem;
  font-weight: 700;
}

/* Panel */
.panel {
  height: 40px;
  background-color: #222f3d;
  display: flex;
  color: white;
  align-items: center;
  justify-content: space-evenly;
}

.panel-all {
  font-weight: 700;
}

.panel-ops {
  width: 70%;
  font-size: 0.85rem;
}

.panel-ops a {
  display: inline;
  margin-left: 15px;
  text-decoration: none;
  color: aliceblue;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  background-image: url(background.jpg);
  height: 350px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-msg {
  color: black;
  background-color: white;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  width: 90%;
  margin-bottom: 25px;
  text-align: center;
  padding: 10px;
}

.hero-msg a {
  color: #007185;
}

/* Shop Section */
.shop-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #e2e7e6;
  padding: 20px 0;
}

h2 {
  color: #0f1111;
  font-size: 1.2rem;
}

.box {
  height: 420px;
  width: 23%;
  background-color: white;
  margin-top: 15px;
  transition: transform 0.3s;
  cursor: pointer;
  border-radius: 5px;
  padding: 20px 0;
}

.box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}

.box-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  margin: 1rem 0;
}

.box-content {
  margin: 0 1rem;
}

.box-content a {
  color: #007185;
  text-decoration: none;
  font-size: 0.85rem;
}

/* Footer */
footer {
  margin-top: 15px;
}

.foot-panel1 {
  background-color: #37475a;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
}

.foot-panel2 {
  background-color: #222f3d;
  color: white;
  display: flex;
  justify-content: space-evenly;
  padding: 40px 0;
}

ul p {
  font-weight: 700;
  margin-bottom: 10px;
}

ul a {
  display: block;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #dddddd;
  text-decoration: none;
}

ul a:hover {
  text-decoration: underline;
}

.foot-panel3 {
  background-color: #222f3d;
  border-top: 0.5px solid #3a4553;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot-panel4 {
  background-color: #131a22;
  color: #cccccc;
  height: 80px;
  text-align: center;
  font-size: 0.7rem;
  padding-top: 25px;
}

.pages a {
  margin: 0 10px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 10px;
    flex-direction: column;
  }
  
  .nav-logo, .nav-address, .nav-signin, .nav-Return, .nav-cart {
    margin: 8px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-search {
    width: 95%;
    margin: 10px 0;
    order: 1;
  }
  
  .add-icon {
    justify-content: center;
  }
  
  .panel {
    height: auto;
    flex-wrap: wrap;
    padding: 10px;
  }
  
  .panel-ops {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
  
  .panel-ops a {
    margin: 5px 8px;
    display: inline-block;
  }
  
  .hero-section {
    height: 250px;
  }
  
  .hero-msg {
    font-size: 0.75rem;
    height: auto;
    padding: 15px;
  }
  
  .shop-section {
    padding: 10px;
  }
  
  .box {
    width: 48%;
    height: 350px;
  }
  
  .box-img {
    height: 200px;
  }
  
  .foot-panel2 {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }
  
  ul {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .box {
    width: 95%;
    height: 380px;
  }
  
  .nav-search {
    height: 35px;
  }
  
  .search-select {
    display: none;
  }
  
  .panel-ops a {
    font-size: 0.75rem;
    margin: 5px;
  }
}