/* ─────────────────────────────────────────────────────────────────
   Shipment Tracking for WooCommerce — Frontend Styles
   ───────────────────────────────────────────────────────────────── */

.wst-tracking-section {
    margin: 30px 0;
}

.wst-tracking-section .wst-title {
    font-size: 1.2em;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e4e7;
}

/* ── Tracking Card ─────────────────────────────────────────────── */
.wst-track-card {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.wst-track-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ── Card Header ───────────────────────────────────────────────── */
.wst-track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #f6f7f7;
    border-bottom: 1px solid #e2e4e7;
}

.wst-carrier-badge {
    font-weight: 700;
    font-size: 0.9em;
    color: #23282d;
    background: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #d0d5dd;
    letter-spacing: 0.3px;
}

.wst-shipped-date {
    font-size: 0.8em;
    color: #666;
}

/* ── Card Body ─────────────────────────────────────────────────── */
.wst-track-body {
    padding: 14px 16px;
}

.wst-tracking-label {
    font-size: 0.8em;
    color: #555;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wst-track-link.button.alt,
a.wst-track-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.15s, transform 0.1s;
}

.wst-track-link:hover {
    transform: translateY(-1px);
}

.wst-track-icon {
    font-size: 0.85em;
    opacity: 0.75;
}

.wst-track-number {
    font-family: monospace;
    font-size: 1em;
    color: #23282d;
    background: #f6f7f7;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.wst-track-note {
    margin: 10px 0 0;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .wst-track-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
