/* Tiệm Nhà Bên Storefront Footer Style */
.tnb-storefront-footer {
    background: #fcf1db; /* Warm cream background */
    border-top: 1px solid rgba(107, 71, 51, 0.12);
    padding: 60px 0 0 0;
    font-family: 'Outfit', sans-serif;
    color: #3d3530;
    margin-top: 40px;
}

.tnb-storefront-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* On large desktops, make the newsletter columns wider */
@media (min-width: 1200px) {
    .tnb-storefront-footer__grid {
        grid-template-columns: 1.2fr 1.2fr 1.2fr 1.5fr 2fr;
    }
}

.tnb-storefront-footer__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tnb-storefront-footer__title {
    font-size: 16px;
    font-weight: 700;
    color: #3d3530;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.tnb-storefront-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #6b4733;
    border-radius: 2px;
}

.tnb-storefront-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tnb-storefront-footer__links a {
    color: #6b4733;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.tnb-storefront-footer__links a:hover {
    color: #3d3530;
    transform: translateX(4px);
}

.tnb-storefront-footer__info-item {
    font-size: 14px;
    color: #6b4733;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.tnb-storefront-footer__info-item strong {
    color: #3d3530;
    font-weight: 700;
}

.tnb-storefront-footer__newsletter-desc {
    font-size: 14px;
    color: #6b4733;
    line-height: 1.5;
    margin: 0;
}

.tnb-storefront-footer__newsletter-form {
    display: flex;
    border: 1px solid rgba(107, 71, 51, 0.24);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(107, 71, 51, 0.04);
    transition: border-color 0.2s ease;
}

.tnb-storefront-footer__newsletter-form:focus-within {
    border-color: #6b4733;
}

.tnb-storefront-footer__newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 18px;
    font-size: 14px;
    color: #3d3530;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.tnb-storefront-footer__newsletter-input::placeholder {
    color: rgba(107, 71, 51, 0.48);
    font-style: italic;
}

.tnb-storefront-footer__newsletter-btn {
    background: #6b4733;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: 'Outfit', sans-serif;
}

.tnb-storefront-footer__newsletter-btn:hover {
    background: #3d3530;
}

.tnb-storefront-footer__newsletter-btn:active {
    transform: scale(0.97);
}

/* Bottom copyright bar */
.tnb-storefront-footer__copyright-bar {
    background: #3d3530;
    color: rgba(252, 241, 219, 0.75);
    text-align: center;
    padding: 20px 24px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tnb-storefront-footer__copyright-bar p {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .tnb-storefront-footer {
        padding: 40px 0 0 0;
    }
    .tnb-storefront-footer__grid {
        gap: 30px;
        margin-bottom: 30px;
    }
    .tnb-storefront-footer__copyright-bar {
        margin-top: 30px;
        padding: 15px 16px;
    }
}

/* Load More Button Styling */
.tnb-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 40px;
    width: 100%;
}
.tnb-load-more-btn {
    background: #6b4733;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 42px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 12px rgba(107, 71, 51, 0.15);
}
.tnb-load-more-btn:hover {
    background: #3d3530;
    box-shadow: 0 6px 16px rgba(107, 71, 51, 0.25);
}
.tnb-load-more-btn:active {
    transform: scale(0.98);
}
