.wc-tpr-frontend {
    margin: 2em 0;
}

.wc-tpr-blocks-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.wc-tpr-block {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.wc-tpr-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-color: #0073aa;
}

.wc-tpr-block.wc-tpr-block-highlighted {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-color: #0073aa;
    background-color: #f0f8ff;
}

.wc-tpr-quantity {
    font-size: 1em;
    font-weight: 600;
    color: #3c434a;
    margin-bottom: 8px;
}

.wc-tpr-price {
    font-size: 1.2em;
    font-weight: 700;
    color: #1d2327;
}

.wc-tpr-price .woocommerce-Price-amount.amount {
    color: #1d2327;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wc-tpr-blocks-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wc-tpr-block {
        width: 100%;
        margin-bottom: 10px;
    }
}
