/**
 * AMA Customizer Frontend Styles
 */

/* Custom WooCommerce product modifications */
.ama-customizer-product-container {
    margin-bottom: 20px;
}

.ama-customizer-product-info {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.ama-customizer-product-info h3 {
    margin-top: 0;
    font-size: 18px;
}

/* Cart modifications */
.ama-customizer-cart-notice {
    background: #f0f8ff;
    border: 1px solid #b0d4e8;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

/* Custom buttons */
.ama-customizer-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ama-customizer-button:hover,
.ama-customizer-button:focus {
    background: #0052a3;
    color: #fff;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .ama-customizer-product-info {
        padding: 10px;
    }
} 