/**
 * Footer Styles
 */

.site-footer {
    margin-top: auto;
}

/* Newsletter Section */
.site-footer .container {
    box-shadow: none;
    background-color:rgba(255, 243, 247, 1);
    padding: 100px 60px ;
}
.newsletter-section{
    margin-bottom: 100px;
}
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.newsletter-text,
.footer-brand {
    max-width: 350px;
    width: 100%;
}

.newsletter-text p {
    font-size: var(--font-size-md);
    color: var(--color-text);
    margin: 0;
}

.newsletter-form-wrapper {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.newsletter-input {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #000;
    font-size: var(--font-size-sm);
    min-width: 150px;
    transition: border-color var(--transition-fast);
    background: #fff;
    color: #000;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-success {
    display: none;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: #22c55e;
    color: white;
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    text-align: center;
}

/* Main Footer */
.footer-main {

}

.footer-content {
    display: grid;
    grid-template-columns: 350px 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo h3 {
    font-family: var(--h1-font-family);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0 0 var(--spacing-xs) 0;
}

.footer-logo p {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin: 0;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links,
.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a,
.footer-legal a {
    color: var(--color-text);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-legal a {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
}

/* Payment Methods */
.footer-payment {
    display: flex;
    align-items: center;
}

.payment-placeholder {
    opacity: 0.6;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 32px;
    height: 32px;
    transition: all var(--transition-fast);
}

.social-link img {
    width: 100%;
    height: 100%;
}

/* White filter for non-SVG images */
/* .social-link img:not([src*=".svg"]) {
    filter: brightness(0) invert(1);
} */

/* SVG styling */
.social-link img[src*=".svg"] {
    fill: white;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.added__footer__menu a{
    font-size: 12px;
    text-decoration: underline;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-nav {
        order: -1;
    }
    
    .footer-links,
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: var(--spacing-lg) 0;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .newsletter-form-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .footer-main {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-links,
    .footer-legal {
        gap: var(--spacing-sm);
    }
    
    .footer-links a,
    .footer-legal a {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .newsletter-text p {
        font-size: var(--font-size-sm);
    }
    
    .newsletter-input {
        min-width: auto;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .newsletter-btn {
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .footer-links,
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
        .site-footer .container{
        padding: 80px 20px;
    }
    .newsletter-section{
        padding: 0;
    }
    .newsletter-text{
        text-align: left;
    }
    .newsletter-form-wrapper{
        width: 100%;
        max-width: 100%;
    }
    .newsletter-text, .footer-brand{
        max-width: 100%;
    }
    .newsletter-form{
        width: 100%;
    }
    .newsletter-section{
        margin-bottom: 0;
    }
    .footer-links, .footer-legal{
        flex-direction: row;
    }
    .footer-brand{
        justify-content: center;
    }
    .site-logo{
        justify-content: center;
    }
    
}
