 /* --- Search Specific Styles --- */
.search-header {
    padding: 40px 0 20px;
}

.search-header h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-dim);
    font-size: 20px;
}

.search-input-wrapper input {
    width: 100%;
    background: #1c1c1e;
    border: none;
    padding: 12px 12px 12px 45px;
    border-radius: 12px;
    color: white;
    font-size: 17px;
    outline: none;
}

/* Discover Chips */
.discover-section {
    margin-top: 30px;
}

.discover-section h3, .results-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.discover-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 0.5px solid #333;
    padding-bottom: 25px;
}

.tag-chip {
    color: var(--accent);
    font-size: 15px;
    font-weight: 500;
}

/* List Style for Search */
.results-section {
    margin-top: 25px;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 0.5px solid #222;
}

.search-item img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-right: 15px;
    object-fit: cover;
}

.search-item-info {
    flex-grow: 1;
}

.search-item-info h4 {
    font-size: 17px;
    font-weight: 600;
}

.search-item-info p {
    color: var(--text-dim);
    font-size: 14px;
}

.get-btn-small {
    background: #1c1c1e;
    color: var(--accent);
    border: none;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.get-btn-small:active {
    background: var(--accent);
    color: black;
}