/* ==================== Nobo Eshop Footer ==================== */
.nobo-footer {
    background: #0d1117;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    padding: 60px 8% 30px;
}

.nobo-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* --- Logo / About --- */
.footer-logo img {
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    font-size: 22px;
    margin: 5px 0;
    color: #fff;
}

.footer-logo p {
    font-size: 14px;
    color: #bcbcbc;
    line-height: 1.6;
}

.footer-contact {
    margin: 20px 0;
}

.footer-contact p {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.footer-contact img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-btn {
    display: inline-block;
    background: #00aaff;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: background 0.3s;
}

.footer-btn:hover {
    background: #008ecc;
}

/* --- Links --- */
.footer-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-links h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #00aaff;
    position: absolute;
    bottom: -5px;
    left: 0;
}

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

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #00aaff;
}

/* --- Bottom --- */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-policies a {
    color: #bbbbbb;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: #00aaff;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
}

.footer-copy p {
    font-size: 13px;
    color: #999;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-developer img {
    width: 28px;
    height: 28px;
}

.footer-developer span {
    color: #ccc;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-copy {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-container {
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
