.site-header-wrapper {
    padding-top: 30px;
}

.site-header-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-header-search {
    width: 33.33%;
}

.site-header-search .search-form {
    position: relative;
    max-width: 482px;
}

.site-header-search .search-form .search-field {
    position: relative;
}

.site-header-search .search-form input {
    font-size: 14px;
    font-weight: var(--font-weight-500);
    background: transparent;
    border: 1px solid rgba(34, 39, 54, 0.16);
    background: rgba(253, 252, 246, 0.4);
    color: rgba(34, 39, 57, 0.5);
    padding: 15.5px 15px 15.5px 44px;
    border-radius: 120px;
    width: 100%;
    outline: none;
}

.site-header-search .search-form input:focus {
    outline: none;
}

.site-header-search .search-form input::placeholder {
    color: rgba(34, 39, 57, 0.5);
}

.site-header-search .search-form i {
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    MARGIN: auto;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.site-header-logo {
    width: 33.33%;
    text-align: center;
}

.site-header-logo a {
    font-size: 40px;
    font-family: 'Meow Script';
    color: var(--secondary-color);
    text-decoration: none;
}

.header-user-profile-nav {
    width: 33.33%;
}

.header-user-profile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}

.header-user-profile-nav ul li {
    background: var(--white-color);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 54px;
}

.header-user-profile-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--secondary-color);
    border-radius: 54px;
}

.header-user-profile-nav ul li a i {
    font-size: 26px;
}

.header-user-profile-nav ul li a img {
    border-radius: 54px;
    height: 54px;
    object-fit: cover;
    width: 54px;
    object-position: top center;
    border: 2px solid var(--primary-color);
}

.search-field-dropdown {
    background: #FDFCF6;
    box-shadow: 2px 5px 20px 0px rgba(34, 39, 54, 0.1);
    padding: 0;
    position: absolute;
    width: 100%;
    top: 100%;
    display: none;
    z-index: 5;
}

.search-field-dropdown.active {
    display: block;
}

.bookshelf-dropdown {
    max-height: 488px;
    overflow: auto;
}

.bookshelf-dropdown-item:first-child {
    padding-top: 20px;
}

.bookshelf-dropdown-item {
    padding: 0 30px 20px 30px;
}

.bookshelf-dropdown-item:last-child {
    margin-bottom: 0;
}

.bookshelf-dropdown-item a {
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    align-items: start;
    gap: 12px
}

.bookshelf-dropdown-item-thumb {
    width: 75px;
    height: 107px;
    overflow: hidden;
}

.bookshelf-dropdown-item-thumb img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bookshelf-dropdown-item-content {
    width: calc(100% - 87px);
}

.bookshelf-dropdown-item-content h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-500);
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.bookshelf-dropdown-item-content p {
    font-size: 14px;
    line-height: normal;
    font-weight: var(--font-weight-500);
    color: var(--secondary-color);
    margin-top: 8px;
}

.bookshelf-dropdown-divider {
    font-size: 14px;
    font-weight: var(--font-weight-500);
    border-top: 1px solid rgba(34, 39, 54, 0.16);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.bookshelf-dropdown-divider a {
    font-size: 14px;
    font-weight: var(--font-weight-500);
    text-decoration: none;
    color: var(--primary-color);
}

.books-not-found {
    text-align: center;
}

.bookshelf-dropdown-height-auto .bookshelf-dropdown {
    height: auto;
    overflow: hidden;
}

.bookshelf-dropdown-height-auto .bookshelf-dropdown-divider {
    display: none;
}