/*
	Theme Name: Rehub child theme
	Theme URI: https://wpsoul.com
	Description: A Hybrid magazine/shop/review/news Wordpress Theme
	Author: Sizam
	Author URI: https://wpsoul.com
	Version: 9.4
	Template: rehub-theme
*/

/* =Theme customization starts here
-------------------------------------------------------------- */

/* Back to Top Button */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: #ff0000 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    display: block !important;
    font-size: 20px !important;
    line-height: 50px !important;
    text-align: center !important;
}

.back-to-top:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

/* Sticky Header */
header, #header, .header, .top_header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
    background: white !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
    padding: 10px 15px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    border-radius: 4px;
}

.affiliate-disclosure a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.affiliate-disclosure a:hover {
    text-decoration: underline;
}

/* Social Login Buttons */
.social-login-buttons {
    margin: 15px 0;
    text-align: center;
}

.social-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.facebook-login {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.facebook-login:hover {
    background: #166fe5;
    color: white;
}

.google-login {
    background: white;
    color: #333;
    border-color: #dadce0;
}

.google-login:hover {
    background: #f8f9fa;
    color: #333;
}

.social-login-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .social-login-btn {
        font-size: 13px;
        padding: 10px 14px;
    }
}

