/* CARD */
div.tt-card {
    flex-direction: column;
    background-color: var(--bg-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem; /* ~8px */
    box-shadow: var(--box-shadow);
    padding: 1rem;
    margin-bottom: 1rem;
}

.tt-card-full-height {
    display: flex;
}

.tt-card-header {
    font-weight: 500;
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.tt-card-body {
    flex: 1 1 auto;
    font-size: 0.95rem;
    color: var(--paragraph-color);
}

.tt-card-footer {
    padding-top: 0.75rem;
    border-top: 1px solid var(--primary-color);
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #6c757d;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PRICE */
.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #e9f7ef; /* Bootstrap success green, tweak as needed */
    background-color: #198754;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    line-height: 1;
    display: inline-block;
}

.product-price sup {
    top: -0.1rem;
    color: var(--paragraph-color);
}

body[data-theme-version='light'] .product-price {
    color: #198754;
    background-color: #e9f7ef;
}

.product-price small {
    font-size: 0.75rem;
    color: var(--paragraph-color);
    font-weight: 400;
    margin-left: 0.25rem;
}
