/* Comprehensive Footer Styles */
.comprehensive-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Contact Info Section */
.contact-info .contact-item {
    margin-bottom: 15px;
}

.contact-info .contact-item strong {
    color: #666;
    font-size: 12px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info span {
    color: #666;
    font-size: 12px;
}

.location-links {
    margin: 15px 0;
}

.location-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
}

.social-section p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

/* Products & Brands Section */
.products-brands .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.products-brands ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-brands li {
    margin-bottom: 8px;
}

.products-brands a {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
}

.products-brands a:hover {
    text-decoration: underline;
}

/* Account & Info Section */
.account-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-info li {
    margin-bottom: 8px;
}

.account-info a {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
}

.account-info a:hover {
    text-decoration: underline;
}

/* App Download Section */
.app-download h3 {
    color: #d63384;
    font-weight: bold;
}

.app-subtitle {
    color: #d63384;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn img {
    width: 120px;
    height: auto;
    border-radius: 4px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.copyright p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 20px 15px;
    }

    .products-brands .products-grid {
        grid-template-columns: 1fr;
    }
}