.warranty-heading {
    font-weight: 500;
    font-size: 45px;
    line-height: 120%;
    text-align: center;
}

.warranty-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
}

.submit-btn-color {
    background-color: rgba(31, 57, 101, 1);
}

.result-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
}
.result-text {
    font-size: 32px;
    font-weight: 400;
    line-height: 150%;
}
.note-heading {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.note-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 768px) {
    .warranty-heading{
        font-size: 28px;
    }
    .warranty-text{
        font-size: 16px;
    }
    .result-heading {
        font-size: 24px;
    }
    .result-text {
        font-size: 28px;
    }
    .note-heading {
        font-size: 16px;
    }
    .note-text {
        font-size: 16px;
    }
}

.card-separator {
    position: relative;
}

@media (max-width: 1023px) {
    .card-separator::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: white;
    }
}

@media (min-width: 1024px) {
    .card-separator::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: white;
    }
}

#result_serial_number {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* Modal Backdrop Blur */
.custom-backdrop-blur {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.05); /* Fallback/Base */
}

/* Modal Custom Styles */
.warranty-modal-container {
    background-color: #000000;
    border: 1px solid #374151; /* gray-700 */
    border-radius: 1rem; /* rounded-2xl */
}

.warranty-icon-bg {
    background-color: rgba(127, 29, 29, 0.3); /* red-900/30 */
}

.warranty-contact-box {
    background-color: rgba(31, 41, 55, 0.5); /* gray-800/50 */
    border: 1px solid #374151; /* gray-700 */
    border-radius: 0.75rem; /* rounded-xl */
}

.warranty-divider {
    height: 1px;
    background-color: #374151; /* gray-700 */
    width: 100%;
}

.warranty-text-secondary {
    color: #D1D5DB; /* gray-300 */
}

.warranty-text-muted {
    color: #9CA3AF; /* gray-400 */
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}