.pt-100 {
  margin-top: 100px;
}

.pt-100 {
  margin-top: 100px;
}

.design-wrapper {
    max-width: 1000px;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    background: #fff;
}

.left-panel {
    background: #0f7a0f;
    color: #fff;
    padding: 60px 26px;
    height: 100%;
    position: relative; /* REQUIRED */
    text-align: center;
    position: relative;
}

.left-panel h2 {
    margin-bottom: 30px;
    font-weight: normal;
}

.left-panel h3 {
    margin-top: 20px;
    font-size: 22px;
}

.contact {
    position: absolute;
    bottom: 30px;   /* fixed under */
    left: 30px;
    right: 30px;
    font-size: 14px;
    color: #ffd966;
}

.right-panel {
    padding: 40px;
    height: 100%;
}

.title {
    text-align: center;
    font-weight: bold;
    color: #5a2ea6;
    margin-bottom: 15px;
}

.highlight {
    background: #caffc4;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
}

.info-row span {
    color: #5a2ea6;
    font-weight: bold;
}

.box {
    border: 1px solid #ddd;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.payment-title {
    color: #5a2ea6;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.payment-methods div {
    border: 1px solid #ccc;
    padding: 6px 15px;
    cursor: pointer;
}

.payment-methods .active {
    background: #d9f7d9;
    border-color: #0f7a0f;
}

.offline-details {
    font-size: 14px;
    line-height: 1.6;
}

.next-btn {
    text-align: right;
    margin-top: 15px;
}

.next-btn button {
    background: #0f7a0f;
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
}
/* Payment Method Cards */

.payment-type {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    user-select: none;
}
.payment-type.selected {
    border-color: #108000;
    background-color: #e6f7e6;
}

.payment-type input {
    display: none;
}
 .offline-option {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    display: none;
}

.offline-details { 
  
    display: none;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    user-select: none;
}

.payment-option.selected {
    border-color: #108000;
    background-color: #e6f7e6;
}

.payment-option input {
    display: none;
}

/* Gateway Cards */
.payment-gateways{
    display: none;
}

.gateway-card {
    border: 2px solid #ccc;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.3s;
    display: inline-block;
   
}

.gateway-card.selected {
    border-color: #108000;
    background-color: #e6f7e6;
}

.gateway-card input {
    display: none;
}