.fko-product-banner{
    background: #0b3d91; /* dark blue */
    color: #ffffff;
    padding: 12px 14px;
    margin: 10px 0;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}
.fko-product-banner a{
    color: inherit;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

/* Sticky top bar */
.fko-sticky-topbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0b3d91;
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    z-index: 99999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 15px;
}
.fko-sticky-topbar a{
    color: inherit;
    text-decoration: none;
}

/* Add body padding to avoid sticky bar covering top content on small screens */
body.admin-bar .fko-sticky-topbar {
    top: 32px; /* when WP admin bar present */
}

/* Modal styles */
.fko-modal-overlay{
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.fko-modal{
    background: #ffffff;
    margin: 6% auto;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.fko-modal-header{
    background: #0b3d91;
    color: #ffffff;
    padding: 14px 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.fko-modal-title{
    font-weight:700;
    font-size:16px;
}
.fko-modal-close{
    background:transparent;
    border:0;
    color:#fff;
    font-size:22px;
    line-height:1;
    cursor:pointer;
}
.fko-modal-body{
    padding:16px;
    color:#222;
    text-align:center;
}
.fko-modal-cta{
    display:inline-block;
    margin-top:10px;
    padding:10px 16px;
    border-radius:6px;
    text-decoration:none;
    background:#0b3d91;
    color:#fff;
    font-weight:600;
}

/* Responsiveness */
@media (max-width:480px){
    .fko-product-banner{ font-size:14px; padding:10px; }
    .fko-sticky-topbar{ font-size:14px; padding:9px; }
    .fko-modal{ margin: 20% 16px; width: calc(100% - 32px); }
}
