/* =========================================
   Frontend Shortcodes CSS
   ========================================= */

/* Custom Price Shortcode */
.rk-custom-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
    font-family: inherit;
}
.rk-cp-sale {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: #111 !important;
    line-height: 1;
}
.rk-cp-regular {
    font-size: 16px !important;
    color: #a1a1a1 !important;
    text-decoration: line-through !important;
    font-weight: 600 !important;
    line-height: 1;
    margin-left: 2px;
}
.rk-cp-discount {
    font-size: 16px !important;
    color: #2e7d32 !important;
    font-weight: 800 !important;
    line-height: 1;
    margin-left: 4px;
}

/* Colorful Product Tags */
.rk-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}
.rk-tag-pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: inline-block;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    white-space: nowrap;
}
@media(max-width: 480px) {
    .rk-product-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .rk-tag-pill {
        padding: 5px 12px;
        font-size: 11px;
    }
}
