/*
 * my-own-style.css — Your custom front-end styles
 *
 * This file is loaded on every public page of your WordPress site.
 * Add your CSS rules below.
 *
 * To add MORE CSS files:
 *   1. Create your new file inside /assets/css/   (e.g. product-page.css)
 *   2. Open /includes/assets.php
 *   3. Copy the wp_enqueue_style() example block and update the handle + filename.
 */


/* ── Example: Custom button ─────────────────────────────────────── */
.mcc-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.mcc-btn:hover {
    background-color: #005f8d;
    color: #fff;
}


/* ── Add your own styles below ───────────────────────────────────── */
