.footer-section {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 20px;
    padding: 0 20px;
}

.footer-container {
    background: #1e293b;
    border-radius: 12px;
    padding: 40px;
    color: white;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo-img {
    height: 30px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-column i {
    margin-right: 8px;
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    gap: 30px;
    flex-wrap: wrap;
}

.ozow-logo-container {
    display: flex;
    align-items: center;
}

.ozow-logo-wrapper {
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ozow-logo-wrapper:hover {
    transform: translateY(-2px);
}

.ozow-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

.copyright {
    color: #94a3b8;
    font-size: 14px;
    margin-left: auto;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 44px;
    bottom: 130px;
    z-index: 999;
    background-color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.scroll-top i {
    font-size: 24px;
}

.scroll-top:hover {
    background-color: #003258;
    transform: translateY(-3px);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    right: 44px;
    bottom: 50px;
    z-index: 998;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn .icon {
    width: 28px;
    height: 28px;
}

.wishlist-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-logo p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 30px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        text-align: center;
    }
    .ozow-logo-container {
        order: 1;
    }
    .copyright {
        order: 2;
        margin-left: 0;
    }
    .footer-section {
        margin: 60px auto 90px;
    }
    .scroll-top {
        right: 20px;
        bottom: 170px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-btn {
        right: 20px;
        bottom: 90px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-btn .icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .ozow-logo-wrapper {
        padding: 5px 12px;
    }
    .ozow-logo {
        height: 40px;
    }
}