/* ===== UNIVERSAL PREMIUM DROPDOWN ===== */

.dd {
    position: relative;
    width: 100%;
}

.dd-btn {
    width: 100%;
    background: #140c07;
    border: 1px solid #6b4226;
    color: #d7c2ad;
    padding: 14px 16px;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    transition: .2s;
}

.dd-btn:hover {
    border-color: #c8923a;
}

.dd-btn.active {
    border-color: #c8923a;
    box-shadow: 0 0 0 2px rgba(200, 146, 58, .35);
}

/* dropdown panel */
.dd-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #14100c;
    border: 1px solid #5c3a21;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .65);
    overflow: hidden;
    z-index: 9999;
    display: none;
}

/* option */
.dd-item {
    padding: 14px 18px;
    color: #d7c2ad;
    cursor: pointer;
    transition: .15s;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.dd-item:last-child {
    border-bottom: none;
}

.dd-item:hover {
    background: rgba(200, 146, 58, .18);
    color: #f5e6d3;
}

.dd-item.selected {
    background: rgba(200, 146, 58, .28);
    color: #e0a84b;
    font-weight: 600;
}