/* ============================================================
   Pocket Pantry — Custom Footer  (.pp-footer)
   ============================================================ */

/* ── Shared ──────────────────────────────────────────────── */
.pp-footer {
    font-family: var(--global-body-font, 'Inter', sans-serif);
}

/* ── Main grid area ──────────────────────────────────────── */
.pp-footer-main {
    background-color: #FEF8EE;
    padding: 70px 0 50px;
    background-image:
        radial-gradient(circle at 5% 10%, rgba(255,87,51,.05) 0%, transparent 50%),
        radial-gradient(circle at 95% 90%, rgba(255,195,0,.05) 0%, transparent 50%);
}

/* ── Brand column ────────────────────────────────────────── */
.pp-footer-brand { padding-right: 20px; }

.pp-footer-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 18px;
    display: block;
}

.pp-footer-tagline {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}

.pp-footer-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pp-footer-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.pp-fh-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--orange, #FF5733);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Column headings ─────────────────────────────────────── */
.pp-footer-col-title {
    font-family: var(--global-heading-font, serif);
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.pp-footer-leaf {
    display: block;
    margin-bottom: 18px;
    line-height: 1;
}

/* ── Navigation lists ────────────────────────────────────── */
.pp-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-footer-nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    font-weight: 500;
}

.pp-footer-nav-list li a:hover {
    color: var(--orange, #FF5733);
    gap: 12px;
}

/* ── Social icons ────────────────────────────────────────── */
.pp-footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.pp-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--orange, #FF5733);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pp-social-icon:hover {
    background-color: var(--yellow, #FFC300);
    transform: translateY(-3px);
}

/* ── Newsletter ──────────────────────────────────────────── */
.pp-footer-newsletter { margin-top: 0; }

.pp-newsletter-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 14px 0 16px;
    line-height: 1.4;
}

.pp-newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(255,87,51,.25);
    border-radius: 40px;
    overflow: hidden;
    padding: 4px 4px 4px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    max-width: 300px;
}

.pp-newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
    min-width: 0;
}

.pp-newsletter-input::placeholder { color: #aaa; }

.pp-newsletter-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background-color: var(--orange, #FF5733);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.pp-newsletter-btn:hover { background-color: var(--yellow, #FFC300); }

/* ── Trust badges bar ────────────────────────────────────── */
.pp-footer-trust {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 22px 0;
}

.pp-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 18px;
}

.pp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pp-trust-item div {
    display: flex;
    flex-direction: column;
}

.pp-trust-item strong {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}

.pp-trust-item span {
    font-size: 12px;
    color: #888;
}

.pp-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--orange, #FF5733);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-trust-sep {
    width: 1px;
    height: 40px;
    background-color: rgba(0,0,0,.1);
}

/* ── Copyright bar ───────────────────────────────────────── */
.pp-footer-copyright {
    background-color: var(--orange, #FF5733);
    padding: 16px 0;
}

.pp-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.pp-copyright-text {
    font-size: 14px;
    color: rgba(255,255,255,.9);
    margin: 0;
}

.pp-copyright-text strong { color: #fff; }

/* Payment icons */
.pp-payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pp-payment-icons img {
    height: 26px;
    width: auto;
    background: #fff;
    border-radius: 4px;
    padding: 3px 6px;
    object-fit: contain;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .pp-trust-sep { display: none; }
    .pp-trust-row { justify-content: center; gap: 22px; }
}

@media (max-width: 767px) {
    .pp-copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .pp-footer-main { padding: 50px 0 40px; }
    .pp-newsletter-form { max-width: 100%; }
}
