/* Flipkart Footer Styles */
.flipkart-footer {
    background-color: #172337;
    color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    padding-top: 40px;
    margin-top: 0;
    /* Attach directly to SEO footer */
}

.footer-wrapper {
    max-width: 1248px;
    /* Standard Flipkart container */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 25px;
    /* Spacing before bottom border */
}

.footer-links-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.footer-col-header {
    color: #878787;
    font-size: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 2;
    /* Spacing between links */
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-divider-vertical {
    width: 1px;
    background-color: #454d5e;
    margin: 0 25px;
    /* Height will be handled by flex stretch */
}

.footer-address-column {
    flex: 1.5;
    /* Slightly wider */
    min-width: 250px;
}

.address-content {
    font-size: 12px;
    line-height: 1.5;
    white-space: pre-line;
    /* Handle line breaks */
}

.address-content p {
    margin: 0 0 10px 0;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    /* Icon size */
    margin-right: 15px;
    text-decoration: none;
}

/* Footer Bottom Section (Yellow bar icons + copyright) */
.footer-bottom {
    border-top: 1px solid #454d5e;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.bottom-icon {
    color: #f7a200;
    /* Flipkart golden yellow */
    margin-right: 8px;
    font-size: 13px;
}

.copyright-text {
    color: #fff;
    font-size: 12px;
}

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

/* Hide Footer on Mobile */
@media (max-width: 768px) {
    .flipkart-footer {
        display: none !important;
    }
}