#new_header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 0;
}

.new_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_navbar-logo {
    margin: auto 0;
}

.new_nav_items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.new_nav_items a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 13px 29px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button {
    border: 1px solid black;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: white;
    color: #2ac4b5 !important;
    border: 1px solid #2ac4b5;
    transition: all 0.3s ease;
}

.login-button-postman:hover {
    color: #efead5 !important;
    transition: all 0.3s ease;
}

.register-btn {
    background-color: #2ac4b5;
    color: white !important;
    border: 1px solid #2ac4b5;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: white;
    color: #2ac4b5 !important;
    border: 1px solid #2ac4b5;
    transition: all 0.3s ease;
}

#autocomplete_navbar {
    -webkit-box-shadow: 0px 10px 22px -20px rgba(0, 0, 0, 0.69);
    -moz-box-shadow: 0px 10px 22px -20px rgba(0, 0, 0, 0.69);
    box-shadow: 0px 10px 22px -20px rgba(0, 0, 0, 0.69);
}

.hamburguer-button {
    position: relative;
    display: none;
}

.new_navbar-responsive {
    display: none;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    position: absolute;
    top: 100px;
    right: 0px;
    padding: 10px 20px;
    /* width: 300px; */
    border-radius: 10px;
    box-shadow: 0px 10px 22px -15px rgba(0, 0, 0, 0.73);
    max-width: 310px;
}

.new_nav_items-responsive {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 15px;
}

.new_nav_items-responsive a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 13px 29px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.new_header-scrolled {
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.search-input {
    display: block;
}

.heroSection {
    padding-top: 280px;
}

@media only screen and (max-width: 480px) {
    .heroSection {
        padding-top: 205px;
    }
}

@media screen and (min-width: 768px) {
    #autocomplete_navbar {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .hamburguer-button {
        position: relative;
        display: flex;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .new_nav_items {
        display: none;
    }

    .heroSection {
        padding-top: 220px;
    }
}

/* keyframes effect */
@keyframes showNavbar {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0%);
    }
}

/* hide animation */
@keyframes hideNavbar {
    from {
        opacity: 1;
        transform: translateX(0%);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@media screen and (min-width: 769px) {
    .search-input {
        display: none;
    }
}

.language-currency-dropdown {
    position: relative;
    color: black !important;
    font-family: 'Roboto', sans-serif !important;
}

#lang-curr-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: box-shadow 0.2s;
}

#lang-curr-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: -80px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
    min-width: 300px;
    padding: 1rem;
    z-index: 1000;
}

#lang-curr-dropdown .dropdown-title {
    font-weight: bold;
    font-size: 15px;
    text-align: left;
    margin-bottom: 4px;
}

#lang-curr-dropdown .dropdown-desc {
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
}

#lang-curr-dropdown label {
    font-size: 13px;
    font-weight: 500;
}

#dropdown-language {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 2px;
    padding: 4px 6px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

#dropdown-currencies {
    margin-bottom: 10px;
}

.currency-option {
    padding: 4px 8px;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
    color: black;
    display: flex;
    align-items: center;
    gap: 6px;
}

.currency-option.selected,
.currency-option:hover {
    background: #7052fb;
    color: #fff;
}

#save-lang-curr {
    width: 100%;
    color: #fff;
    border-radius: 4px;
    padding: 8px 0;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}

/* Custom Select Dropdowns for Language & Currency */
.custom-select-group {
  margin-bottom: 12px;
}

.custom-select {
  position: relative;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  min-width: 140px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: border 0.2s, box-shadow 0.2s;
}

.custom-select:hover, .custom-select.open {
  border: 1.5px solid #7052fb;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.custom-select-options {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  width: 100%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
  z-index: 10;
  margin-top: 2px;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  color: black;
}

.custom-select-option.selected,
.custom-select-option:hover {
  background: #7052fb;
  color: #fff;
}
