/*
 Theme Name:   Astra Child
 Theme URI:	http://example.com/astra-child
 Description:  Astra Child Theme is an awesome theme.
 Author:   	Brainstorm Force
 Author URI:   https://www.wpastra.com
 Template: 	astra
 Version:  	1.0.0
 License:  	GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:     	astra
 Text Domain:  astrachild
*/

#otp-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	border: 4px dashed orange;
    display: none;
}

#otp-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}


/* For disabled modal state */
#otp-modal.disabled {
    opacity: 0.5;
    pointer-events: none;
}

#otp-modal.disabled input:disabled,
#otp-modal.disabled button:disabled {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
}

#otp-resend {
    margin-top: 10px;
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    height: 40px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

#otp-resend:hover {
    background-color: #ec971f;
}

.custom-thankyou-msg {
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.6;
    color: #222;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px; /* adds space after */
}

.redeem-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
  }
  
  .redeem-badge {
    display: inline-block;
    padding: 6px 14px;                /* more padding for larger feel */
    margin: 6px 8px 6px 0;
    border-radius: 14px;
    font-size: 0.85rem;               /* slightly larger text */
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .redeem-badge:hover {
    transform: scale(1.05);           /* optional: slight lift on hover */
  }
  
  .badge-online {
    background-color: #4CAF50;
    color: white;
  }
  
  .badge-instore {
    background-color: #F0B429;
    color: #222;
  }
  
  .badge-expiry {
    background-color: #8e44ad; /* deep purple */
    color: white;
  }
  
  
