/**
 * Modern Invoice Pro - Frontend Styles
 *
 * Styles for customer-facing invoice download buttons and sections.
 *
 * @package ModernInvoicePro
 */

/* ===================================
   My Account - Invoice Download Button
   =================================== */
.woocommerce-orders-table .mip_download_invoice a.button,
a.mip-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
    line-height: 1.4;
}

.woocommerce-orders-table .mip_download_invoice a.button:hover,
a.mip-download-btn:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    color: #ffffff !important;
}

a.mip-download-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===================================
   Order Details - Invoice Section
   =================================== */
.mip-invoice-download-section {
    margin: 24px 0;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.mip-invoice-download-section h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.mip-invoice-download-section p {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 14px 0;
}

.mip-invoice-download-section strong {
    color: #6366f1;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ===================================
   Thank You Page - Invoice Card
   =================================== */
.mip-thankyou-invoice {
    margin: 24px 0;
}

.mip-thankyou-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mip-thankyou-card:hover {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}

.mip-thankyou-card svg {
    width: 32px;
    height: 32px;
    color: #6366f1;
    flex-shrink: 0;
}

.mip-thankyou-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.mip-thankyou-card p {
    font-size: 12px;
    color: #6366f1;
    margin: 0;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-weight: 600;
}

.mip-thankyou-card div {
    flex: 1;
}

.mip-thankyou-card .mip-download-btn {
    flex-shrink: 0;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 600px) {
    .mip-thankyou-card {
        flex-direction: column;
        text-align: center;
    }

    .mip-thankyou-card .mip-download-btn {
        width: 100%;
        justify-content: center;
    }

    .mip-invoice-download-section {
        padding: 16px;
    }
}
