.black-color {
    color: #333333;
}

.grey-color {
    color: #4B4B4B;
}

.order-details-wrapper .order-detail-title {
    font-size: 28px;
}

.order-details-wrapper .track-order-text {
    font-size: 14px;
}

.order-details-wrapper .order-progress p {
    font-size: 12px;
}

.order-details-wrapper .order-progress small {
    font-size: 11px;
}

.paynow-btn {
    background: rgba(255, 215, 0, 0.1);
    color: #bda437;
    border: 1px solid #f4d06f;
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 600;
    text-transform: capitalize;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-align: right;
    font-size: 14px;
}

.paynow-btn:hover {
  /* background: #BDA371; */
  color: #bda437;
  /* box-shadow: 0 4px 12px rgba(244, 208, 111, 0.4); */
  transform: translateY(-2px);
}


.order-details-wrapper .order-progress {
    background: #f5f5f5;
    border-radius: 10px;
}


.order-details-wrapper .step {
    text-align: center;
    flex: 1;
    position: relative;
}

.order-details-wrapper .step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -40%;
    bottom: 60px;
    width: 79%;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.order-details-wrapper .step.completed:not(:last-child)::after {
    background: #4ADE80;
}

.order-details-wrapper .step .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 10px;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.order-details-wrapper .step.completed .icon {
    background: #4ADE80;
    color: #16a34a;
}

.order-details-wrapper .status {
    font-size: 14px;
    color: #4ADE80;
}

.order-details-wrapper .card.card-custom,
.order-details-wrapper .card-custom.item,
.order-details-wrapper .card.card-custom.card-order-items div {
    border-radius: 12px;
    background-color: #f5f5f5;
    border: 0;
}

.order-details-wrapper .card.card-custom.card-order-items {
    background-color: #ffffff;
    border: 1px solid #ccc;
}

.order-details-wrapper .estimated-block {
    background-color: white;
    border-radius: 10px;
}

.order-details-wrapper .card-order-summary .btn-gold {
    background-color: #BDA371;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.address-block-wrapper .card.card-custom {
    width: calc(48% - 0px);
}