/**
 * Lumise Designer - Frontend Styles
 */

.lumise-customize-button-wrapper {
    margin: 20px 0;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 5px;
    text-align: center;
}

.lumise-customize-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lumise-customize-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.lumise-customize-btn .material-icons {
    font-size: 20px;
}

.lumise-customize-hint {
    margin: 10px 0 0;
    font-size: 13px;
    color: #666;
}

/* Designer Interface */
.lumise-designer-container {
    width: 100%;
    min-height: 600px;
}

.lumise-header {
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.lumise-header .product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lumise-header h2 {
    margin: 0;
    font-size: 20px;
}

#lumise-designer-app {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: #fff;
}

.lumise-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
}

.lumise-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .lumise-header .product-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .lumise-header h2 {
        font-size: 16px;
        text-align: center;
    }
}
