
    :root {
        --mp-green: #00b060;
        --agri-dark: #1A3A02; 
        --mp-border: #e2e8f0;
        --mp-bg: #f8fafc;
    }

    body { 
        background-color: var(--mp-bg); 
        font-family: 'Outfit', sans-serif; 
        color: #0f172a; 
    }

    /* Marketplace Header */
    .mp-header-bar {
        background: #fff;
        border-bottom: 1px solid var(--mp-border);
        padding: 30px 0;
        margin-bottom: 30px;
        margin-top:170px;
    }

    .sidebar-sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        z-index: 100;
    }

    .filter-panel {
        background: #fff;
        border: 1px solid var(--mp-border);
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
    }

    .filter-section-title {
        font-size: 13px;
        font-weight: 800;
        color: var(--agri-dark);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
    }

    /* PRICE INPUT STYLE */
    .price-input-group {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .mp-input {
        width: 100%;
        padding: 10px;
        background: #f8fafc;
        border: 1px solid var(--mp-border);
        border-radius: 8px;
        font-size: 13px;
    }

    .buyer-offer-section {
        padding: 25px 20px;
        border: 2px dashed var(--mp-border);
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        text-decoration: none !important;
        display: block;
        background: #fff;
    }

    .buyer-offer-section:hover {
        border-color: var(--mp-green);
        transform: translateY(-3px);
    }

    .buyer-offer-section h2 {
        font-size: 26px;
        font-weight: 900;
        color: var(--agri-dark);
        margin: 8px 0;
        text-transform: uppercase;
        line-height: 1.1;
    }

    /* CARD UI */
    .mp-product-card {
        background: #fff;
        border: 1px solid var(--mp-border);
        border-radius: 16px;
        transition: all 0.25s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .mp-img-box {
        position: relative;
        height: 200px;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }

    .mp-img-box img { width: 100%; height: 100%; object-fit: cover; }
    .mp-content { padding: 20px; flex-grow: 1; }
    .mp-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--agri-dark); }
    .mp-meta { background: #f1f5f9; border-radius: 8px; padding: 10px; margin-bottom: 15px; }

    .btn-mp-primary {
        background: var(--agri-dark);
        color: #fff; width: 100%; padding: 14px; border-radius: 10px;
        font-weight: 600; text-align: center; text-decoration: none; display: block;
        border: none; transition: all 0.2s ease;
    }

    .mp-select { width: 100%; padding: 12px; background: #f8fafc; border: 1px solid var(--mp-border); border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
