.product-container {
    display: flex;
    flex-wrap: wrap;
}

.product-title {
    flex: 1 1 30%; /* Ajusta el ancho de la columna del título según tus necesidades */
    padding-right: 20px; /* Espacio entre el título y las pestañas */
}

.product-tabs {
    flex: 1 1 70%; /* Ajusta el ancho de la columna de las pestañas según tus necesidades */
}

@font-face {
    font-family: 'Joane';
    src: url('path/to/joane-font.woff2') format('woff2'),
         url('path/to/joane-font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.product_title {
    font-family: 'Joane', sans-serif;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
}

.price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
}

.stock-status {
    display: flex;
    align-items: center;
}

.stock-text {
    color: #000;
    font-size: 14px;
    margin-right: 5px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.stock-dot.in-stock {
    background-color: green;
}

.stock-dot.out-of-stock {
    background-color: red;
}

.previous-price {
    font-size: 18px;
    color: #999;
    margin-top: 5px;
}

.previous-price-label {
    margin-right: 5px;
}

.previous-price-amount {
    text-decoration: line-through;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .price {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .current-price {
        margin-bottom: 0;
    }
    .stock-status {
        margin-top: 0;
    }
}