/* Font Awesomeовые стили (оставил как есть, но добавил цвет) */
.fa {
    font-family: "Font Awesome 5 Pro";
    font-weight:900;
    --osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
   -height: 1;
    color: #FF9800; /* Оранжевый для иок */
}

/* Основной контейнер */
.watchlist_parent {
  position: relative; 
  width: 20%; 
  height: 30px; 
  border-radius: 20px; 
  font-weight: 600; 
  top: -4px; 
  transition: box-shadow 0.3s ease;
}

.watchlist_parent:hover {
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3); /* Оранжевая тень на hover */
}

/* Выпадающее меню */
.dropdown-content {
    background-color: #FFF3E0; /* Светло-оранжевый фон */
    margin: 0;
    display: none;
    min-width: 200px; /* Немного шире для комфорта */
    overflow-y: auto;
    opacity: 0;
    position: absolute; /* Абсолютное позиционирование для dropdown */
    left: 0;
    top: 100%; /* Появляется под кнопкой */
    z-index: 9999;
    transform-origin: 0 0;
    transform: scale(0.95) translateY(-10px); /* Начальная анимация */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Плавная анимация */
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.15); /* Мягкая оранжевая тень */
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 12px; /* Скруглённые углы */
    box-sizing: border-box;
}

.show_it {
    display: block !important;
    opacity: 1 !important;
    transform: scale(1) translateY(0); /* Полная анимация показа */
    left: 0;
    width: 200px; /* Фиксированная ширина */
    height: auto;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.25);
}

