.second-part {
  background-color: #f8f9fa;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 15px;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover,
.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 8px 0;
  z-index: 10;
}

.dropdown-content a {
  color: black;
  padding: 10px 15px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.nav-item.dropdown:hover .dropdown-content {
  display: block;
}


.website-name h1 {
  font-size: 26px;
  font-weight: bold;
}

.account-icon,
.wishlist-icon-2,
.cart-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin: 0 8px;
}

.account-icon:hover,
.wishlist-icon-2:hover,
.cart-icon:hover {
  background-color: #f1f1f1;
}

.account-icon .badge,
.wishlist-icon-2 .badge,
.cart-icon .badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .top-container {
    transition: top 0.3s;
  }

  .hide-top {
    top: -100px;
  }

  .second-part {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .navbar-toggler {
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }

  .offcanvas {
    width: 250px !important;
  }
}



/* ============================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #f0ece4 50%, #f7f5f4 50%);
  padding: 60px;
}

.hero-text {
  width: 50%;
}

.hero-text h5 {
  font-size: 18px;
  color: #333;
}

.hero-text h2 {
  font-size: 36px;
  font-weight: bold;
  color: #222;
}

.hero-text p {
  font-size: 16px;
  color: #555;
}

.hero-text button {
  background: #222;
  color: white;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.hero-text button:hover {
  background: #555;
}

.hero-img {
  width: 50%;
  text-align: right;
}

.hero-img img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #f0ece4 50%, #f7f5f4 50%);
    padding: 30px 15px;
  }

  .hero-text {
    width: 55%;
    padding-right: 5%;
    text-align: left;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .hero-text p {
    font-size: 12px;
    display: none;
  }

  .hero-text button {
    padding: 6px 12px;
    font-size: 10px;
  }

  .hero-img {
    width: 55%;
    display: flex;
    justify-content: center;
  }

  .hero-img img {
    max-width: 100%;
    margin: 0;
    padding-left: 5px;
  }
}