
/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Description: Child theme for Blocksy
Author: Your Name
Author URI: https://yourwebsite.com
Template: blocksy
Version: 1.0.0
Text Domain: blocksy-child
*/

/*
 Theme Name: Blocksy Child
 Description: Custom styles for WooCommerce & wpForo
*/

/* =========================================================
   1. WooCommerce – Price suffix with info tooltip
   ========================================================= */

/* Wrapper for price suffix */
.price-suffix-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
}

/* Text part of suffix */
.price-suffix-text {
    font-size: 0.75em;
    font-weight: 400;
    color: #6b7280;
}

/* Info icon */
.price-info-icon {
    position: relative;
    font-size: 0.72em;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
}

/* Tooltip bubble */
.price-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #504e4a;
    color: #ffffff;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

/* Hover / focus state */
.price-info-icon:hover .price-tooltip,
.price-info-icon:focus .price-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Product page only – smaller info icon (for /month etc.) */
.single-product .price-info-icon {
    font-size: 0.6em;
}


/* =========================================================
   2. Hide Google reCAPTCHA
   ========================================================= */

/* Hide Google reCAPTCHA badge (legal notice should be provided elsewhere) */
.grecaptcha-badge {
    visibility: hidden;
}
