.fml-search {
    text-align: center;
    margin-bottom: 20px;
}
.fml-search input {
    padding: 8px;
    font-size: 16px;
    width: 80%;
	border-radius:10px;
    max-width: 400px;
}

.fml-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.fml-tab-btn {
    background: black;
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}
.fml-tab-btn.active {
    background: #d9230f;
}

.fml-tab-content {
    display: none;
}
.fml-tab-content.active {
    display: block;
}

.fml-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}
.fml-item {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    min-height: 90px;
}
.fml-img-square {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.fml-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fml-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}
.fml-name-desc {
    max-width: 80%;
}
.fml-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.fml-desc {
    font-size: 14px;
    color: #444;
    margin: 4px 0 0 0;
}
.fml-price {
    font-weight: bold;
    font-size: 15px;
    white-space: nowrap;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .fml-grid {
        grid-template-columns: 1fr;
    }
    .fml-item {
        flex-direction: row;
    }
    .fml-name-desc {
        max-width: 100%;
    }
}
