/* start footer */
.footer {
    background-color: rgba(13, 9, 6, 1);
    color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer .holder {
    padding-inline: 100px;
    width: 100%;
}

.footer .footer-brand {
    max-width: 320px;
}

.footer .brand-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}

.footer .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-white);
}

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

.footer .footer-links ul li a {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .footer-links ul li span {
    color: var(--color-gray-400);
    font-size: 14px;
}

.footer .footer-links ul li a:hover {
    color: var(--color-white);
}

.footer .social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(51, 36, 24, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer .social-icons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer .social-icons a:hover {
    background-color: #4d3a2b;
    transform: translateY(-3px);
}

.payment-methods span {
    color: var(--color-gray-400);
}

.footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.2;
}

.footer .footer-bottom p {
    font-size: 13px;
    color: var(--color-white);
}

.footer .footer-bottom a {
    font-size: 13px;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer .footer-bottom a:hover {
    color: var(--color-white);
}

@media (max-width: 991px) {
    .footer .holder {
        padding-inline: 24px;
    }
}

@media (max-width: 767.98px) {
    .footer .holder {
        padding-inline: 16px;
    }

    .footer-middle {
        justify-content: center !important;
    }

    .social-icons, .payment-methods {
        justify-content: center !important;
    }
}
/* end footer */