/* =========================================
   TRIBAL WOMEN CRAFTS FOOTER
========================================= */

.twc-footer{
    background:#4E2C1E;
    color:#fff;
    margin-top:80px;
}

/* MODIFIED: Footer now uses a balanced four-column grid with safe min-width handling. */
.twc-footer-container{

    max-width:1400px;
    width:92%;
    margin:0 auto;

    padding:70px 0;

    display:grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap:40px 32px;

    align-items:flex-start;

}

.twc-footer-brand,
.twc-footer-column,
.twc-footer-newsletter{
    min-width:0;
}

.twc-footer h3,
.twc-footer h4{

    margin:0 0 20px;

    color:#fff;

}

.twc-footer h3{

    font-size:24px;

}

.twc-footer h4{

    font-size:20px;

}

.twc-footer p{

    color:#E8D9C8;

    line-height:1.7;

    margin-bottom:20px;

}

/* ==========================
Brand
========================== */

.twc-footer-brand img{

    width:80px;

    display:block;

    margin-bottom:18px;

}

.twc-footer-brand .twc-social{
    margin-top:24px;
}

.twc-divider{

    width:180px;

    height:2px;

    background:#C17A3C;

    margin:12px 0;

}

.twc-footer-brand ul,
.twc-footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.twc-footer-brand li,
.twc-footer-column li{

    margin-bottom:12px;

}

.twc-footer-column a{

    color:#E8D9C8;

    text-decoration:none;

    transition:.3s;

}

.twc-footer-column a:hover{

    color:#D8B27D;

    padding-left:6px;

}
/* =========================================
   NEWSLETTER
========================================= */

.twc-footer-newsletter ul{
    list-style:none;
    padding:0;
    margin:20px 0 0;
}

.twc-footer-newsletter li{
    margin-bottom:12px;
}

.twc-footer-newsletter a{
    color:#E8D9C8;
    text-decoration:none;
    transition:.3s;
}

.twc-footer-newsletter a:hover{
    color:#D8B27D;
}

.twc-newsletter-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.twc-newsletter-form input{
    width:100%;
    height:46px;
    border:none;
    border-radius:30px;
    padding:0 18px;
    font-size:15px;
    outline:none;
}

.twc-newsletter-form button{
    height:46px;
    border:none;
    border-radius:30px;
    background:#C17A3C;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.twc-newsletter-form button:hover{
    background:#A86530;
}

/* =========================================
   SOCIAL
========================================= */

.twc-social{
    display:flex;
    gap:14px;
    margin-top:22px;
    flex-wrap:wrap;
}

.twc-social a{
    color:#E8D9C8;
    text-decoration:none;
    transition:.3s;
}

.twc-social a:hover{
    color:#D8B27D;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.twc-footer-bottom{
    background:#3A2116;
    border-top:1px solid rgba(255,255,255,.08);
}

.twc-footer-bottom-inner{

    max-width:1400px;
    width:92%;
    margin:auto;

    padding:20px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;

}

.twc-footer-bottom p{
    margin:0;
    color:#ddd;
    font-size:14px;
}