/*--------------------------------------------------------------
# 1.0 HIDE CONSULTING TASKS FROM SHOP/SEARCH
--------------------------------------------------------------*/
.wr-title-wrapper:has(a[href*="consulting-session-with"]),
.wr-tabbitem__list:has(a[href*="consulting-session-with"]) {
    display: none !important;
}

/*--------------------------------------------------------------
# 2.0 POPUP OVERLAY & ANIMATIONS
--------------------------------------------------------------*/
.wr-popup-overlay {
    display:none; 
    position:fixed; 
    top:0; left:0; 
    width:100%; height:100%; 
    background:rgba(0,0,0,0.7); 
    z-index:999999; 
    justify-content:center; 
    align-items:center;
    backdrop-filter: blur(4px);
}

@keyframes wr-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.wr-btn-disabled { opacity: 0.7; pointer-events: none; cursor: not-allowed; }

/*--------------------------------------------------------------
# 3.0 MODAL CONTENT & TYPOGRAPHY
--------------------------------------------------------------*/
.wr-popup-content, .wr-chk-main-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: black;
}

.wr-chk-main-container:hover {
    box-shadow: 0 0 30px 10px rgba(255,255,255,0.2);
    transform: scale(1.01);
}

.wr-popup-icon {
    width: 60px; height: 60px;
    border: 3px solid #f39c12;
    color: #f39c12;
    border-radius: 50%;
    font-size: 30px; line-height: 54px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.wr-chk-title { font-size: 24px !important; font-weight: 700 !important; color: #2d3436 !important; margin-bottom: 10px !important; }
.wr-chk-subtitle { color: #636e72 !important; font-size: 15px !important; line-height: 1.6 !important; margin-bottom: 25px !important; }

/*--------------------------------------------------------------
# 4.0 ENGAGEMENT DETAILS CARD
--------------------------------------------------------------*/
.wr-chk-details-card {
    background: #f8f9fa; border: 1px solid #edf2f7; border-radius: 10px;
    padding: 20px; margin-bottom: 30px; text-align: left;
}
.wr-chk-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.wr-chk-label { font-size: 11px; text-transform: uppercase; color: #a0aec0; font-weight: 700; letter-spacing: 0.5px; }
.wr-chk-val { font-size: 14px; color: #2d3436; font-weight: 600; }
.wr-chk-price-tag { color: #27ae60 !important; font-size: 18px !important; }

/*--------------------------------------------------------------
# 5.0 BUTTONS & ACTIONS
--------------------------------------------------------------*/
.wr-popup-actions, .wr-chk-actions-gap { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.wr-btn-primary, .wr-btn-secondary, .wr-chk-confirm-btn, .wr-chk-cancel {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    flex: 1;
}

.wr-btn-primary, .wr-chk-confirm-btn { background: #2d3436 !important; color: #ffffff !important; }
.wr-btn-primary:hover, .wr-chk-confirm-btn:hover { background: #000000 !important; }
.wr-btn-secondary, .wr-chk-cancel { background: #f1f2f6 !important; color: #2d3436 !important; }
.wr-btn-secondary:hover, .wr-chk-cancel:hover { background: #dfe4ea !important; }
.wr-chk-form-reset { padding: 0 !important; border: none !important; background: transparent !important; }