/* Элементы списка */
.dropdown-content li.dropdown-title {
    cursor: default;
    border-bottom: none; /* Убрал dashed, теперь чистый */
    background: linear-gradient(135deg, #FF9800, #E65100); /* Градиент для заголовка */
    color: white;
    font-weight: 600;
    padding: 12px 16px; /* Больше padding */
    border-radius: 12px 12px 0 0;
}

.dropdown-content li {
    clear: both;
    cursor: pointer;
    min-height: 40px; /* Увеличил высоту для кликабельности */
    line-height: 1.5rem;
    margin: 0;
    transition: background-color 0.2s ease;
}

.dropdown-content li:hover {
    background-color: rgba(255, 152, 0, 0.1); /* Лёгкий оранжевый hover */
}

.dropdown-content li>a, .dropdown-content li>span {
    font-size: 13px; /* Чуть больше для читаемости */
    display: block;
    line-height: 40px;
    padding: 0 16px; /* Уменьшил padding для компактности */
    font-weight: 500;
    color: #E65100; /* Тёмно-оранжевый текст */
    border-bottom: none; /* Убрал dashed */
    transition: color 0.2s ease;
}

.dropdown-content li>a:hover {
    color: #000; /* Оранжевый на hover */
}

/* Кнопка добавления */
.super__watchlist {
    height: 40px;
}

.super__watchlist-menu {
    display: flex;
    margin-bottom: -4px;
    overflow: hidden; /* Чтобы градиент не вылазил */
}

.super__watchlist-select,
.super__watchlist-btn {
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
    box-sizing: border-box;
    padding: 5px 18px;
    border: none;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, #FF9800, #FF5722); /* Оранжевые градиенты */
    font-size: 13px;
    color: white;
    flex-grow: 1;
    transition: all 0.3s ease;
    border-radius: 0;
}

.super__watchlist-select:hover,
.super__watchlist-btn:hover {
    background: linear-gradient(135deg, #FF5722, #FF8A65); /* Ярче на hover */
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.super__watchlist-btn.dt {
    text-shadow: none;
}

.super__watchlist-select {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    border-right: none;
}

.super__watchlist-btn {
    display: flex;
    flex: 0 0 40px; /* Фиксированная ширина стрелки */
    justify-content: center;
    align-items: center;
}

.super__watchlist-select i {
    color: white; /* Белая иконка */
    margin-right: 8px;
    margin-left: 2px;
    font-size: 14px;
}

/* Удаление из списка */
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color: #D32F2F; /* Красный, но можно смешать с оранжевым: #EF6C00 */
    background-color: rgba(213, 47, 47, 0.1) !important;
}

.watchlist_parent .dropdown-content li.delete-watchlist:hover a {
    color: #B71C1C;
}

/* Активное состояние */
.watchlist_parent .dropdown-content li.active a {
    color: #FF9800;
    background-color: rgba(255, 152, 0, 0.2);
}

/* Успешная кнопка (иконка) */
.watchlist_btn_success i {
    color: #FF9800; /* Оранжевый */
}

/* Другие стили (оставил похожие, но адаптировал цвета) */
.sect__content.img .watch-status {
    position: relative;
    bottom: -184px;
    display: block;
    width: 29px;
    line-height: 30px;
    font-size: 25px;
    margin-left: 6px;
    border-radius: 15px;
    text-align: right;
    background: rgba(255, 152, 0, 0.8); /* Оранжевый бэкграунд */
}

.sect__content.img .fontu {
    padding-right: 0;
    left: 0;
    width: 30px;
}

.anime-item__watch-status {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 152, 0, 0.9); /* Базовый оранжевый */
    color: white;
    font-size: 0.9em;
    transition: all 0.5s;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.anime-item__watch-status.watching {
    background-color: rgba(76, 175, 80, 0.9); /* Зелёный */
}

.anime-item__watch-status.seen {
    background-color: rgba(244, 67, 54, 0.9); /* Красный */
}

.anime-item__watch-status.will-watch {
    background-color: rgba(255, 152, 0, 0.9); /* Оранжевый */
}

.anime-item__watch-status.abandoned {
    background-color: rgba(158, 158, 158, 0.9); /* Серый */
}

.anime-item__watch-status.favourite {
    background-color: rgba(255, 193, 7, 0.9); /* Жёлтый, близкий к оранжевому */
}

.new-profile__watch-list {
    margin-bottom: 20px;
    padding: 10px;
}

.new-profile__watch-bar {
    height: 10px;
    background-color: #FFE0B2; /* Светло-оранжевый для бара */
    border-radius: 4px;
    display: flex;
}

.new-profile__watch-bar div {
    height: 100%;
}

.new-profile__watch-bar div:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.new-profile__watch-bar div:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.new-profile__watch-bar--watching,
.new-profile__watch-type:nth-child(1)::before {
    background-color: rgba(76, 175, 80, 0.9);
}

.new-profile__watch-bar--will-watch,
.new-profile__watch-type:nth-child(2)::before {
    background-color: rgba(255, 152, 0, 0.9);
}

.new-profile__watch-bar--seen,
.new-profile__watch-type:nth-child(3)::before {
    background-color: rgba(244, 67, 54, 0.9);
}

.new-profile__watch-bar--abandoned,
.new-profile__watch-type:nth-child(4)::before {
    background-color: rgba(158, 158, 158, 0.9);
}

.new-profile__watch-bar--favourite,
.new-profile__watch-type:nth-child(5)::before {
    background-color: rgba(255, 193, 7, 0.9);
}

.new-profile__watch-types {
    display: flex;
    margin-top: 5px;
    font-size: 0.85em;
}

.new-profile__watch-type {
    margin-right: 15px;
    color: #E65100; /* Тёмно-оранжевый */
}

.new-profile__watch-type:hover {
    color: #FF9800;
}

.new-profile__watch-type::before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 8px;
    height: 8px;
    margin: 2px 7px 0 0;
    background-color: #FF9800; /* Оранжевая точка */
    border-radius: 50%;
}

.new-profile__watch-type span:first-child:after {
    content: '-';
    margin: 0 5px;
}

.new-profile__title {
    text-transform: uppercase;
    color: #E65100;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0 0 10px;
}

.new-profile__title a {
    color: #E65100;
}

.watchlist__sort-types {
    display: flex;
    position: relative;
    background-color: #FFF3E0;
    box-shadow: 0 0 1px 0 rgba(255, 152, 0, 0.15), 0 6px 12px 0 rgba(255, 152, 0, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
}

.box-body-s {
    box-shadow: 0 1px 1px rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.2);
    background: var(--s-tabs);
    font-size: 12px;
    color: #E65100;
}

.single_tabs {
    border-bottom: solid 3px #FFE0B2; /* Светло-оранжевый */
}

.single_tabs {
    width: 100%;
    float: left;
    padding: 0 25px;
}

ul.smenu {
    float: left;
    padding: 12px 0;
    overflow: hidden;
    background: var(--s-tabs);
}

ul.smenu li {
    float: left;padding-right: 5px;
}

ul.smenu li a {
    width: 100%;
    text-align: center;
    float: left;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    color: #E65100;
    transition: background 0.3s ease;
}

ul.smenu li a:hover {
    background: rgba(255, 152, 0, 0.1);
}

ul.smenu li a.selected {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
}

ul.smenu li a.selected, ul.smenu li a.selected:hover {
    color: white;
}

/* Медиа-запросы (адаптировал) */
@media only screen and (max-width: 1280px) {
    .watchlist_parent {
        width: 224px;
        margin-left: 30px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .super__watchlist-select {
        /*flex-shrink: 0;*/
    }
    .super__watchlist-menu {
        justify-content: center;
    }
    .watchlist_parent {
        width: 160px;
        height: 45px;
        margin-left: 30px;

    }
    .dropdown-content {
        min-width: 180px;
        left: -20px; /* Сдвиг для мобильных */
    }
}

@media (max-width: 700px) {
    .show_it {
        width: 200px;
        left: -20px;
        height: auto;
    }
    .watchlist_parent {
        /* width: 165px; */
    }
}

@media only screen and (max-width: 540px) {
    .watchlist_parent {
        position: relative;
        top: 3px;
        height: 35px;
    }
    ul.smenu {
        background: #FFF3E0;
    }
    ul.smenu li {
        width: 50%;
        padding: 2px;
    }
    ul.smenu li a {
        text-shadow: none;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        padding: 10px 15px;
        background: rgba(255, 152, 0, 0.05);
        color: #E65100;
    }
}

@media only screen and (max-width: 580px) {
    .new-profile__watch-types {
        flex-direction: column;
    }
}

/* Оригинальные стили (адаптированные минимально для совместимости, где нужно) */
.dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none;
    min-width: 194px;
    overflow-y: auto;
    opacity: 0;
    position: relative;
    left: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,.1);
}

