/* ✅ Footer Main Container */
.frontend-footer {
    background: rgba(17, 24, 39, 0.85); /* Semi-transparent dark glass */
    backdrop-filter: blur(10px);
    color: var(--footer-text, #fff);
    padding: 25px 20px;
    font-size: 14px;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

/* ✅ Footer Content Wrapper */
.frontend-footer .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ✅ Left Side */
.footer-left p {
    margin: 0;
    font-size: 14px;
    color: var(--footer-text, #e5e5e5);
    opacity: 0.9;
}

/* ✅ Right Links */
.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right a {
    color: var(--footer-text, #fff);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: var(--primary-color, #6366f1);
    text-decoration: underline;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .frontend-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-right a {
        margin: 5px 10px;
        font-size: 13px;
    }
}