/* ===== Trendine Footer Light Style ===== */
.footer-trendine {
    background: var(--color-cream);
    color: var(--color-black);
    font-family: var(--font-fa), sans-serif;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

/* عنوان ستون */
.footer-trendine .f-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-black);
    position: relative;
}

.footer-trendine .f-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--color-rosegold);
    border-radius: 2px;
}

/* لینک‌ها با انیمیشن خط راست→چپ */
.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-links li {
    margin-bottom: .5rem;
}

.f-links a {
    color: var(--color-black);
    text-decoration: none;
    position: relative;
    transition: color .5s ease;
}

.f-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 1.5px;
    width: 0;
    background: var(--color-rosegold);
    transition: width .5s ease;
}

.f-links a:hover {
    color: var(--color-rosegold);
}

.f-links a:hover::after {
    width: 100%;
}

/* برند */
.f-brand .brand-mini-logo {
    max-width: 75px;
    margin-bottom: 0;
    display: block;
}

.brand-mini-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-rosegold), var(--color-taupe));
    color: #fff;
    font-weight: 700;
}

.brand-mini-name {
    font-weight: 700;
}

/* متن معرفی */
.f-desc {
    font-size: .95rem;
    color: #333;
}

.f-desc p {
    margin-bottom: .5rem;
}

/* تماس */
.f-contact {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    margin-bottom: .4rem;
}

.f-contact i {
    color: var(--color-rosegold);
}

.f-contact a {
    color: inherit;
    text-decoration: none;
}

.f-contact a:hover {
    color: var(--color-rosegold);
}

/* سوشال فقط آیکون با هاور برند-رنگ و بدون پرش */
.f-socials-icons {
    margin-top: 1rem;
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.f-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .05);
    color: var(--color-black);
    font-size: 1.1rem;
    transition: all .25s ease;
    border: 2px solid transparent; /* جلوگیری از جابجایی در هاور */
}

.f-social:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* رنگ‌های اختصاصی هاور برندها */
.f-social[data-net="instagram"]:hover {
    background: #e1306c;
    border-color: #e1306c;
}

.f-social[data-net="telegram"]:hover {
    background: #229ED9;
    border-color: #229ED9;
}

.f-social[data-net="whatsapp"]:hover {
    background: #25D366;
    border-color: #25D366;
}

/* خبرنامه */
.f-newsletter {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
}

.f-newsletter-text {
    font-size: .9rem;
    color: #444;
    margin-bottom: .9rem;
    line-height: 1.8;
}

.f-input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    padding: .45rem .8rem;
    outline: none;
    background: #fff;
    text-align: right;
}

.f-btn {
    background: var(--color-rosegold);
    color: #fff;
    border-radius: 6px;
    padding: .45rem 1rem;
    border: none;
    transition: all .25s ease;
}

.f-btn:hover {
    background: #a85a64;
    color: var(--color-black);
}

/* نماد */
.f-certs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: .8rem;
}

.f-cert-label {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

.f-certs img {
    width: 80px;
    opacity: .9;
    transition: .3s ease;
}

.f-certs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* پایین فوتر */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, .12);
    margin-top: 2.5rem;
    padding-top: 1rem;
    font-size: .9rem;
    color: #444;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .footer-trendine {
        text-align: center;
    }

    .f-socials-icons {
        justify-content: center;
    }
}
