.checkout-stepper {
    width: 520px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.circle {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
}

.completed .circle {
    background: #C5902C;
    border: 2px solid #C5902C;
    color: #fff;
}

.current .circle {
    background: #fff;
    border: 2px solid #3C3C3C;
    color: #474747;
}

.step span {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #474747;
}

.line {
    width: 190px;
    margin-top: 16px;
    border-top: 1px solid #787878;
}

.line.active {
    border-top: 2px solid #C5902C;
}
.payment-section {
    width: 100%;
    max-width: 1273px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
}

.payment-section h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 26px;
}

/* Cards */
.payment-card {
    position: relative;
    display: flex;
    align-items: center;
    height: 71px;
    background: #fff;
    border: 0.5px solid #000;
    border-radius: 10px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.25);
    margin-bottom: 18px;
    padding: 0 40px;
    cursor: pointer;
}

.payment-card.active {
    height: 103px;
    box-shadow:
        0 4px 4px rgba(0,0,0,0.25),
        0 4px 4px rgba(0,0,0,0.25),
        0 4px 4px rgba(0,0,0,0.25);
}

.payment-card input {
    display: none;
}

/* Price */
.payment-price,
.new-price {
    display: flex;
    align-items: center;
    min-width: 120px;
}

.rupee {
    font-size: 24px;
    font-weight: 700;
    color: #565656;
    margin-right: 4px;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    color: #565656;
}

.old-price {
    font-size: 20px;
    font-weight: 500;
    color: #474747;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.payment-price-column {
    min-width: 120px;
}

/* Divider */
.divider {
    width: 1px;
    height: 42px;
    border-left: 1px dashed #000;
    margin: 0 28px;
}

.divider.large {
    height: 56px;
}

/* Title */
.payment-title {
    font-size: 20px;
    font-weight: 600;
    color: #4B4B4B;
}

/* Radio Button */
.radio-custom {
    position: absolute;
    right: 40px;
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
}

.radio-custom.selected::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #C5902C;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.payment-footer {
    width: 100%;
    height: 86px;
    background: #FFF5EB;
    border: 0.5px solid #C6BCBC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 76px 0 89px;
    box-sizing: border-box;
    border-radius: 6px;
}

.amount-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.amount-label {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #474747;
}

.amount-value {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #C5902C;
}

.amount-value .rupee {
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
}

.amount-value span:last-child {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
}

.pay-now-btn {
    width: 165px;
    height: 48px;
    border: none;
    border-radius: 4px;
    background: #C5902C;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.pay-now-btn:hover {
    opacity: 0.9;
}


.checkout-progress-wrapper{
    width:727px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    margin:40px auto;
    font-family:'Inter',sans-serif;
}

/* Step */
.checkout-progress-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    min-width:56px;
}

/* Circle */
.checkout-progress-circle{
    width:33px;
    height:33px;
    border-radius:50%;
    border:2px solid #474747;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;

    font-weight:600;
    font-size:16px;
    line-height:19px;
    color:#474747;
}

/* Completed (Cart) */
.checkout-progress-step.completed .checkout-progress-circle{
    background:#C5902C;
    border-color:#C5902C;
    color:#FFFFFF;
}

/* Current (Address) */
.checkout-progress-step.current .checkout-progress-circle{
    border:2px solid #C5902C;
    color:#C5902C;
    background:#FFFFFF;
}

/* Labels */
.checkout-progress-label{
    margin-top:6px;
    font-family:'Inter',sans-serif;
    font-weight:600;
    font-size:12px;
    line-height:15px;
    color:#474747;
    text-align:center;
}

/* Connector Lines */
.checkout-progress-line{
    width:192px;
    margin-top:16px;
    border-top:1px solid #787878;
}

.checkout-progress-line.active{
    border-top:2px solid #C5902C;
}

.address-selection-wrapper{
    width:100%;
    max-width:1281px;
    margin:40px auto;
    font-family:'Inter',sans-serif;
}

/* Header */
.address-selection-header{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.address-selection-add-btn{
    font-size:16px;
    font-weight:600;
    color:#C5902C;
    text-decoration:none;
    line-height:19px;
}

/* Cards */
.address-selection-card{
    width:100%;
    min-height:116px;
    background:#FFFFFF;
    box-shadow:0 4px 28px rgba(0,0,0,0.25);
    padding:18px 28px;
    margin-bottom:16px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    box-sizing:border-box;
}

.address-selection-content{
    max-width:780px;
}

.address-selection-name{
    margin:0 0 12px;
    font-size:16px;
    font-weight:600;
    line-height:19px;
    color:#272727;
}

.address-selection-details{
    margin:0;
    font-size:14px;
    font-weight:400;
    line-height:24px;
    color:#000000;
}

/* Actions */
.address-selection-actions{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:8px;
}

.address-selection-edit-btn{
    border:none;
    background:transparent;
    color:#C5902C;
    font-size:28px;
    cursor:pointer;
    padding:0;
    line-height:1;
}

/* Custom Radio */
.address-selection-radio{
    position:relative;
    width:25px;
    height:25px;
    cursor:pointer;
}

.address-selection-radio input{
    display:none;
}

.address-selection-radio span{
    position:absolute;
    inset:0;
    border:1.5px solid #C5902C;
    border-radius:50%;
    background:#FFFFFF;
}

.address-selection-radio input:checked + span::after{
    content:"";
    position:absolute;
    width:14px;
    height:14px;
    background:#C5902C;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

/* Footer */
.address-selection-footer{
    display:flex;
    justify-content:center;
    margin-top:70px;
}

.address-selection-deliver-btn{
    width:421px;
    height:54px;
    border:none;
    border-radius:10px;
    background:#C5902C;
    color:#FFFFFF;
    font-size:16px;
    font-weight:600;
    line-height:19px;
    cursor:pointer;
    transition:0.2s ease;
}

.address-selection-deliver-btn:hover{
    opacity:0.95;
}
.address-selection-edit-btn img{
    width: 25px;
}
.filter-toolbar-wrapper{
    display:flex;
    gap:40px;
    align-items:center;
    justify-content:space-around;
    padding-top:20px;
    padding-bottom: 20px;
    flex-wrap:wrap;
}

.filter-toolbar-btn{
    width:172px;
    height:47px;
    border:0.2px solid #7E7E7E;
    border-radius:4px;
    background:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    cursor:pointer;
    font-family:'Inter', sans-serif;
    font-size:18px;
    font-weight:400;
    color:#000;
}

@media (max-width: 1024px) {
    .filter-toolbar-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .filter-toolbar-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .filter-toolbar-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.filter-toolbar-btn.sort{
    background:rgba(255,255,255,0.4);
}

.filter-toolbar-btn svg{
    width:22px;
    height:22px;
    flex-shrink:0;
}

.filter-toolbar-dropdown{
    margin-left:auto;
}

.filter-toolbar-content{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:0 16px;
}

.filter-toolbar-label{
    font-size:18px;
    line-height:22px;
}