/* MFR_INFO_PAGES_20260511_START
   Shared local cart info pages: FAQ, Contact, Privacy, Terms.
*/

:root {
    --mfr-green: #31593f;
    --mfr-green-dark: #264735;
    --mfr-salmon: #c97c78;
    --mfr-cream: #fbf7ef;
    --mfr-bg: #f7f3ea;
    --mfr-ink: #28322d;
    --mfr-muted: #656d67;
    --mfr-line: #eadfd4;
    --mfr-white: #fffdf9;
    --mfr-shadow: 0 18px 40px rgba(52, 41, 30, .12);
    --mfr-shadow-soft: 0 10px 24px rgba(52, 41, 30, .08);
}

.mfr-info-page {
    background: var(--mfr-bg);
    color: var(--mfr-ink);
}

.mfr-info-page .site-header .logo.mfr-image-logo {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: none !important;
    text-decoration: none !important;
}

.mfr-info-page .site-header .logo.mfr-image-logo img {
    display: block !important;
    width: 235px !important;
    max-width: 235px !important;
    height: auto !important;
}

.mfr-info-hero {
    background:
        linear-gradient(rgba(251,247,239,.72), rgba(251,247,239,.62)),
        url("../images/homepage-hero-exact.jpg") center center / cover no-repeat;
    padding: 70px 0;
}

.mfr-info-hero-card {
    max-width: 760px;
    background: rgba(255,253,249,.92);
    border: 1px solid var(--mfr-line);
    border-radius: 20px;
    box-shadow: var(--mfr-shadow);
    padding: 44px 48px;
    backdrop-filter: blur(6px);
}

.mfr-info-eyebrow {
    color: var(--mfr-green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mfr-info-hero h1 {
    margin: 0 0 14px;
    color: var(--mfr-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
}

.mfr-info-hero h1 em {
    color: var(--mfr-salmon);
    font-style: italic;
}

.mfr-info-hero p {
    margin: 0;
    max-width: 650px;
    color: var(--mfr-muted);
    font-size: 16px;
    line-height: 1.65;
}

.mfr-info-content {
    background: var(--mfr-white);
    padding: 58px 0 64px;
}

.mfr-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.mfr-faq-tabs button {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(201, 124, 120, .55);
    border-radius: 10px;
    background: var(--mfr-white);
    color: var(--mfr-ink);
    font-weight: 800;
    cursor: pointer;
}

.mfr-faq-tabs button.active,
.mfr-faq-tabs button:hover {
    background: var(--mfr-green);
    border-color: var(--mfr-green);
    color: #fff;
}

.mfr-faq-list {
    display: grid;
    gap: 10px;
}

.mfr-faq-item {
    border: 1px solid rgba(201, 124, 120, .38);
    border-radius: 14px;
    background: var(--mfr-white);
    box-shadow: var(--mfr-shadow-soft);
    overflow: hidden;
}

.mfr-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    color: var(--mfr-ink);
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.mfr-faq-item summary::-webkit-details-marker {
    display: none;
}

.mfr-faq-item summary::after {
    content: "⌄";
    color: var(--mfr-salmon);
    font-size: 20px;
    line-height: 1;
    flex: 0 0 auto;
}

.mfr-faq-item[open] summary {
    background: var(--mfr-green);
    color: #fff;
}

.mfr-faq-item[open] summary::after {
    content: "⌃";
    color: #fff;
}

.mfr-faq-item > div {
    padding: 18px 22px 20px;
    border-top: 1px solid var(--mfr-line);
}

.mfr-faq-item p {
    margin: 0;
    color: var(--mfr-muted);
    font-size: 14px;
    line-height: 1.65;
}

.mfr-faq-item a {
    color: var(--mfr-green);
    font-weight: 900;
    text-decoration: none;
}

.mfr-faq-item a:hover {
    text-decoration: underline;
}

.mfr-info-cta {
    margin-top: 48px !important;
}

@media (max-width: 700px) {
    .mfr-info-page .site-header .logo.mfr-image-logo img {
        width: 210px !important;
        max-width: 210px !important;
    }

    .mfr-info-hero {
        padding: 46px 0;
    }

    .mfr-info-hero-card {
        padding: 30px 22px;
    }

    .mfr-info-hero h1 {
        font-size: 34px;
    }

    .mfr-faq-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }
}
/* MFR_INFO_PAGES_20260511_END */

/* MFR_CONTACT_PAGE_20260511_START */

.mfr-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.mfr-contact-card,
.mfr-contact-side-card {
    background: var(--mfr-white);
    border: 1px solid var(--mfr-line);
    border-radius: 18px;
    box-shadow: var(--mfr-shadow-soft);
}

.mfr-contact-card {
    padding: 34px 38px;
}

.mfr-contact-card h2,
.mfr-contact-side-card h3 {
    color: var(--mfr-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
}

.mfr-contact-card h2 {
    font-size: 32px;
}

.mfr-contact-side {
    display: grid;
    gap: 18px;
}

.mfr-contact-side-card {
    padding: 24px;
}

.mfr-contact-side-card h3 {
    font-size: 23px;
}

.mfr-contact-muted,
.mfr-contact-side-card p {
    color: var(--mfr-muted);
    font-size: 14px;
    line-height: 1.6;
}

.mfr-contact-side-card a {
    color: var(--mfr-green);
    font-weight: 900;
    text-decoration: none;
}

.mfr-contact-side-card a:hover {
    text-decoration: underline;
}

.mfr-contact-form {
    margin-top: 24px;
}

.mfr-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mfr-form-field {
    margin-bottom: 18px;
}

.mfr-form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--mfr-ink);
    font-size: 13px;
    font-weight: 900;
}

.mfr-form-field label span {
    color: var(--mfr-salmon);
}

.mfr-form-field input,
.mfr-form-field select,
.mfr-form-field textarea {
    width: 100%;
    border: 1px solid rgba(201, 124, 120, .42);
    border-radius: 10px;
    background: var(--mfr-white);
    color: var(--mfr-ink);
    font-size: 15px;
    padding: 12px 14px;
    outline: none;
    box-sizing: border-box;
}

.mfr-form-field input,
.mfr-form-field select {
    min-height: 46px;
}

.mfr-form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.mfr-form-field input:focus,
.mfr-form-field select:focus,
.mfr-form-field textarea:focus {
    border-color: var(--mfr-green);
    box-shadow: 0 0 0 3px rgba(49, 89, 63, .12);
}

.mfr-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    border: 0;
    border-radius: 999px;
    background: var(--mfr-green);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.mfr-contact-submit:hover {
    background: var(--mfr-green-dark);
}

.mfr-form-success,
.mfr-form-error {
    border-radius: 14px;
    padding: 16px 18px;
    margin: 18px 0 0;
    line-height: 1.5;
}

.mfr-form-success {
    background: rgba(49, 89, 63, .10);
    border: 1px solid rgba(49, 89, 63, .22);
    color: var(--mfr-green);
}

.mfr-form-error {
    background: rgba(201, 124, 120, .12);
    border: 1px solid rgba(201, 124, 120, .28);
    color: #8a2525;
}

.mfr-form-success p,
.mfr-form-error p,
.mfr-form-error ul {
    margin: 6px 0 0;
}

.mfr-hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 900px) {
    .mfr-contact-grid {
        grid-template-columns: 1fr;
    }

    .mfr-contact-card {
        padding: 28px 22px;
    }
}

