/* Mobile Footer Styles */
.footer {
    background-color: #000;
    padding: 60px 0 80px 0;
      background-image: url('../../../../assets/img/product/footer/ellipse-325.svg');
        background-repeat: no-repeat;
        background-position: center bottom -400px;
        background-size: 2377px 1628px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

/* C1 - Logo, Description, Link */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-info {
    gap: 16px;
}

.footer-logo-img {
    width: 147.873px;
    height: 39.779px;
    fill: var(--sy-fu-neutral-light, #F7F7F7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.30);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.5px;
    margin: 0;
}

.footer-link {
    display: flex;
    padding: 7px 0;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    color: #3EE8B5;
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
}

.footer-link:hover {
    opacity: 0.8;
}

/* C2 - Social Media */
.footer-social {
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    width: 62px;
    height: 62px;
    justify-content: center;
    align-items: center;
    border-radius: 1476.191px;
    border: 2.952px solid #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #3EE8B5;
    transform: scale(1.05);
}

.social-icon {
    width: auto;
    height: auto;
    max-width: 30px;
    max-height: 30px;
}

/* C3 - Download Buttons */
.footer-buttons {
    gap: 24px;
}

.footer-btn {
    display: flex;
    padding: 1rem 1.75rem; /* 16px 28px */
    justify-content: center;
    align-items: center;
    gap: 0.7rem; /* 11.2px */
    width: 100%; /* Full width on mobile */
    background: transparent;
    border: 1px solid #FFF;
    border-radius: 2.625rem; /* 42px */
    color: #FFF;
    font-family: Barlow;
    font-size: 1.25rem; /* 20px */
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 30px - 150% */
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* V2 - Separator Line */
.footer-separator {
    width: calc(100% + 32px);
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 32px -16px;
}

/* V3 - Copyright and Privacy */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.footer-copyright,
.footer-privacy {
    color: var(--10, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
}

.footer-brand-link,
.footer-privacy-link {
    color: var(--10, #FFF);
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer-brand-link:hover,
.footer-privacy-link:hover {
    opacity: 0.8;
}