.down-wrapper {
    position: relative;
    margin: 1.39rem 0;
    width: 100%;
}
.down-sticky-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 105;
    background: #fff;
    width: 100%;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.down-search-group {
    position: relative;
    width: 100%;
}

.down-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 1.39rem;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.down-input:focus {
    border-color: #F35D4D;
    box-shadow: 0 0 5px rgba(243, 93, 77, 0.3);
}
.down-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    z-index: 9999;
}
.down-suggestions::-webkit-scrollbar {
    width: 6px;
}
.down-suggestions::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
.down-suggestion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.down-suggestion-item:last-child {
    border-bottom: none;
}
.down-suggestion-item:hover {
    background-color: #fef7f6;
}

.down-result {
    margin-top: 1rem;
}
.down-result .card-details-row {
    margin-top: 0;
}

.down-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.down-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #fef7f6;
    color: #F35D4D;
    border: 1px solid #f3d4cf;
    cursor: pointer;
    font-size: 0.92rem;
    line-height: 1.1;
    transition: all 0.2s ease;
}
.down-tag:hover {
    background: #fde8e6;
    border-color: #F35D4D;
}

.down-tag-plus {
    width: 2rem;
    min-width: 2rem;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 700;
}
.down-tag-plus:hover {
    background: #F35D4D;
    color: #fff;
}

.down-wrapper .details-more {
    display: block;
    margin-top: 10px;
    text-align: right;
    border: 1px solid var(--tp-brand-red-color);
    border-radius: var(--tp-sp-xs);
    color: var(--tp-brand-red-color) !important;
    background: transparent;
}

.down-wrapper .details-more:hover {
    background: var(--tp-brand-red-color);
    color: var(--tp-surface) !important;
}

@media (max-width: 600px) {
    .down-wrapper .details-more {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .down-wrapper .details-more {
        transition: none !important;
        animation: none !important;
    }

    .down-wrapper .details-more:hover {
        box-shadow: none !important;
        transform: none !important;
        background: inherit;
        color: inherit !important;
        border-color: inherit;
    }
}
