.order-step-section {
    padding: 0 15px 20px;
    background-color: #fff;
    max-width: 448px;
    margin: 0 auto;
    border-right: 1px solid grey;
    border-left: 1px solid grey;
}

.order-banner-wrapper {
    margin-bottom: 25px;
    text-align: center;
}

.offer-banner-img {
    width: 100%;
    max-width: 448px;
    height: auto;
    display: inline-block;
    padding-top: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.step-divider {
    border: 0;
    height: 1px;
    background: #000;
    margin-bottom: 20px;
}

.bundle-card {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.bundle-card.active {
    border: 2px solid #00bfa5;
    background-color: #f0fdfa;
}

.bundle-check-box {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
}

.bundle-card.active .bundle-check-box {
    background-color: #008000;
    border-color: #008000;
}

.bundle-card.active .bundle-check-box::after {
    content: '✔';
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bundle-img-box {
    width: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}

.bundle-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

.bundle-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.discount-tag {
    display: inline-block;
    background-color: #ffe5e5;
    color: #d32f2f;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

.badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 4px;
}

.badge-orange { background-color: #ff9900; }
.badge-red { background-color: #ff3b30; }
.badge-purple { background-color: #9c27b0; }

.bundle-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.bundle-price {
    font-size: 14px;
}

.price-new {
    color: #ff0000;
    font-weight: 900;
    font-size: 16px;
    margin-right: 5px;
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}

.bundle-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    height: 30px;
    flex-shrink: 0;
    margin-left: 5px;
}

.bundle-qty-control button {
    border: none;
    background: none;
    width: 25px;
    font-size: 16px;
    color: #555;
    cursor: pointer;
}

.bundle-qty-control span {
    font-size: 14px;
    font-weight: 600;
    padding: 0 5px;
}

.shipping-protection-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.protection-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.protection-label input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: #555;
}

.top-marquee-bar {
    background-color: rgb(15, 102, 184);
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 2000;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.green-submit-btn {
    display: block;
    width: 100%;
    background-color: rgb(0, 175, 87);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    padding: 15px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 20px auto !important;
}

.checkout-receipt-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-family: inherit;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.receipt-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.receipt-prod-info {
    display: flex;
    flex-direction: column;
    max-width: 65%;
    text-align: left;
    font-weight: 600;
}

.receipt-qty {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

.receipt-price-box {
    text-align: right;
}

.receipt-new-price {
    color: #ff0000;
    font-weight: 700;
    font-size: 15px;
}

.receipt-old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}

.protection-label-receipt {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.protection-label-receipt input {
    margin-right: 8px;
    accent-color: #53a6f8;
    width: 16px;
    height: 16px;
}

.receipt-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 900;
    color: #000;
    margin-top: 15px;
}

@media (max-width: 800px) {
    .order-step-section{
        padding: 0;
        width: 100%;
    }

    .order-banner-wrapper,
    .bundles-container,
    .protection-label{
        padding: 0 15px;
    }

    .price-new {
        font-size: 14px;
    }

    .price-old {
        font-size: 12px;
    }

    .step-title {
        padding: 0 15px;
    }
}