/* ========================================
   SugarDaddyMeetCanada — Main Stylesheet
   Common styles extracted from inline CSS
   ======================================== */

/* === Hide Scrollbar === */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* === Lucide Icons (data-icon) === */
[data-icon] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: currentColor;
}

/* === Hover Utility Classes (replaces inline onmouseover/onmouseout) === */
.hover-text-red:hover { color: #C41E3A !important; }
.hover-btn-gradient:hover { opacity: 0.9 !important; transform: translateY(-1px) !important; }
.hover-btn-outline:hover { border-color: #C41E3A !important; color: #C41E3A !important; }
.hover-btn-fill:hover { background: #C41E3A !important; color: #fff !important; }
/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #E8334E, #9B1B30);
    box-shadow: 0 4px 15px rgba(196,30,58,0.3);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196,30,58,0.5);
}
#back-to-top:active {
    transform: translateY(-1px);
}
/* === Back to Top Button - Mobile Responsive Fix === */
@media (max-width: 640px) {
    #back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
    #back-to-top svg {
        width: 18px;
        height: 18px;
    }
}