/**
 * LALALO CustomPreview - Styles
 * 
 * @category   LALALO
 * @package    LALALO_CustomPreview
 * @author     LALALO Team
 */

/* Preview Wrapper */
.lcp-preview-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

/* Preview Canvas */
#lcp-preview-canvas {
    margin-bottom: 15px;
}

/* Preview Background Container */
.lcp-preview-background {
    position: relative;
    width: 100%;
    max-width: 370px;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    overflow: hidden;
}

/* Preview Text Styles */
.lcp-preview-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 120px;
    line-height: 1.2;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

/* Text Row 1 - Default centered */
#lcp-preview-text-row1 {
    top: 55%;
    transform: translate(-50%, -50%);
}

/* Text Row 2 - Lower position */
#lcp-preview-text-row2 {
    top: 80%;
    transform: translateX(-50%);
}

/* Preview Motive Image */
.lcp-preview-motive {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    max-height: 150px;
    object-fit: contain;
    pointer-events: none;
}

/* Info Text */
.lcp-preview-info {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lcp-preview-background {
        max-width: 100%;
    }
    
    .lcp-preview-text {
        font-size: 50px;
    }
    
    .lcp-preview-motive {
        max-width: 250px;
        max-height: 130px;
    }
}

/* Variant Positioning */

/* When only text (no motive, no row2) - centered */
.lcp-variant-text-only #lcp-preview-text-row1 {
    top: 55%;
    font-size: 120px;
}

/* When text + motive */
.lcp-variant-text-motive #lcp-preview-text-row1 {
    top: 20%;
    font-size: 70px;
}

.lcp-variant-text-motive .lcp-preview-motive {
    top: 50%;
}

/* When two text rows */
.lcp-variant-two-rows #lcp-preview-text-row1 {
    top: 20%;
    font-size: 70px;
}

.lcp-variant-two-rows #lcp-preview-text-row2 {
    top: 80%;
    font-size: 70px;
}

/* Loading State */
.lcp-loading {
    opacity: 0.6;
    pointer-events: none;
}

.lcp-loading::after {
    content: 'Lädt...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}
