/* ================================================
   Tierra Frontend Styles — v1.2.0
   Colors are overridden dynamically via inline <style>
   from PHP settings. These are fallback defaults.
   ================================================ */

/* ── SINGLE PRODUCT PAGE TABLE ────────────────── */
.tierra-pricing-table.tierra-single-table {
    max-width: 650px;
    margin: 1.5rem 0;
}

.tierra-table-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.tierra-table {
    width: 100%;
    border-collapse: collapse;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.tierra-th {
    text-align: left;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.tierra-row {
    transition: background-color 0.2s ease;
}

[data-clickable="1"] .tierra-row {
    cursor: pointer;
}

.tierra-row:hover {
    background-color: #f3f4f6;
}

.tierra-row-active {
    background-color: #8F4EC8 !important;
}

.tierra-row-active .tierra-td {
    color: #ffffff !important;
    font-weight: 600;
}

.tierra-row-active .tierra-original-price {
    color: rgba(255,255,255,0.6) !important;
}

.tierra-td {
    padding: 16px 24px;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.tierra-td-price {
    font-weight: 600;
}

.tierra-td-discount {
    font-weight: 500;
    color: #10b981;
}

.tierra-original-price {
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 8px;
    font-size: 13px;
    font-weight: 400;
}

/* Upsell message */
.tierra-upsell-message {
    margin-top: 10px;
    padding: 10px 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-size: 13px;
    color: #92400e;
    line-height: 1.4;
}

/* Dynamic price display */
.tierra-dynamic-price {
    margin-top: 1rem;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
}

.tierra-dynamic-price .tierra-current-discount {
    color: #10b981;
    font-weight: 500;
    margin-top: 4px;
}

/* ── SHOP / CATEGORY PAGE COMPACT TABLE ───────── */
.tierra-pricing-table.tierra-compact-table {
    margin-top: 8px;
}

.tierra-mini-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.tierra-mini-th {
    text-align: left;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    border-bottom: 1px solid #e5e7eb;
}

.tierra-mini-row {
    transition: background-color 0.2s ease;
}

.tierra-mini-row-active {
    background-color: #8F4EC8;
}

.tierra-mini-row-active .tierra-mini-td {
    color: #ffffff;
    font-weight: 600;
}

.tierra-mini-td {
    padding: 8px 12px;
    font-size: 13px;
    color: #374151;
}

/* ── ANIMATIONS ───────────────────────────────── */
.tierra-animated {
    animation: tierraFadeUp 0.4s ease-out both;
}

@keyframes tierraFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE RESPONSIVE ────────────────────────── */
@media (max-width: 480px) {
    .tierra-th, .tierra-td { padding: 12px 16px; font-size: 14px; }
    .tierra-mini-th, .tierra-mini-td { padding: 6px 8px; font-size: 12px; }
}
