    /* ── Nursery Pincode – Frontend Styles ────────────────────── */

    /* ▸ Pincode Popup Overlay */
    #np-pincode-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 999999;
        display: flex; align-items: center; justify-content: center;
    }
    #np-pincode-modal {
        background: #fff;
        border-radius: 12px;
        padding: 32px 28px 24px;
        max-width: 380px; width: 90%;
        text-align: center;
        box-shadow: 0 12px 40px rgba(0,0,0,.25);
        animation: npFadeIn .25s ease;
    }
    @keyframes npFadeIn { from { opacity: 0; transform: translateY(20px); } }

    #np-pincode-modal h3 {
        margin: 0 0 6px; font-size: 20px; color: #222;
    }
    #np-pincode-modal p {
        margin: 0 0 18px; font-size: 14px; color: #666;
    }
    #np-pincode-input {
        width: 100%; box-sizing: border-box;
        padding: 10px 14px; font-size: 16px;
        border: 2px solid #ddd; border-radius: 8px;
        text-align: center; letter-spacing: 2px;
        transition: border-color .2s;
    }
    #np-pincode-input:focus {
        border-color: #4caf50; outline: none;
    }
    #np-pincode-error {
        color: #d63638; font-size: 13px; margin-top: 8px;
    }
    #np-pincode-submit {
        margin-top: 16px; width: 100%;
        padding: 11px; font-size: 15px; font-weight: 600;
        color: #fff; background: #4caf50; border: none;
        border-radius: 8px; cursor: pointer;
        transition: background .2s;
    }
    #np-pincode-submit:hover { background: #43a047; }
    #np-pincode-submit:disabled { opacity: .6; cursor: not-allowed; }

    /* ▸ Nursery Slider */
    .np-slider-wrap {
        margin: 24px 0; overflow: hidden;
    }
    .np-slider-heading {
        font-size: 22px; font-weight: 700;
        margin: 0 0 14px; color: #222;
    }
    .np-slider-msg {
        font-size: 14px; color: #888; padding: 8px 0;
    }
    .np-slider-msg a.np-retry-pincode {
        color: #4caf50; font-weight: 600;
        text-decoration: underline; cursor: pointer;
    }
    .np-slider-track {
        display: flex; gap: 16px;
        overflow-x: auto; scroll-behavior: smooth;
        padding-bottom: 8px;
        -ms-overflow-style: none; scrollbar-width: thin;
    }
    .np-slider-track::-webkit-scrollbar { height: 0; }

    .np-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }
    .np-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 0;
        background: #c8c8c8;
        padding: 0;
        cursor: pointer;
        transition: transform .2s ease, background .2s ease;
    }
    .np-slider-dot:hover {
        background: #9e9e9e;
    }
    .np-slider-dot.is-active {
        background: #4caf50;
        transform: scale(1.2);
    }

    .np-nursery-card {
        flex: 0 0 220px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
        text-decoration: none; color: inherit;
        transition: box-shadow .2s, transform .15s;
        display: flex;
        flex-direction: column;
    }
    .np-nursery-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,.1);
        transform: translateY(-2px);
    }
    .np-nursery-img {
        width: 100%; height: 180px;
        object-fit: cover; display: block;
        background: #f5f5f5;
        flex: 1 1 auto;
        min-height: 180px;
    }
    .np-nursery-info {
        padding: 6px 10px;
    }
    .np-nursery-name {
        font-size: 15px; font-weight: 600;
        margin: 0 0 1px; color: #222;
        line-height: 1.2;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .np-nursery-addr {
        font-size: 12px; color: #888; margin: 0;
        line-height: 1.2;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    /* ▸ Product Delivery Notice */
    .np-delivery-notice {
        align-items: center; gap: 6px;
        margin: 10px 0; padding: 8px 14px;
        background: #f0faf0; border: 1px solid #c8e6c9;
        border-radius: 6px; font-size: 14px; color: #2e7d32;
    }
    .np-delivery-notice[data-np-pending] {
        display: none;
    }
    .np-delivery-notice.np-visible {
        display: flex !important;
    }
    .np-delivery-notice.np-unavailable {
        background: #fff8e1; border-color: #ffe082; color: #e65100;
    }
    .np-delivery-icon { font-size: 18px; }
    .np-delivery-text { flex: 1; }
    .np-change-pincode {
        background: none; border: none;
        color: #2271b1; font-size: 13px;
        cursor: pointer; text-decoration: underline;
        padding: 0;
    }
    /* ▸ Mobile Responsive – Nursery Slider */
    @media (max-width: 768px) {
        .np-nursery-card {
            flex: 0 0 55vw;
            min-height: 240px;
        }
        .np-nursery-img {
            height: auto;
            min-height: 200px;
            flex: 1 1 auto;
        }
        .np-nursery-name {
            font-size: 13px;
            margin: 0 0 1px;
        }
        .np-nursery-addr {
            font-size: 11px;
        }
        .np-nursery-info {
            padding: 4px 8px;
        }
        .np-slider-track {
            gap: 12px;
            scroll-snap-type: x mandatory;
        }
        .np-nursery-card {
            scroll-snap-align: center;
        }
        .np-slider-dots {
            margin-top: 8px;
        }
    }

    @media (max-width: 480px) {
        .np-nursery-card {
            flex: 0 0 50vw;
            min-height: 240px;
        }
        .np-nursery-img {
            height: auto;
            min-height: 200px;
            flex: 1 1 auto;
        }
        .np-nursery-name {
            font-size: 13px;
            margin: 0 0 1px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .np-nursery-addr {
            font-size: 11px;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .np-nursery-info {
            padding: 4px 8px;        /* Compact text area */
        }
        .np-slider-heading {
            font-size: 20px;
        }
        .np-slider-track {
            gap: 10px;
            padding-left: 4px;
            padding-right: 4px;
        }
    }