/**
 * Footer Styles
 * 
 * @package Webshop
 * @version 1.0.0
 */

/* Footer Container */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.logo-letter {
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

.footer-logo-text {
    display: flex;
    align-items: center;
}

.site-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

/* Footer Menu */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
}

.footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu-list li {
    margin: 0;
}

.footer-menu-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s ease;
}

.footer-menu-list a:hover {
    color: #8B5CF6;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.contact-value {
    font-size: 14px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

/* Payment Methods */
.footer-payment-methods {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.payment-methods-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment-method {
    display: flex;
    align-items: center;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

/* Mastercard Logo */
.mastercard-circles {
    position: relative;
    width: 30px;
    height: 20px;
}

.circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.circle-red {
    background-color: #EB001B;
    left: 0;
    z-index: 1;
}

.circle-orange {
    background-color: #F79E1B;
    right: 0;
    z-index: 2;
}

/* Visa Logo */
.visa-text {
    font-size: 14px;
    font-weight: bold;
    color: #1A1F71;
    font-family: 'Arial', sans-serif;
}

/* Copyright */
.footer-copyright {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.copyright-content p {
    margin: 0;
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .footer-menu-list {
        align-items: center;
    }
    
    .footer-contact-details {
        align-items: center;
    }
    
    .contact-item {
        align-items: center;
    }
    
    .payment-methods-container {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .copyright-content {
        padding: 0 15px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .site-footer {
        padding: 30px 0 0;
    }
}
