/**
 * Page Details Section Styles
 * Styles for the page details section that appears after product cards
 */

/* ========================================
   PAGE DETAILS SECTION (After Product Cards)
   ======================================== */

.esim-page-details {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    margin-top: 48px;
    padding: 40px 0;
}

.esim-page-details-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.esim-page-details h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
    text-align: center;
}

.esim-details-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.esim-details-text p {
    margin-bottom: 16px;
}

.esim-details-text p:last-child {
    margin-bottom: 0;
}

.esim-details-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin: 32px 0 16px 0;
}

.esim-details-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 24px 0 12px 0;
}

.esim-details-text ul,
.esim-details-text ol {
    margin: 16px 0;
    padding-left: 24px;
}

.esim-details-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.esim-details-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* Mobile styles for page details */
@media (max-width: 767px) {
    .esim-page-details {
        margin-top: 32px;
        padding: 24px 0;
    }
    
    .esim-page-details-content {
        padding: 0 16px;
    }
    
    .esim-page-details h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .esim-details-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .esim-details-text h3 {
        font-size: 20px;
        margin: 24px 0 12px 0;
    }
    
    .esim-details-text h4 {
        font-size: 17px;
        margin: 20px 0 10px 0;
    }
    
    .esim-details-text ul,
    .esim-details-text ol {
        padding-left: 20px;
    }
}

/* Debug styles for admin */
.esim-admin-debug {
    background: lightgreen;
    border: 2px solid green;
    padding: 15px;
    margin: 20px 0;
    color: black;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
}