/**
 * Simple Product Configurator Button Styles
 * Clean, modern button for Planika product pages
 * 
 * @package PlanikaSync
 */

.planika-simple-configurator-cta {
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.planika-simple-configurator-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    border-radius: 12px 12px 0 0;
}

.planika-simple-configurator-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #ddd;
}

.planika-cta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.planika-cta-icon-small {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.planika-cta-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.planika-configurator-hint {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #666666;
    text-align: left;
    font-weight: 400;
    line-height: 1.5;
    max-width: none;
}

.planika-simple-configurator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.planika-simple-configurator-btn:hover {
    background: #333333;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.planika-simple-configurator-btn:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.planika-btn-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.planika-simple-configurator-btn:hover .planika-btn-icon {
    transform: translateX(3px);
}

/* Phone Alternative */
.planika-phone-alternative {
    margin-top: 20px;
    text-align: center;
}

.planika-divider-text {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 400;
    text-transform: lowercase;
}

.planika-phone-info {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.planika-phone-info svg {
    color: #666;
    flex-shrink: 0;
}

.planika-phone-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.planika-phone-link:hover {
    color: #333;
    border-bottom-color: #333;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 640px) {
    .planika-simple-configurator-cta {
        margin: 20px 0;
        padding: 20px 18px;
    }
    
    .planika-configurator-hint {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .planika-simple-configurator-btn {
        padding: 18px 24px;
        font-size: 15px;
    }
    
    .planika-phone-alternative {
        margin-top: 16px;
    }
    
    .planika-phone-info {
        font-size: 13px;
    }
}

/* Print styles */
@media print {
    .planika-simple-configurator-cta {
        display: none;
    }
} 