* {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #263238;
}

/* Navbar */
.navbar {
  height: 60px;
  background-color: #4a148c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

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

.logo {
  height: 100%;
  width: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.border {
  border: 2px solid transparent;
}

.border:hover {
  border: 2px solid #ff7043;
}

/* Address */
.add-first {
  color: #e1bee7;
  font-size: 0.85rem;
  margin-left: 15px;
}

.add-sec {
  font-size: 1rem;
  margin-left: 3px;
}

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

/* Search */
.nav-search {
  display: flex;
  justify-content: space-evenly;
  background-color: #ffffff;
  width: 620px;
  height: 40px;
  border-radius: 6px;
  border: 2px solid #ce93d8;
}

.search-select {
  background-color: #f3e5f5;
  width: 50px;
  text-align: center;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border: none;
}

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

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

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

/* Sign In */
span {
  font-size: 0.7rem;
}

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

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

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

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

.panel-ops a {
  display: inline;
  margin-left: 15px;
  color: white;
  text-decoration: none;
}

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

.panel-deals {
  font-size: 0.9rem;
  font-weight: 700;
  
}

.panel-deals a {
    color: #ff7043;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
  background-image: url(https://m.media-amazon.com/images/I/81hIlE5xocL._SX3000_.jpg);
  background-size: cover;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* .hero-msg {
  background-color: rgba(255, 255, 255, 0.95);
  color: #263238;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  width: 95%;
  margin-bottom: 25px;
} */

/* .hero-msg a {
  color: #d500f9;
  text-decoration: none;
} */

/* Shop */
.shop-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-color: #f3e5f5;
}

.box {
  height: 400px;
  width: 23%;
  background-color: white;
  padding: 20px 0px 15px;
  margin-top: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.box-img {
  height: 300px;
  background-size: cover;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-content {
  margin-left: 1rem;
  margin-right: 1rem;
}

.box-content p {
  color: #d500f9;
}

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

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

.foot-panel1 a {
  color: white;
  text-decoration: none;
}

.foot-panel2 {
  background-color: #6a1b9a;
  color: white;
  height: 300px;
  display: flex;
  justify-content: space-evenly;
  padding: 40px 20px;
}

.foot-panel2 a i {
  margin-right: 8px;
}


ul {
  margin-top: 40px;
}

ul a {
  display: block;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #e1bee7;
}

.foot-panel3 {
  background-color: #6a1b9a;
  color: white;
  border-top: 0.5px solid white;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.foot-panel3 .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.foot-panel4 {
  background-color: #4a148c;
  color: white;
  text-align: center;
  font-size: 0.75rem;
  padding: 15px 0;
}

.foot-panel4 .pages a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* product section */
.product-container {
      max-width: 1000px;
      margin: 40px auto;
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
    }

    .product-image {
      flex: 1 1 300px;
      padding: 10px;
    }

    .product-image img {
      width: 100%;
      border-radius: 8px;
    }

    .product-details {
      flex: 1 1 400px;
      padding: 10px 20px;
    }

    .product-details h1 {
      color: #4a148c;
      margin-bottom: 15px;
    }

    .product-details p {
      font-size: 1rem;
      line-height: 1.6;
    }

    .price {
      color: #ff7043;
      font-size: 1.5rem;
      margin: 15px 0;
    }

    .buy-button {
      background-color: #4a148c;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
    }

    .buy-button:hover {
      background-color: #6a1b9a;
    }

