/*
Theme Name: Oceanwpchild
Theme URI: https://oceanwp.org/
Description: A child theme for OceanWP.
Author: Your Name
Author URI: https://naturekraftagriglobal.com/
Template: oceanwp
Version: 1.0.0
Text Domain: oceanwpchild
*/

/* --- DYNAMIC FLAT BUTTON STYLES --- */

.custom-dynamic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 3px; /* Minimal radius for a modern flat look */
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
    margin: 5px;
}

/* Icon Spacing */
.custom-dynamic-btn i {
    margin-right: 12px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.custom-dynamic-btn:hover {
    filter: brightness(110%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-dynamic-btn:hover i {
    transform: translateX(-3px); /* Subtle icon nudge */
}

/* Ensure text is always white unless overridden */
.custom-dynamic-btn span, 
.custom-dynamic-btn i {
    color: #ffffff;
}