.checkout-steps {
    padding: 00px 0;
    border: 0px solid red;
}

.checkout-steps .d-flex {
    position: relative;
}

.checkout-line {
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
    cursor: pointer;
}

.step-item:hover .step-circle {
    transform: scale(1.05);
    transition: .2s;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 10px auto;

    font-weight: 700;
    font-size: 16px;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.step-item.active .step-circle {
    background: #198754;
    border-color: #198754;
    color: white;
}

.step-item.completed .step-circle {
    background: #198754;
    border-color: #198754;
    color: white;
}

.step-item.completed .step-circle::before {
    content: "✓";
}

.delivery-card {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
}

.delivery-card.active {
    border-color: #22c55e;
    background-color: #f0fdf4;
}

.delivery-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/** cart shipping */
.shipping-item {
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 8px;
}

.shipping-icon {
    width: 40px;
    flex-shrink: 0;
    font-size: 20px;
    color: #666;
    display: flex;
    justify-content: center;
    padding-top: 2px;
}

.shipping-content {
    min-width: 0;
}

.shipping-content h6 {
    font-size: 15px;
}

.shipping-content .small {
    font-size: 13px;
    line-height: 1.2;
}

.shipping-arrow {
    width: 24px;
    flex-shrink: 0;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
}

/** items products pedidos */
.order-item {
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.2rem;
}

.product-qty {
    color: #555;
}

.product-price {
    white-space: nowrap;
    font-size: 1.2rem;
}

/** favorite-btn */
.favorite-btn {
    background: rgba(255, 255, 255, 0.85); /* capa blanca semitransparente */
    backdrop-filter: blur(2px);            /* efecto cristal (opcional pero queda brutal) */
    border-radius: 50%;
    padding: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-icon {
    font-size: 1.3rem;
    color: #d9534f;
    cursor: pointer;
    transition: transform .15s ease, color .15s ease;
}

.favorite-icon.active {
    color: #e60023; /* rojo más intenso cuando está marcado */
}

.favorite-icon:active {
    transform: scale(1.2);
}