.dg-estado-pedido-wrap{
    max-width:760px;
    margin:24px auto;
    padding:20px;
    font-family:inherit;
}

.dg-estado-pedido-header h2{
    font-size:34px;
    margin:0 0 8px;
    color:#0f172a;
}

.dg-estado-pedido-header p{
    color:#64748b;
    margin-bottom:22px;
}

.dg-estado-pedido-card{
    background:#fff;
    border-radius:26px;
    padding:22px;
    box-shadow:0 12px 30px rgba(15,23,42,.10);
    border:1px solid #e5e7eb;
}

.dg-estado-pedido-top{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:flex-start;
    margin-bottom:20px;
}

.dg-estado-pedido-top span{
    color:#64748b;
    font-weight:700;
}

.dg-estado-pedido-top h3{
    font-size:34px;
    margin:4px 0 0;
    color:#0f172a;
}

.dg-estado-badge{
    background:#16a34a;
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-weight:900;
    font-size:14px;
    text-align:center;
}

.dg-estado-pedido-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.dg-estado-pedido-info div{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:14px;
}

.dg-estado-pedido-info strong{
    display:block;
    color:#0f172a;
    margin-bottom:6px;
}

.dg-estado-pedido-info span{
    color:#475569;
}

.dg-estado-full{
    grid-column:1 / -1;
}

.dg-estado-timeline{
    background:#fff;
    border-radius:26px;
    padding:22px;
    margin-top:20px;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    border:1px solid #e5e7eb;
}

.dg-estado-step{
    display:flex;
    gap:12px;
    align-items:center;
    padding:12px 0;
    color:#94a3b8;
    font-weight:800;
}

.dg-estado-step span{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#cbd5e1;
    flex:none;
}

.dg-estado-step.activo{
    color:#0f172a;
}

.dg-estado-step.activo span{
    background:#16a34a;
    box-shadow:0 0 0 5px #dcfce7;
}

@media(max-width:768px){

    .dg-estado-pedido-wrap{
        margin:14px auto;
        padding:14px;
    }

    .dg-estado-pedido-header h2{
        font-size:30px;
    }

    .dg-estado-pedido-card,
    .dg-estado-timeline{
        border-radius:22px;
        padding:18px;
    }

    .dg-estado-pedido-top{
        flex-direction:column;
    }

    .dg-estado-badge{
        width:100%;
    }

    .dg-estado-pedido-info{
        grid-template-columns:1fr;
    }

    .dg-estado-pedido-top h3{
        font-size:30px;
    }
}