.header-checkout {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.header-checkout-content {
    display: flex;
    align-items: center;
}

.header-checkout-logo img {
    max-height: 45px;
}

.header-checkout-stepper-cart {
    width: 100%;
    display: flex;
    background: #fff;
    padding-top: 3rem;
    margin-bottom: 3rem;
}

.header-checkout-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stepper-item:hover .step-counter {
    transform: scale(1.1);
    background: #333;
    color: #fff;
}

.stepper-item:hover .step-name {
    color: #333;
    text-decoration: underline !important;
}

.stepper-item.pending {
    cursor: default;
}

.stepper-item.pending:hover .step-counter {
    transform: none;
    background: #f4f4f4;
    color: #ccc;
}

.stepper-item.pending:hover .step-name {
    color: #ccc;
    text-decoration: none !important;
}

.stepper-item::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.stepper-item:last-child::after {
    display: none;
}

.stepper-item.completed::after {
    background: #000;
}

.step-counter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    cursor: default;
    color: #ccc;
    border: none;
}

.stepper-item.active .step-counter,
.stepper-item.completed .step-counter {
    background: #000;
    color: #fff;
}

.step-counter i {
    font-size: 12px;
}

.step-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #ccc;
    line-height: 1;
    letter-spacing: 0.5px;
}

.stepper-item.active .step-name,
.stepper-item.completed .step-name {
    color: #000;
}

.step-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #bbb;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 4px;
}

.stepper-item.active .step-subtitle,
.stepper-item.completed .step-subtitle {
    color: #333;
}

@media (min-width: 768px) {
    .header-checkout-stepper {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .step-subtitle {
        display: none;
    }
}

@media (max-width: 767px) {
    .header-checkout-logo img {
        max-height: 35px;
    }

    .header-checkout-content {
        flex-direction: column;
        gap: 20px;
    }

    .header-checkout-stepper {
        margin-left: 0;
        width: 100%;
        padding: 0 10px;
    }

    .step-name {
        font-size: 14px;
    }

    .step-subtitle {
        font-size: 11px;
    }

    .step-counter {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .stepper-item::after {
        top: 14px;
    }
}