@media (max-width: 650px) {
    .mfr-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* MFR_CONTACT_PAGE_20260511_END */

/* MFR_PRIVACY_POLICY_PAGE_20260511_START */

.mfr-policy-card {
    background: var(--mfr-white);
    border: 1px solid var(--mfr-line);
    border-radius: 18px;
    box-shadow: var(--mfr-shadow-soft);
    padding: 42px 48px;
    max-width: 980px;
    margin: 0 auto;
}

.mfr-policy-effective {
    margin: 0 0 24px;
    padding: 14px 16px;
    background: #fbf7ef;
    border: 1px solid var(--mfr-line);
    border-radius: 12px;
    color: var(--mfr-muted);
}

.mfr-policy-card h2 {
    margin: 30px 0 10px;
    color: var(--mfr-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.mfr-policy-card h2:first-of-type {
    margin-top: 0;
}

.mfr-policy-card h3 {
    margin: 20px 0 8px;
    color: var(--mfr-green);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.mfr-policy-card p,
.mfr-policy-card li {
    color: var(--mfr-muted);
    font-size: 15px;
    line-height: 1.72;
}

.mfr-policy-card p {
    margin: 0 0 14px;
}

.mfr-policy-card ul {
    margin: 10px 0 18px 22px;
    padding: 0;
}

.mfr-policy-card a {
    color: var(--mfr-green);
    font-weight: 900;
    text-decoration: none;
}

.mfr-policy-card a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .mfr-policy-card {
        padding: 30px 22px;
    }

    .mfr-policy-card h2 {
        font-size: 23px;
    }

    .mfr-policy-card p,
    .mfr-policy-card li {
        font-size: 14px;
    }
}

/* MFR_PRIVACY_POLICY_PAGE_20260511_END */

/* MFR_TERMS_OF_USE_PAGE_20260511_START
   Terms page currently uses the shared .mfr-policy-card styles from Privacy Policy.
   This marker confirms the Terms page styling phase was added intentionally.
*/
.mfr-terms-page .mfr-policy-card h2 {
    scroll-margin-top: 120px;
}
/* MFR_TERMS_OF_USE_PAGE_20260511_END */
