/* ============================================================
   TND Razorpay v2 – Button + Message Styles
   Tamil Nadu Digital Academy
============================================================ */

/* Wrapper */
.tnd-rpy-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

/* ── Buy Button ─────────────────────────────────────────── */
.tnd-rpy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
    transition: all 0.25s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.tnd-rpy-btn:hover {
    background: linear-gradient(135deg, #e05a00 0%, #e07800 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
    color: #fff !important;
}

.tnd-rpy-btn:active { transform: translateY(0); }

.tnd-rpy-btn:disabled,
.tnd-rpy-btn.tnd-loading {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

/* Shimmer loading animation */
.tnd-rpy-btn.tnd-loading::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: tnd-shimmer 1.1s infinite;
}

@keyframes tnd-shimmer {
    0%   { left: -100%; }
    100% { left: 160%; }
}

/* Price badge on button */
.tnd-btn-price {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
}

/* ── Status Messages ─────────────────────────────────────── */
.tnd-rpy-msg {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
}

.tnd-rpy-msg:not(:empty) { padding: 10px 16px; }

.tnd-rpy-msg.tnd-success {
    background: #e6f9f0;
    color: #1a7a4a;
    border-left: 4px solid #2ecc71;
}

.tnd-rpy-msg.tnd-error {
    background: #fff0f0;
    color: #cc0000;
    border-left: 4px solid #e74c3c;
}

/* Razorpay trust text */
.tnd-rpy-wrap::after {
    content: '🔒 Secured by Razorpay';
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.3px;
}

/* ── Admin Link Table ────────────────────────────────────── */
.tnd-admin-wrap h1 { color: #FF6B00; }
