/* Simple Footer Styles for TwinLove69 */

/* Main Footer */
.main-footer {
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    color: #CCCCCC;
    margin-top: auto;
    border-top: 2px solid rgba(255, 108, 0, 0.3);
}

/* Footer Content */
.footer-content {
    padding: 20px 0;
}

/* Footer Logo */
.footer-logo .logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 1.75rem;
    color: #FF6C00;
    text-shadow: 0 0 15px rgba(255, 108, 0, 0.5);
}

.footer-logo .logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.footer-logo .logo-main {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.footer-logo .logo-sub {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FF6C00;
}

.footer-tagline {
    margin-top: 8px;
    color: #999;
    font-size: 0.875rem;
}

/* Social Media */
.footer-social .social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 108, 0, 0.1);
    border: 2px solid rgba(255, 108, 0, 0.3);
    border-radius: 50%;
    color: #FF6C00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social .social-link:hover {
    background: #FF6C00;
    border-color: #FF6C00;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 108, 0, 0.4);
}

/* Payment Methods Simple */
.payment-methods-simple small {
    color: #999;
    font-size: 0.75rem;
}

.payment-badge {
    background: rgba(255, 108, 0, 0.1);
    border: 1px solid rgba(255, 108, 0, 0.3);
    color: #FF8C00;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.payment-badge:hover {
    background: rgba(255, 108, 0, 0.2);
    border-color: #FF6C00;
}

.payment-badge i {
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 108, 0, 0.2);
}

.footer-bottom .copyright {
    color: #999;
    font-size: 0.875rem;
}

.footer-bottom .copyright strong {
    color: #FF6C00;
}

/* Footer Links Simple */
.footer-links-simple {
    font-size: 0.875rem;
}

.footer-links-simple a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links-simple a:hover {
    color: #FF6C00;
}

.footer-links-simple .separator {
    color: rgba(255, 108, 0, 0.5);
    margin: 0 8px;
}

.footer-links-simple .age-badge {
    color: #FF6C00;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6C00 0%, #FF8C00 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 108, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 108, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        padding: 30px 0;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-social {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .footer-logo .logo-icon {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-main {
        font-size: 1.1rem;
    }
    
    .footer-logo .logo-sub {
        font-size: 1.3rem;
    }
    
    .footer-social .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .payment-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom .copyright,
    .footer-links-simple {
        font-size: 0.75rem;
    }
    
    .footer-links-simple .separator {
        margin: 0 5px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .main-footer,
    .back-to-top {
        display: none;
    }
}