/* ==========================================================
   = FOOTER STYLES =
   ========================================================== */

/* --- Main Footer Styling --- */
.main-footer {
    background-color: #000;
    color: #fff;
    padding-top: 60px;
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif; /* Ya aapki theme ka custom font */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

/* --- Footer Links Grid --- */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex-grow: 1;
}

.footer-column {
    min-width: 150px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* --- Action Buttons --- */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    margin-left: 20px;
}

.footer-actions button {
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.footer-actions button:hover {
    opacity: 0.8;
}

.btn-related {
    background-color: #e91e63;
    color: #fff;
}

.btn-buynow {
    background-color: #fff;
    color: #000;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background-color: #000;
    border-top: 1px solid #222;
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.follow-us {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: #666;
}

.follow-us span {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.follow-us a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.follow-us a:hover {
    color: #fff;
}

/* ==========================================================
   = RESPONSIVE MEDIA QUERIES (Mobile View) =
   ========================================================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-actions {
        margin-left: 0;
        align-items: center;
        width: 100%;
    }

    .footer-actions button {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   TABLET RESPONSIVE (768px - 991px)
   ========================================================== */
@media (min-width:768px) and (max-width:991px){

    .footer-container{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        gap:30px;
        flex-wrap:nowrap;
    }

    .footer-links-grid{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
        flex:1;
    }

    .footer-actions{
        margin-left:20px;
        align-items:flex-end;
        flex-shrink:0;
    }

    .footer-actions button{
        min-width:170px;
        justify-content:center;
    }

    .footer-bottom-container{
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:20px;
    }

    .follow-us{
        justify-content:flex-end;
    }
}