.tbr_product--wrapper {
    row-gap: 20px;
}

.tbr_product--item {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: var(--tbr-bg-secondary);
    border: 1px solid var(--tbr-border-primary);
}

.tbr_product--item .tbr_product--image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tbr_product--item .tbr_product--image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tbr_product--item .tbr_product--content {
    padding: 8px;
}

.tbr_product--content {
    display: flex;
    flex-direction: column;
}

.tbr_product--content .tbr_product--title {
    width: fit-content;
    font-size: 12px;
    color: var(--bs-gray-800);
    font-weight: normal;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.tbr_product--content .tbr_product--title:hover {
    color: var(--tbr-primary);
}

.tbr_product--content .tbr_product--price {
    width: fit-content;
    font-size: 14px;
    color: var(--bs-gray-900);
    font-weight: 700;
    margin-bottom: 4px;
}

.tbr_product--content .tbr_product--discount {
    display: flex;
    column-gap: 4px;
    align-items: center;
}

.tbr_product--discount .amount {
    color: var(--bs-gray-500);
    font-size: 12px;
    text-decoration: line-through;
}

.tbr_product--discount .percentage {
    color: var(--tbr-primary);
    font-weight: 800;
    font-size: 12px;
}

.tbr_product--content .tbr_product--sold {
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.tbr_product--sold {
    color: var(--bs-gray-600);
    font-size: 12px;
}
