.shipcd-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    /* Zawsze pełna szerokość w osobnej linii — także gdy rodzic jest flexem lub używa floatów. */
    flex: 0 0 100%;
    width: 100%;
    max-width: 585px;
    box-sizing: border-box;
    clear: both;
}

.shipcd-icon {
    flex: 0 0 auto;
}

.shipcd-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.shipcd-timer {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* Wariant 1 — ramka na białym tle */
.shipcd-outline {
    border: 1px solid var(--shipcd-border, #c9a24b);
    background: #fff;
    color: var(--shipcd-text, #232323);
}

.shipcd-outline .shipcd-icon {
    color: var(--shipcd-timer, #c9a24b);
}

.shipcd-outline .shipcd-timer {
    color: var(--shipcd-timer, #c9a24b);
    font-weight: 700;
}

/* Wariant 2 — wypełnione tło */
.shipcd-solid {
    justify-content: center;
    border-radius: 6px;
    background: var(--shipcd-bg, #29b665);
    color: var(--shipcd-text, #fff);
    font-weight: 600;
}

.shipcd-solid .shipcd-icon,
.shipcd-solid .shipcd-timer {
    color: inherit;
}

.shipcd-solid .shipcd-timer {
    font-weight: 700;
}
