   Footer Widget Styles
   =================================== */

.rushby-footer {
    background-color: #09090b;
    border-top: 1px solid #27272a;
    color: #a1a1aa;
}

.rushby-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .rushby-footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .rushby-footer-container {
        padding: 0 2rem;
    }
}

/* Newsletter Section */
.rushby-footer-newsletter {
    border-bottom: 1px solid #27272a;
    background: linear-gradient(to right, #18181b, #09090b);
    padding: 3rem 0;
}

.rushby-footer-newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .rushby-footer-newsletter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.rushby-footer-newsletter-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.rushby-footer-newsletter-description {
    color: #a1a1aa;
}

.rushby-footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.rushby-footer-newsletter-input {
    flex: 1;
    background-color: #18181b;
    border: 1px solid #27272a;
    color: #ffffff;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.rushby-footer-newsletter-input::placeholder {
    color: #71717a;
}

.rushby-footer-newsletter-input:focus {
    outline: none;
    border-color: #d97706;
}

.rushby-footer-subscribe-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d97706;
    color: #000000;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.rushby-footer-subscribe-btn:hover {
    background-color: #b45309;
}

.rushby-footer-btn-icon {
    width: 1rem;
    height: 1rem;
}

.rushby-footer-newsletter-discount {
    font-size: 0.75rem;
    color: #71717a;
    margin-top: 0.5rem;
}

/* Main Footer */
.rushby-footer-main {
    padding: 3rem 0;
}

/* Brand & Description */
.rushby-footer-brand-section {
    text-align: center;
    margin-bottom: 2rem;
}

.rushby-footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.rushby-footer-logo-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.rushby-footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

.rushby-footer-brand-name {
    font-size: 1.125rem;
    font-weight: bold;
    color: #ffffff;
}

.rushby-footer-brand-tagline {
    font-size: 0.75rem;
    color: #71717a;
    margin-top: -0.25rem;
}

.rushby-footer-brand-description {
    font-size: 0.875rem;
    color: #a1a1aa;
    max-width: 32rem;
    margin: 0 auto;
}

/* Support Links */
.rushby-footer-support-section {
    margin-bottom: 2rem;
}

.rushby-footer-support-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rushby-footer-support-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .rushby-footer-support-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

.rushby-footer-link {
    color: #a1a1aa;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rushby-footer-link:hover {
    color: #ffffff;
}

/* Social Media */
.rushby-footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.rushby-footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    background-color: #18181b;
    border: 1px solid #27272a;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #a1a1aa;
}

.rushby-footer-social-link:hover {
    border-color: #d97706;
    background-color: #27272a;
}

.rushby-footer-social-link svg {
    width: 1rem;
    height: 1rem;
}

/* Trust Badges */
.rushby-footer-trust-badges {
    border-top: 1px solid #27272a;
    padding-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.rushby-footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #71717a;
}

.rushby-footer-trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.rushby-footer-trust-text {
    /* Inherits color from parent */
}

/* Bottom Bar */
.rushby-footer-bottom {
    border-top: 1px solid #27272a;
    padding-top: 2rem;
}

.rushby-footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .rushby-footer-bottom-content {
        flex-direction: row;
    }
}

.rushby-footer-copyright {
    font-size: 0.875rem;
    color: #71717a;
}

.rushby-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.rushby-footer-bottom-link {
    color: #71717a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rushby-footer-bottom-link:hover {
    color: #ffffff;
}

/* Headings and Text */
.rushby-footer-heading {
    color: #ffffff;
}

.rushby-footer-text {
    color: #a1a1aa;
}


/* ===================================
