/* Footer Styles */
.footer {
    background-color: #FBF3EE;
    color:#6E6D6D;
    padding: 40px 0 20px;
    font-size:var(--font-size-sm);
}

.footer h5 {
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, auto); /* 2 items per row */
    justify-content: center;                /* center whole grid */
    gap: 12px 120px;                          /* spacing between items */
    text-align: center;
}

.footer-title{
    color:#272525;
    font-size:var(--font-size-xl);
    font-weight: 500;
    margin:0 10.5rem 1rem 10.5rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #6E6D6D;
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: pointer;
}


.social-links a {
    transition: opacity var(--transition-fast);
    text-decoration: none;
}


.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

p{
    font-size: var(--font-size-sm);
}


.footer hr {
    margin: 1rem 0;
    color:272525;
}

.copyright-text {
    color:#272525;
    margin: 0;
}