* {
  margin: 0;
  font-family: "Montserrat", "Nunito", Georgia, "Sono", serif;
}
body {
  width: 100%;
  height: 100%;
}
.navbar {
  width: 100%;
  height: fit-content;
  max-height: 160px;
}
.get-up-to {
  letter-spacing: 0.02em;
}
.node {
  white-space: pre-wrap;
}
.shop-now {
  font-size: 10px;
  text-decoration: underline;
  font-weight: 300;
  font-family: Montserrat;
}
.get-up-to-container {
  position: relative;
}
.get-up-to-50-off-in-this-fest-parent {
  width: 100%;
  position: relative;
  background-color: #161616;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  text-align: left;
  font-size: 14px;
  color: #edecec;
  font-family: "Playfair Display";
}
.image-1200-icon {
  width: 300px;
  position: relative;
  height: 66px;
  object-fit: cover;
}

.main_navcontent {
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 0 0;
  display: flex;
  flex-direction: row;
  text-align: left;
  font-size: 18px;
  color: #696969;
  font-family: "Montserrat";
}
.home-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 100px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-parent li {
  position: relative;
}
.home-parent li a {
  font-size: 18px;
  font-weight: 500;
  font-family: Montserrat;
  color: #696969;
  text-align: left;
  text-decoration: none;
}

.home-parent .category {
  position: relative;
}

.home-parent .category .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px;
  margin: 0;
  z-index: 999;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.home-parent .category .dropdown li {
  padding: 10px;
}

.home-parent li:hover .dropdown {
  display: block;
}

.home-parent .category .arrow-down-icon {
  margin: 5px;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.home-parent .category:hover .arrow-down-icon {
  transform: rotate(180deg);
  content: url("arrow-up.png");
}

.heart-icon {
  width: 24px;
  position: relative;
  height: 24px;
}
.notification-icon {
  width: 24px;
  position: relative;
  height: 22px;
}
.vector-icon {
  width: 18px;
  position: relative;
  height: 18px;
}
.cart {
  width: 24px;
  height: 24px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 6px;
  box-sizing: border-box;
}
.heart-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  margin-right: 23px;
}
.frame-parent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 88px;
}
.search_button {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.search-normal-parent {
  width: 500px;
  position: relative;
  border-radius: 40px;
  background-color: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  box-sizing: border-box;
  gap: 10px;
  font-size: 14px;
  color: #333;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-right: 43px;
}

.search-normal-icon {
  width: 20px; /* Reduced icon size */
  height: 20px;
}

.search-for-products {
  width: 100%;
  border: none;
  outline: none; /* Remove focus outline */
  background: transparent; /* Match input background with parent */
  font-weight: 400; /* Adjusted weight for consistency */
  height: 100%; /* Align with parent height */
  padding: 2px 4px; /* Inner padding for comfortable input space */
  color: inherit; /* Inherit text color from parent */
}

.search-for-products::placeholder {
  color: #aaa; /* Lighter placeholder text color */
  font-style: italic; /* Optional: differentiate placeholder */
}

/* Logout Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 24px 0;
}

.modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.logout-btn, .cancel-btn {
    padding: 12px 32px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn {
    background: #000000;
    color: white;
    border: none;
}

.logout-btn:hover {
    background: #333333;
}

.cancel-btn {
    background: white;
    color: #000000;
    border: 1px solid #E5E5E5;
}

.cancel-btn:hover {
    background: #F5F5F5;
}

@media (max-width: 480px) {
    .modal {
        padding: 24px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .logout-btn, .cancel-btn {
        width: 100%;
    }
}
