/**
 * Woo Theme Details - Frontend Styles
 *
 * File location : yourtheme/inc/woo-theme-details.css
 * Loaded only on single product pages where Theme Details is enabled.
 */

.td-theme-details {
    margin: 20px 0;
    font-family: inherit;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ── Header ── */
.td-theme-details .td-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.td-theme-details .td-header-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #14b8a6;
    box-shadow: 0 0 6px rgba(20, 184, 166, 0.7);
    flex-shrink: 0;
}

.td-theme-details .td-header h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.8em !important;
    font-weight: 700 !important;
    color: #f8fafc !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border: none !important;
    line-height: 1 !important;
}

.td-theme-details .td-header-badge {
    margin-left: auto;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.35);
    color: #5eead4;
    font-size: 0.68em;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

/* ── Table ── */
.td-theme-details .td-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #ffffff;
}

.td-theme-details .td-table tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.td-theme-details .td-table tr:last-child {
    border-bottom: none;
}

.td-theme-details .td-table tr:hover {
    background: #fafbfc;
}

.td-theme-details .td-table th {
    width: 36%;
    padding: 12px 18px;
    font-size: 0.78em;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
    background: #f8fafc;
    border-right: 2px solid #e2e8f0;
    vertical-align: middle;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.td-theme-details .td-table td {
    padding: 12px 18px;
    font-size: 0.78em;
    color: #475569;
    text-align: left;
    vertical-align: middle;
    line-height: 1.5;
}

.td-theme-details .td-table .td-value-pill {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 1em;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
}
