/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: poppines, sans-serif;
}

.footer-t2-ff-main {
    background-color: #f0f0f0; /* Deep Blue from Image */
    color: #000000;
    padding: 64px 20px 64px 20px;
    position: relative;
}

.footer-t2-ff-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section */
.footer-t2-ff-top {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 64px; */
}

.footer-t2-ff-logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-t2-ff-logo-img{
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.footer-t2-ff-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.9;
    position: relative;
}

.footer-t2-ff-icon::after {
    content: '';
    position: absolute;
    right: 0;
    width: 16px;
    height: 32px;
    background: #3538CD;
    border-radius: 0 16px 16px 0;
}

.footer-t2-ff-nav {
    display: flex;
    justify-content:  space-between;
    gap: 50px;
    width: 100%;
    max-width: 700px;
    margin-top: 50px;
}

.footer-t2-ff-nav-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.7;
}

.footer-t2-ff-nav-link {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}

.footer-t2-ff-nav-link:hover {
    opacity: 0.7;
}

.footer-t2-ff-badge {
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Bottom Section */
.footer-t2-ff-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-t2-ff-branding h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-t2-ff-branding p {
    opacity: 0.7;
    font-size: 16px;
}

.footer-t2-ff-copyright {
    opacity: 0.7;
    font-size: 14px;
}

/* Floating Action Buttons */

/* Main Wrapper Fix */
.footer-t2-ff-action {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; /* Buttons aur Copyright ke beech gap */
    z-index: 1000;
    width: auto;
}

/* Buttons Container Fix */
.footer-t2-ff-actions {
    position: relative; /* Fixed se hata kar relative kiya taki wrapper ke andar rahe */
    display: flex;
    gap: 12px;
    bottom: 0;
    left: 0;
    transform: none;
}

/* Minimalist Button Hover Animation */
.footer-t2-ff-btn {
    padding: 12px 24px;
    border-radius: 4px; /* Slightly rounded for professional look */
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-t2-ff-btn:hover {
    transform: translateY(-3px); /* Minimal lift */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.footer-t2-ff-btn-buy:hover {
    background: #f9fafb;
    border-color: #d0d5dd;
}

.footer-t2-ff-btn-dash:hover {
    background: #1d2939; /* Slightly lighter black */
    color: white;
}

/* Made with India Section Styling */
.artwise-mt-copyright {
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #475467;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    white-space: nowrap;
}

.copyright-img-mt {
    height: 14px; /* Icon size */
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.artwise-home-link {
    text-decoration: none;
    color: #101828;
    font-weight: 700;
    transition: color 0.2s;
}

.artwise-home-link:hover {
    color: #E65C23; /* Brand color on hover */
}

/* --- Responsive Adjustments --- */

@media (max-width: 768px) {
    .footer-t2-ff-action {
        bottom: 16px;
    }
    .footer-t2-ff-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .footer-t2-ff-action {
        width: 90%;
    }
    .footer-t2-ff-actions {
        width: 100%;
        flex-direction: column; /* Mobile par buttons stack honge */
        gap: 8px;
    }
    .footer-t2-ff-btn {
        width: 100%;
        text-align: center;
    }
    .artwise-mt-copyright {
        font-size: 11px;
    }
}

/* Container styling */
.footer-t2-ff-social-container {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 20px;
}

/* Link wrapper styling */
.footer-t2-ff-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08); /* Minimal semi-transparent bg */
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth bounce effect */
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* SVG Image styling */
.footer-t2-ff-social-img {
    width: 35px; /* Minimal size */
    height: 35px;
    transition: transform 0.3s ease, filter 0.3s ease;

    opacity: 0.8;
}

/* --- MINIMALIST HOVER ANIMATION --- */

.footer-t2-ff-social-link:hover {
    background: rgba(255, 255, 255, 1); /* White background on hover */
    transform: translateY(-5px); /* Chota sa upar uthne wala motion */
    border-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-t2-ff-social-link:hover .footer-t2-ff-social-img {
    transform: scale(1.1); /* Halka sa bada hoga */
    filter: brightness(1) invert(0); /* Icon wapas dark color ka ho jayega white bg par */
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 425px) {
    .footer-t2-ff-social-container {
        justify-content: center; /* Center icons on small screens */
        gap: 12px;
    }
    
    .footer-t2-ff-social-link {
        width: 45px;
        height: 45px;
    }
}

/* --- RESPONSIVE 768px --- */
@media (max-width: 768px) {
    .footer-t2-ff-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-t2-ff-nav {
        gap: 32px;
        justify-content: space-between;
    }
    .footer-t2-ff-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

/* --- RESPONSIVE 425px --- */
@media (max-width: 425px) {
    .footer-t2-ff-nav {
        flex-direction: column;
        gap: 32px;
    }
    .footer-t2-ff-main {
        padding: 48px 16px 140px 16px;
    }
    .footer-t2-ff-actions {
        width: 100%;
        padding: 0 16px;
        flex-direction: column;
    }
    .footer-t2-ff-btn {
        width: 100%;
    }
    .footer-t2-ff-branding h3 {
        font-size: 18px;
    }
}