/* Wholesale shared footer styles */
/* ===== Wholesale footer (matches retail footer style) ===== */
    .ow-wfooter {
        background: #0f0f0f;
        color: #c9c9c9;
        font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        margin-top: 0;
    }
    .ow-wfooter-inner {
        max-width: 1430px;
        margin: 0 auto;
        padding: 150px 15px 36px;
    }
    .ow-wfooter-top {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
        gap: 40px;
        align-items: start !important;
    }
    .ow-wfooter-brand,
    .ow-wfooter-col,
    .ow-wfooter-contact {
        margin-top: 0 !important;
        padding-top: 0 !important;
        align-self: start !important;
    }
    .ow-wfooter-col a:first-child,
    .ow-wfooter-contact p:first-child {
        margin-top: 0 !important;
    }
    .ow-wfooter-brand img {
        width: 200px !important;   /* <-- change this number to resize the footer logo */
        max-width: 100%;
        height: auto !important;
        margin: 6px 0 0;
        display: inline-block;
        background: #ffffff;
        padding: 12px 16px;
        border-radius: 14px;
    }
    .ow-wfooter-brand p {
        font-size: 16px;
        line-height: 1.7;
        color: #a8a8a8;
        margin: 0 0 22px;
        max-width: 360px;
    }
    .ow-wfooter-col a {
        display: block;
        color: #c9c9c9;
        text-decoration: none;
        font-size: 16px;
        margin-bottom: 12px;
        transition: color 0.2s ease, padding-left 0.2s ease;
        cursor: pointer;
    }
    .ow-wfooter-col a:hover {
        color: #2FB7E8;
        padding-left: 4px;
    }
    .ow-wfooter-dropdown-toggle {
        display: none;
    }
    .ow-wfooter-dropdown-panel {
        display: block;
    }
    .ow-wfooter-contact p {
        font-size: 16px;
        line-height: 1.7;
        color: #a8a8a8;
        margin: 0 0 20px;
        max-width: 320px;
    }
    .ow-wfooter-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    .ow-wfooter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #2FB7E8;
        color: #ffffff;
        font-weight: 600;
        font-size: 16px;
        font-family: 'Jost', sans-serif;
        text-decoration: none;
        padding: 12px 28px;
        border-radius: 30px;
        border: 2px solid #2FB7E8;
        line-height: 1;
        transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
    .ow-wfooter-btn:hover {
        background: #2f2f2f;
        color: #ffffff;
        border-color: #2f2f2f;
    }
    .ow-wfooter-btn.is-outline {
        background: transparent;
        color: #2FB7E8;
        border: 2px solid #2FB7E8;
    }
    .ow-wfooter-btn.is-outline:hover {
        background: #2f2f2f;
        color: #ffffff;
        border-color: #2f2f2f;
    }
    .ow-wfooter-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 32px;
        padding-top: 22px;
        text-align: center;
    }
    .ow-wfooter-tagline {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 6px;
    }
    .ow-wfooter-copy {
        font-size: 14px;
        color: #888888;
        margin: 0;
    }

    /* ===== Policy modals ===== */
    .ow-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        padding: 20px;
    }
    .ow-modal-overlay.is-open { display: flex; }
    .ow-modal {
        background: #ffffff;
        width: 100%;
        max-width: 720px;
        max-height: 85vh;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        font-family: 'Jost', -apple-system, sans-serif;
    }
    .ow-modal-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 28px;
        border-bottom: 1px solid #eeeeee;
        flex-shrink: 0;
    }
    .ow-modal-head h2 {
        margin: 0;
        font-size: 24px;
        font-weight: 700;
        color: #2FB7E8;
    }
    .ow-modal-close {
        background: #e8f6fd;
        color: #2FB7E8;
        border: none;
        cursor: pointer;
        font-family: 'Jost', sans-serif;
        font-weight: 600;
        font-size: 14px;
        padding: 8px 18px;
        border-radius: 20px;
        transition: background 0.2s ease, color 0.2s ease;
    }
    .ow-modal-close:hover { background: #2FB7E8; color: #ffffff; }
    .ow-modal-body {
        padding: 24px 28px 28px;
        overflow-y: auto;
    }
    .ow-modal-body .ow-modal-meta {
        color: #888888;
        font-size: 14px;
        margin: 0 0 18px;
    }
    .ow-modal-body h3 {
        color: #2FB7E8;
        font-size: 17px;
        font-weight: 700;
        margin: 24px 0 8px;
    }
    .ow-modal-body p {
        color: #333333;
        font-size: 15px;
        line-height: 1.7;
        margin: 0 0 14px;
    }
    .ow-modal-body ul {
        margin: 0 0 14px;
        padding-left: 20px;
    }
    .ow-modal-body li {
        color: #333333;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 6px;
    }
    .ow-modal-body a { color: #2FB7E8; }

    @media (max-width: 992px) {
        .ow-wfooter-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 600px) {
        .ow-wfooter {
            margin-top: -1px;
        }
        .ow-wfooter-top {
            grid-template-columns: 1fr;
            gap: 28px;
            justify-items: center;
            text-align: center;
        }
        .ow-wfooter-inner { padding: 110px 18px 30px; }
        .ow-wfooter-brand,
        .ow-wfooter-col,
        .ow-wfooter-contact {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .ow-wfooter-brand img,
        .ow-wfooter-brand p,
        .ow-wfooter-contact p {
            margin-left: auto;
            margin-right: auto;
        }
        .ow-wfooter-nav {
            display: none;
        }
        .ow-wfooter-dropdown-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 4px 0;
            border: 0;
            background: transparent;
            color: #ffffff;
            font: inherit;
            font-weight: 600;
            cursor: pointer;
        }
        .ow-wfooter-dropdown-icon {
            font-size: 18px;
            line-height: 1;
            transition: transform 0.25s ease;
        }
        .ow-wfooter-policy.is-open .ow-wfooter-dropdown-icon {
            transform: rotate(180deg);
        }
        .ow-wfooter-dropdown-panel {
            display: none;
            margin-top: 12px;
        }
        .ow-wfooter-policy.is-open .ow-wfooter-dropdown-panel {
            display: grid;
            gap: 10px;
            justify-items: center;
        }
        .ow-wfooter-policy a {
            margin-bottom: 0;
        }
        .ow-wfooter-buttons {
            justify-content: center;
            gap: 10px;
        }
        .ow-wfooter-btn {
            min-width: 128px;
            padding: 9px 20px;
            font-size: 14px;
            border-radius: 28px;
        }
        .ow-wfooter-bottom {
            text-align: center;
        }
        .ow-modal-head h2 { font-size: 20px; }
    }
