/**
 * Straluma Discounts - Card Layout Styles
 */

/* Hide the original table */
.plugify_table_parent_div {
    display: none !important;
}

/* Aantal label */
.straluma-aantal-label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 20px;
}

/* Card container styles */
.straluma-quantity-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    width: 100%;
}

/* Individual card styles */
.straluma-quantity-card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 12px;
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    min-width: 144px;
    max-width: 216px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Card hover state */
.straluma-quantity-card:hover {
    border-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Active/selected card */
.straluma-quantity-card.active {
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Top part of card containing quantity and discount */
.straluma-card-left {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    line-height: 1;
}

/* Quantity text */
.straluma-card-quantity {
    font-size: 14px;
    font-weight: normal;
}

/* Discount badge */
.straluma-card-discount {
    color: #37a447;
    font-size: 14px;
    font-weight: bold;
}

/* Price text */
.straluma-card-price {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
}

/* Add a label for "stuk" (piece) */
.straluma-card-quantity::after {
    content: " stuk";
    font-weight: normal;
}

/* For quantities greater than 1, use "stuks" (pieces) */
.straluma-quantity-card[data-qty-start="2"] .straluma-card-quantity::after,
.straluma-quantity-card[data-qty-start="3"] .straluma-card-quantity::after {
    content: " stuks";
}

/* Price per unit */
.straluma-card-price::after {
    content: " /st";
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .straluma-quantity-cards {
        justify-content: center;
    }

    .straluma-quantity-card {
        min-width: 100px;
        max-width: 160px;
    }
}
