/* ==========================================================
   TARA FASHION — FOOTER STYLES
   Uses theme variables only
   ========================================================== */

.tf-footer {
    background: var(--color-bg-soft);
    padding-top: 50px;
    border-top: 1px solid var(--color-border);
    margin-top: 60px;
    font-family: var(--font-body);
}

/* --------------------------
   FOOTER TOP SECTION
--------------------------- */
.tf-footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.tf-footer-logo {
    height: 60px;
    margin-bottom: 18px;
}

.tf-footer-text {
    font-size: 15px;
    color: var(--color-text-soft);
    line-height: 1.7;
}

/* --------------------------
   QUICK LINKS
--------------------------- */
.tf-footer-links h4,
.tf-footer-social h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.tf-footer-links a,
.tf-footer-social a {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--color-text-soft);
    text-decoration: none;
    transition: var(--transition-normal);
}

.tf-footer-links a:hover,
.tf-footer-social a:hover {
    color: var(--color-primary-strong);
}

/* --------------------------
   FOOTER BOTTOM
--------------------------- */
.tf-footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 18px 20px;
    text-align: center;
    background: var(--color-bg);
}

.tf-footer-bottom p {
    margin: 6px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* --------------------------
   CREDIT SECTION
--------------------------- */
.tf-footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tf-ows-logo {
    height: 60px;
    object-fit: contain;
    margin-left: 6px;
    background: transparent;
}

/* --------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 900px) {
    .tf-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .tf-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tf-footer-links a,
    .tf-footer-social a {
        text-align: center;
    }

    .tf-footer-text {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }

    .tf-footer-logo {
        margin: 0 auto 20px;
    }
}

/* ==========================================================
   ADD-ON: FOOTER POLICIES SECTION
   (Append this at the BOTTOM of footer.css)
   ========================================================== */

/* Update grid to accommodate Policies column */
.tf-footer-container {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

/* --------------------------
   POLICIES SECTION
--------------------------- */
.tf-footer-policies h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.tf-footer-policies a {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--color-text-soft);
    text-decoration: none;
    transition: var(--transition-normal);
}

.tf-footer-policies a:hover {
    color: var(--color-primary-strong);
}

/* --------------------------
   RESPONSIVE ADJUSTMENTS
--------------------------- */
@media (max-width: 900px) {
    .tf-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .tf-footer-policies a {
        text-align: center;
    }
}

