/* Casa Modesta - Footer Styles */

.cm-footer {
    background-color: transparent;
    padding: 60px 24px 120px 24px; /* Massive bottom padding to clear the floating nav */
    text-align: center;
    border-top: 1px solid var(--cm-border);
    margin-top: 40px;
}

.cm-footer-brand {
    margin-bottom: 40px;
}

.cm-footer-brand h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--cm-ink);
}

.cm-footer-brand p {
    font-size: 14px;
    color: var(--cm-muted);
    margin: 0;
}

.cm-footer-section {
    margin-bottom: 32px;
}

.cm-footer-section h3 {
    font-family: var(--cm-font-display);
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--cm-ink);
}

.cm-footer-section p {
    font-size: 14px;
    color: var(--cm-ink);
    margin: 4px 0;
    font-weight: 500;
}

.cm-footer-section a {
    color: var(--cm-ink);
    text-decoration: none;
}

.cm-chat-link {
    text-decoration: underline !important;
}

.cm-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.cm-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--cm-border);
    background-color: var(--cm-surface);
    color: var(--cm-ink);
    transition: transform 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.cm-social-icons a:active {
    transform: scale(0.95);
    background-color: var(--cm-surface-2);
}

/* Sleek Single-Row Payment Icons */
.cm-payment-methods {
    display: flex;
    flex-wrap: nowrap; /* Forces a single horizontal row */
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 32px 0;
    overflow-x: auto; /* Allows swiping if screen is extremely narrow */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none; /* Hides scrollbar on Firefox */
}

.cm-payment-methods::-webkit-scrollbar {
    display: none; /* Hides scrollbar on Chrome/Safari */
}

.cm-payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px; /* Shrunk from 28px */
    padding: 0 8px; /* Tighter padding */
    border-radius: 4px;
    background-color: var(--cm-surface);
    border: 1px solid var(--cm-border);
    font-size: 10px; /* Shrunk text */
    font-weight: 700;
    color: var(--cm-ink);
    white-space: nowrap;
    flex-shrink: 0; /* Prevents icons from squishing */
}

/* Adjust the COD icon size to match the new pill height */
.cm-payment-pill svg {
    width: 12px;
    height: 12px;
    margin-left: 4px;
}

.cm-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-bottom: 32px;
}

.cm-legal-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--cm-ink);
    text-decoration: none;
}

.cm-copyright {
    font-size: 12px;
    color: var(--cm-muted);
    font-weight: 500;
}