.ds-tabs {
    display: flex;
    margin-bottom: 1rem;
    width: 100%;
}

.ds-tab {
    flex: 1;
    text-align: center;
    background: none;
    border: 1px solid transparent;
    border-bottom: none;
    padding: 10px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.ds-tab:hover {
    background: #CCC;
}

.ds-tab.active {
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    color: #000;
    z-index: 2;
}

.ds-filters {
    margin-bottom: 12px;
}

.ds-filters select {
    margin-right: 8px;
    padding: 6px;
}

.ds-time {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.ds-title {
    font-weight: 600;
}

.ds-meta {
    font-size: 13px;
    opacity: 0.8;
}

.ds-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.ds-modal {
    display: none;
    position: fixed;
    right: 20px;
    top: 80px;
    width: 380px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    padding: 14px;
}

.ds-modal.show {
    display: block;
}

.ds-modal .ds-modal-close {
    float: right;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.ds-modal .ds-modal-body {
    clear: both;
    margin-top: 6px;
}

.ds-description-wrap {
    margin: 1em 0 2em;
}

.ds-description {
    display: none;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ds-description.active {
    display: block;
}

.ds-style-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5em;
}

.ds-style-item {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    color: #222;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ds-style-item:hover {
    transform: scale(1.05);
}

.ds-style-item.active {
    box-shadow: 0 0 0 3px #333 inset;
}
