.tabs {
    width: 85%;
    max-width: 85%;
    margin: auto;
    background: none;
}

.tab-buttons {
    display: flex;
    gap: 20px;
}

.tab-buttons button {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: bold;
    font-variation-settings: "wght" 700;
    border-radius: 5px;
    border: 1px solid rgba(194, 174, 151, 1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(1.5px) saturate(180%);
        -webkit-backdrop-filter: blur(1.5px) saturate(180%);
}

.tab-buttons button.active {
    background: rgba(194, 174, 151, 0.8);
    color: #fff;
}

.tab-buttons button:hover {
    background: rgba(194, 174, 151, 0.8);
    color: #fff;
}

.tab-content {
    padding: 20px 0;
    position: relative;
    min-height: 200px;
    background: none;
    
}

.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

@media (max-width: 900px) {

    .tabs {
        width: 95%;
        max-width: 95%;
    }

    .tab-buttons button {
        padding: 10px 4px;
        font-size: 11px;
    }

}

