/* ===== Footer Styles ===== */

.site-footer {
    background: #1a1a1a;
    color: #fff;
    position: relative;
}

.footer-main {
    padding: 4rem 0 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        padding: 5rem 0 3rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-col {
    gap: 1.25rem;
}

/* Footer Logo */
.footer-logo {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Footer Description */
.footer-description {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 380px;
}

/* App Downloads */
.footer-app-downloads {
    margin-top: 0.5rem;
}

.footer-download-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-store-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.store-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.store-btn img {
    height: 40px;
    width: auto;
    /* border-radius: 8px; */
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #e0523c;
    color: #fff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Order Button */
.footer-order-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
    font-weight: 600;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
}

.footer-order-btn:hover {
    background: #e0523c;
    color: #fff;
    border-color: #e0523c;
    transform: translateY(-2px);
}

/* Footer Headings */
.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.25rem;
}

.footer-heading-mt {
    margin-top: 1.5rem;
}

/* Footer Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links-list li {
    line-height: 1;
}

.footer-links-list a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer-links-list a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Contact Items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #e0523c;
}

.contact-icon-box svg {
    width: 16px;
    height: 16px;
}

.contact-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #e0523c;
}

.footer-contact-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* WhatsApp QR */
.footer-qr {
    margin-top: 0.5rem;
}

.footer-qr a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.footer-qr a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.qr-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
}

.qr-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.copyright-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.copyright-link:hover {
    color: #e0523c;
}

.footer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* Footer Newsletter Animation */
.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: #fff;
    font-family: inherit;
    font-size: 0.8125rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #e0523c;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 0.625rem 1.25rem;
    background: #e0523c;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #d43d2a;
    transform: translateY(-1px);
}

/* Footer Responsive */
@media (max-width: 639px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand-col {
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-order-btn {
        align-self: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-links-list {
        align-items: center;
    }
    
    .footer-contact-items {
        align-items: center;
    }
    
    .footer-qr a {
        justify-content: center;
    }
}