/* header */

.product-parent-element {
    display: flex;
    flex-direction: column;
}

@media (min-width: 700px) {
    .product-parent-element {
        flex-direction: row;
    }
}



/* stock */

.stock-label {
    display: inline-block;
    padding: 4px 10px;
    font-weight: 600;
    color: black;
    border: 1px solid black;
    font-size: 0.875rem;
    background-color: white;
    line-height: 1;
    text-align: center;
}


.transition-chevron {
    transition: transform 0.3s ease;
}
.transition-chevron.rotated {
    transform: rotate(180deg);
}

/* order button */

.custom-order-btn {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 12px 0;
    text-align: center;
    border: 1px solid black;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.custom-order-btn:hover {
    background-color: #ffffff;
    color: black;
}

.custom-icon-btn {
    width: 45px;
    height: 45px;
    background-color: white;
    border: 1px solid black;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.custom-icon-btn:hover {
    background-color: #e5e5e5;
}

/* delivery info */

.delivery-box-group {
    border: 1px solid #ccc;
    overflow: hidden;
}

.delivery-box {
    border-top: 1px solid #ccc;
    background-color: white;
}

.delivery-box:first-child {
    border-top: none;
}

.delivery-icon {
    font-size: 25px;
    color: black;
    margin-top: 2px;
}

.delivery-date {
    font-size: 0.95rem;
}

.text-seller {
    color: #f15c00; /* of een class in je design system */
    font-weight: 600;
    text-decoration: none;
}

.text-grey {
    color: #666;
}

.delivery-info-icon {
    font-size: 25px;
}

.toggle-extra-colors{
    color: #000;
}