.cart-unavailable-warning {
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid #ef9a9a;
    background: #ffebee;
    border-radius: 4px;
}

/* Eigene Darstellung für die Warnung */
.status-blocked {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #c62828;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.status-blocked .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c62828;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Status direkt am Produkt */
.product-status-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #c62828;
    font-size: 14px;
    font-weight: 600;
}

.product-status-cart .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c62828;
    flex-shrink: 0;
}

.product-status {
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 50px;
	font-weight: 600;
}

.product-status .status-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 8px;
}

/* 146 = Momentan nicht lieferbar */
.status-146 {
    color: #c62828;
}
.status-146 .status-dot {
    background: #c62828;
}

/* 147 = Auf Anfrage */
.status-147 {
    color: #ef6c00;
}
.status-147 .status-dot {
    background: #ef6c00;
}

/* 148 = Nachbestellt */
.status-148 {
    color: #f9a825;
}
.status-148 .status-dot {
    background: #f9a825;
}

/* 149 = Nicht mehr verfügbar */
.status-149 {
    color: #000000;
}
.status-149 .status-dot {
    background: #000000;
}

/* 150 = normal lieferbar */
.status-150 {
    color: #f9a825;
}
.status-150 .status-dot {
    background: #f9a825;
}

/* Artikelbeschreibungsbreite anpassen */
.description > .column.col_6.align_right_center {
    max-width: 100% !important;
}