.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway';
    font-size: 14px;
    padding: 20px 50px;
}

.breadcrumb a {
    color: #5C5F6A;
    text-decoration: none;
}

.breadcrumb .current {
    color: #0E1422;
    font-weight: 500;
}
.checkout-title {
    margin-left: 90px;
    margin-top: 20px;
    width: 105px;
    position: relative;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 175%;
    display: inline-block;
    font-family: 'Montserrat';
    color: #161616;
    text-align: left;
}
/* Progress Steps Styles */
.bars-nav-bars-large {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 20px;
}

.steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* Common Step Styles */
.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.step-circle {
    position: relative;
    width: 24px;
    height: 24px;
}

.circle-border {
    position: absolute;
    border-radius: 50%;
    width: 24px;
    height: 24px;
}

.step-number {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Raleway';
    font-weight: 500;
}

.step-text {
    font-family: 'Raleway';
    font-size: 14px;
}

.step-arrow {
    width: 19px;
    height: auto;
    opacity: 0.5;
}

/* Completed (Address) Step */
.step-completed {
    opacity: 1;
}

.step-completed .circle-border {
    border: 2px solid #458140;
    background-color: transparent;
}

.step-completed .step-number {
    color: #458140;
    font-size: 16px;
}

.step-completed .step-text {
    color: #458140;
    font-weight: 500;
}

/* Active (Review) Step */
.step-active {
    opacity: 1;
}

.step-active .circle-border {
    border: 2px solid #000000;
}

.step-active .step-number {
    color: #000000;
}

.step-active .step-text {
    color: #000000;
    font-weight: 600;
}

/* Inactive (Payment) Step */
.step-inactive .circle-border {
    border: 2px solid #CCCCCC;
    background-color: transparent;
}

.step-inactive .step-number {
    color: #CCCCCC;
}

.step-inactive .step-text {
    color: #CCCCCC;
}

/* Arrow Styles */
.step-completed + .step-arrow {
    opacity: 1;
    filter: invert(45%) sepia(82%) saturate(385%) hue-rotate(86deg) brightness(95%) contrast(88%);
}

/* Review Content */
.review-content {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Order Items */
.order-items {
    background: #fff;
    padding: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    width: 100%;
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 500;
    color: #161616;
    margin-bottom: 8px;
}

.item-quantity {
    font-family: 'Raleway';
    font-size: 14px;
    color: #777777;
    margin-bottom: 8px;
}

.item-price {
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 500;
    color: #161616;
}

.edit-btn {
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Raleway';
}

/* Order Summary */
.order-summary {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    width: 40%;
}

.summary-section {

    padding-bottom: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dbdbdb;
    margin-bottom: 16px;
    padding-top: 16px;
    font-family: 'Raleway';
    font-size: 14px;
    color: #161616;
}

.summary-row span{
    font-family: 'Raleway';
}


.total {
    margin-top: 20px;
}

.total-text {
    display: flex;
    flex-direction: column;
    
}
.total-text  span{
    font-family: 'Raleway';
    
}

.vat-text {
    font-size: 12px;
    color: #777777;
}

.total-amount {
    color: #458140;
    font-weight: 700;
    font-family: 'Raleway';
}

/* Coupon Section */
.coupon-section .apply-promo, .super-coin {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #161616;
    font-family: 'DM Sans';
}
.coupon-section .terms {
    font-size: 12px;
    color: #777777;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'DM Sans';
}
.coupon-section .terms a{
    text-decoration: none;
    color: #458140;
    font-family: 'DM Sans';
}

.arrow-icon {
    width: 16px;
    height: 16px;
}


.continue-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-family: 'Raleway';
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}