.dropdown-content li.dropdown-title {
    cursor: default;
    border-bottom: 1px dashed;
}

.dropdown-content li {
    clear: both;
    cursor: pointer;
    min-height: 30px;
    line-height: 1.5rem;
    text-align: left;
}

.dropdown-content li>a, .dropdown-content li>span {
    font-size: 12px;
    display: block;
    line-height: 30px;
    padding: 8px 20px;
    font-weight: 400;
    border-bottom: 1px dashed;
}

.super__watchlist {height:30px}
.super__watchlist-menu {
    display: flex;
    margin-bottom: -4px;
}

.super__watchlist-select,
.super__watchlist-btn {
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
    box-sizing: border-box;
    padding: 8px 9px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-weight: 500;
    font-style: normal;
    line-height: 16px;
    cursor: pointer;
    font-size: 12px;
    color: var(--tt-fade);
    border-radius: 0;
    flex-grow: 1;
}

.super__watchlist-btn.dt {    text-shadow: none;}
.super__watchlist-select {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    border-right: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.super__watchlist-btn {
    display: flex;
    flex: 0 0 35px;
    justify-content: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.super__watchlist-select i {
    color: #ab5353;
    margin-right: 8px;
    margin-left: 2px;
}
.dropdown-content li {
    margin: 0;
}
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color: #8b1014;
}
.dropdown-title {
    font-weight: 500;
    padding: 14px 12px;
    font-size: 12px;
}
.watchlist_parent .dropdown-content li.delete-watchlist a {
    color: #8b1014;
}
@media only screen and (max-width:1280px) {
    .watchlist_parent {
    width: 224px;
    margin-left: 30px;
    margin-right: 0;
}
}
@media only screen and (max-width:768px) {
    .super__watchlist-select {
     /*   flex-shrink: 0;*/
    }
    .super__watchlist-menu {
        justify-content: center;
    }
    .watchlist_parent {
width: 140px; height: 50px; margin-left: 30px; margin-right: 18px;
    }
}

.watchlist_parent .dropdown-content li.active a {
    color: #8b1014;
}
.watchlist_btn_success i {
    color: #f60;
}
.sect__content.img .watch-status { 
    position: relative;
    bottom: -184px;
    display: block;
    width: 29px;
    line-height: 30px;
    font-size: 25px;
    margin-left: 6px;
    border-radius: 15px;
    text-align: right;
}
.sect__content.img .fontu {padding-right: 0; left: 0; width: 30px;}   