/* ============================================================
   Bella Households — Footer
   ============================================================ */

/* ── Base ────────────────────────────────────────────────── */
.footer__bg {
    background: #0e1620;
    background-image: none;
    position: relative;
    overflow: hidden;
}

/* ── Floating particles (CSS only) ──────────────────────── */
.footer__particle {
    position: absolute;
    bottom: -20px;           /* start just below the footer floor */
    border-radius: 50%;
    animation: floatUp linear infinite;
    pointer-events: none;
    z-index: 0;
}

.footer__particle:nth-child(1)  { width:8px;  height:8px;  background:#85CEBA; left:5%;   animation-duration:9s;  animation-delay:0s;   }
.footer__particle:nth-child(2)  { width:5px;  height:5px;  background:#F1667C; left:12%;  animation-duration:12s; animation-delay:2s;   }
.footer__particle:nth-child(3)  { width:14px; height:14px; background:#85CEBA; left:22%;  animation-duration:8s;  animation-delay:5s;   }
.footer__particle:nth-child(4)  { width:4px;  height:4px;  background:#F1667C; left:33%;  animation-duration:14s; animation-delay:1s;   }
.footer__particle:nth-child(5)  { width:7px;  height:7px;  background:#85CEBA; left:45%;  animation-duration:10s; animation-delay:3.5s; }
.footer__particle:nth-child(6)  { width:10px; height:10px; background:#F1667C; left:57%;  animation-duration:7s;  animation-delay:6s;   }
.footer__particle:nth-child(7)  { width:5px;  height:5px;  background:#85CEBA; left:67%;  animation-duration:13s; animation-delay:1.5s; }
.footer__particle:nth-child(8)  { width:9px;  height:9px;  background:#F1667C; left:76%;  animation-duration:9s;  animation-delay:4s;   }
.footer__particle:nth-child(9)  { width:6px;  height:6px;  background:#85CEBA; left:86%;  animation-duration:11s; animation-delay:7s;   }
.footer__particle:nth-child(10) { width:4px;  height:4px;  background:#F1667C; left:94%;  animation-duration:8s;  animation-delay:0.5s; }

@keyframes floatUp {
    0%   { transform: translateY(0) scale(0.7); opacity: 0; }
    8%   { opacity: 0.35; }
    50%  { opacity: 0.2; }
    92%  { opacity: 0.25; }
    100% { transform: translateY(-600px) scale(1.1); opacity: 0; }
}

/* ── Decorative top accent line ─────────────────────────── */
.footer__accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #85CEBA 0%, #F1667C 50%, #85CEBA 100%);
}

/* ── Contact strip ───────────────────────────────────────── */
.footer__contact-strip {
    border-bottom: 1px solid rgba(133,206,186,0.12);
    padding: 3.5rem 0;
    position: relative;
    z-index: 1;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.footer__contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(133,206,186,0.1);
    border: 1px solid rgba(133,206,186,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #85CEBA;
}

.footer__contact-label {
    font-size: 1.15rem;
    color: #5a7a74;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
    display: block;
}

.footer__contact-value {
    font-size: 1.5rem;
    color: #c8d8d5;
    font-weight: 500;
}

/* ── Main widget area ────────────────────────────────────── */
.main__footer {
    border-bottom: 1px solid rgba(133,206,186,0.12);
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 1;
}

/* ── Brand column ────────────────────────────────────────── */
.footer__logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer__logo img {
    height: 70px;
    width: auto;
}

.footer__widget--desc {
    font-size: 1.5rem;
    line-height: 2.6rem;
    color: #7a9e99;
    max-width: 280px;
}

/* ── Social icons ─────────────────────────────────────────── */
.footer__social {
    margin-top: 3rem;
}

.social__shear--list {
    margin-right: 1rem;
}

.social__shear--list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(133,206,186,0.1);
    color: #85CEBA;
    border: 1px solid rgba(133,206,186,0.25);
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.social__shear--list__icon:hover {
    background: #F1667C;
    color: #fff;
    border-color: #F1667C;
    transform: translateY(-3px);
}

/* ── Widget headings ─────────────────────────────────────── */
.footer__widget--title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.8rem;
    padding-bottom: 1.4rem;
    position: relative;
}

.footer__widget--title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #F1667C, #85CEBA);
    border-radius: 2px;
}

/* ── Link lists ──────────────────────────────────────────── */
.footer__widget--menu__list {
    margin-bottom: 0.2rem;
}

.footer__widget--menu__text {
    font-size: 1.5rem;
    line-height: 3.2rem;
    color: #7a9e99;
    font-family: var(--open-sans);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.2s, gap 0.2s;
}

.footer__widget--menu__text::before {
    content: "›";
    color: #F1667C;
    font-size: 1.8rem;
    line-height: 1;
}

.footer__widget--menu__text:hover {
    color: #85CEBA;
    gap: 1.2rem;
}

/* ── Newsletter ──────────────────────────────────────────── */
.footer__newsletter--desc {
    font-size: 1.5rem;
    line-height: 2.6rem;
    color: #7a9e99;
    margin-bottom: 2rem;
}

.newsletter__subscribe--form__style {
    display: flex;
}

.footer__newsletter--input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(133,206,186,0.2);
    border-right: none;
    color: #fff;
    border-radius: 6px 0 0 6px;
    font-size: 1.4rem;
    padding: 1.3rem 1.4rem;
    flex: 1;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.footer__newsletter--input::placeholder {
    color: #4a6a65;
}

.footer__newsletter--input:focus {
    border-color: #85CEBA;
    background: rgba(133,206,186,0.05);
}

.footer__newsletter--button {
    background: #F1667C;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.3rem 2rem;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer__newsletter--button:hover {
    background: #d94f66;
}

.footer__newsletter--note {
    font-size: 1.2rem;
    color: #4a6a65;
    margin-top: 1rem;
    display: block;
}

/* ── Bottom bar ──────────────────────────────────────────── */
.footer__bottom {
    padding: 2.4rem 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.copyright__content {
    font-size: 1.4rem;
    color: #4a6a65;
}

.copyright__content--link {
    color: #85CEBA;
    font-weight: 600;
}

.copyright__content--link:hover {
    color: #F1667C;
}

/* ── Payment badges ──────────────────────────────────────── */
.footer__payment {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__payment--label {
    font-size: 1.25rem;
    color: #4a6a65;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.4rem;
}

.payment__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 60px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.payment__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.payment__badge svg {
    display: block;
    max-height: 22px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media only screen and (max-width: 991px) {
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__contact-item {
        margin-bottom: 2rem;
    }

    .main__footer {
        padding: 5rem 0 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .footer__widget--title::after {
        display: none;
    }

    .footer__widget--desc {
        max-width: 100%;
    }

    .footer__contact-strip {
        padding: 2.5rem 0 0.5rem;
    }
}
