/* ── Skeleton order-confirmed ── */
#order-confirmed-skeleton {
    width: 100%;
    padding-top: 115px;
}

.oc-sk-title {
    height: 28px;
    width: 50%;
    border-radius: 6px;
    margin: 0 auto 14px;
}

.oc-sk-subtitle {
    height: 16px;
    width: 65%;
    border-radius: 6px;
    margin: 0 auto 32px;
}

.oc-sk-info-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.oc-sk-card {
    flex: 1;
    background: #fff;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oc-sk-card-title {
    height: 20px;
    width: 55%;
    border-radius: 5px;
}

.oc-sk-card-line {
    height: 14px;
    width: 80%;
    border-radius: 4px;
}

.oc-sk-detail-card {
    background: #fff;
    border-radius: 7px;
    padding: 24px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 32px;
}

.oc-sk-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.oc-sk-item-img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
    flex-shrink: 0;
}

.oc-sk-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oc-sk-item-name {
    height: 14px;
    width: 70%;
    border-radius: 4px;
}

.oc-sk-item-price {
    height: 14px;
    width: 30%;
    border-radius: 4px;
}

.oc-sk-totals {
    border-top: 1px solid #eee;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.oc-sk-total-row {
    display: flex;
    gap: 32px;
}

.oc-sk-total-label {
    height: 14px;
    width: 70px;
    border-radius: 4px;
}

.oc-sk-total-val {
    height: 14px;
    width: 50px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .oc-sk-info-row { flex-direction: column; }
    .oc-sk-title, .oc-sk-subtitle { width: 90%; }
}
