/* ===================================
   MARKETPLACE HERO - ENTERPRISE
   =================================== */
.mp-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.mp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F59E0B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.mp-hero-badge i {
    color: #F59E0B;
}

.mp-hero-badge span {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
}

.mp-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.mp-hero h1 span {
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-hero p {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Search Box */
.mp-search-box {
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.mp-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.mp-search-input-wrap i {
    color: #9ca3af;
    font-size: 1.25rem;
}

.mp-search-input {
    flex: 1;
    border: none;
    font-size: 1.1rem;
    padding: 16px 0;
    color: #1f2937;
    background: transparent;
}

.mp-search-input::placeholder {
    color: #9ca3af;
}

.mp-search-input:focus {
    outline: none;
}

.mp-search-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    align-self: center;
}

.mp-search-select {
    padding: 16px 20px;
    border: none;
    background: #f9fafb;
    border-radius: 12px;
    font-size: 1rem;
    color: #374151;
    cursor: pointer;
    min-width: 160px;
}

.mp-search-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    border: none;
    border-radius: 14px;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.mp-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}

/* Quick Categories */
.mp-quick-cats {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.mp-quick-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #d1d5db;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-quick-cat:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #F59E0B;
    color: #fbbf24;
}

.mp-quick-cat i {
    font-size: 1rem;
}

/* ===================================
   STATS BAR
   =================================== */
.mp-stats {
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    padding: 24px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.mp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.mp-stat {
    padding: 0 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.mp-stat:last-child {
    border-right: none;
}

.mp-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mp-stat-value i {
    font-size: 1.25rem;
}

.mp-stat-label {
    font-size: 0.85rem;
    color: #92400e;
    font-weight: 600;
    margin-top: 4px;
}

/* ===================================
   MAIN LAYOUT
   =================================== */
.mp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.mp-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* ===================================
   FILTERS SIDEBAR - Enhanced UI/UX
   =================================== */
.mp-filters {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mp-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 2px solid #f3f4f6;
    background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
}

.mp-filters-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #1f2937;
}

.mp-filters-title i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.mp-filters-clear {
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mp-filters-clear:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

.mp-filters-body {
    padding: 24px;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #fbbf24 #f3f4f6;
}

.mp-filters-body::-webkit-scrollbar {
    width: 6px;
}

.mp-filters-body::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.mp-filters-body::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 3px;
}

.mp-filter-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.mp-filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mp-filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-filter-label i {
    color: #F59E0B;
    width: 20px;
    font-size: 1rem;
}

/* Category Pills - Enhanced */
.mp-cat-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mp-cat-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.mp-cat-pill:hover {
    border-color: #fbbf24;
    background: #fffbeb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.mp-cat-pill.active {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #F59E0B;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}

.mp-cat-pill i {
    font-size: 1rem;
    width: 20px;
}

/* Price Range - Enhanced */
.mp-price-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}

.mp-price-input {
    width: 100%;
    min-width: 0;
    padding: 12px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    background: #f9fafb;
}

.mp-price-input:focus {
    outline: none;
    border-color: #F59E0B;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.mp-price-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.mp-price-divider {
    color: #d1d5db;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mp-price-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.mp-price-preset {
    padding: 10px 8px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.mp-price-preset:hover {
    border-color: #F59E0B;
    color: #92400e;
    background: #fffbeb;
    transform: translateY(-1px);
}

.mp-price-preset.active {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #F59E0B;
    color: #92400e;
}

/* Location Select - Enhanced */
.mp-select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 44px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    background: #f9fafb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.mp-select:focus {
    outline: none;
    border-color: #F59E0B;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.mp-select:hover {
    border-color: #fbbf24;
}

/* Date Inputs - Enhanced */
.mp-date-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mp-date-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mp-date-input:focus {
    outline: none;
    border-color: #F59E0B;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.mp-date-input::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    filter: invert(65%) sepia(64%) saturate(1000%) hue-rotate(10deg);
}

/* Toggle Switches - Enhanced */
.mp-toggle-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mp-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mp-toggle:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.mp-toggle.active,
.mp-toggle:has(input:checked) {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #F59E0B;
}

.mp-toggle-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-toggle-info i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.mp-toggle:has(input:checked) .mp-toggle-info i {
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    color: #1f2937;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.mp-toggle-text {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
}

.mp-toggle:has(input:checked) .mp-toggle-text {
    color: #92400e;
}

.mp-toggle input {
    display: none;
}

.mp-toggle-switch {
    width: 52px;
    height: 28px;
    background: #d1d5db;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mp-toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mp-toggle input:checked+.mp-toggle-switch {
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.mp-toggle input:checked+.mp-toggle-switch::after {
    left: 27px;
    background: #fff;
}

/* Active Filter Count Badge */
.mp-filters-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 11px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.mp-filters-count:empty,
.mp-filters-count[data-count="0"] {
    display: none;
}

/* Hide mobile apply buttons on desktop */
.mp-filters-apply {
    display: none;
}

/* ===================================
   MAIN CONTENT
   =================================== */
.mp-main {
    min-width: 0;
}

/* Results Header */
.mp-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.mp-results-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mp-results-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1.25rem;
}

.mp-results-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.mp-results-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 4px 0 0;
}

.mp-results-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* View Toggle */
.mp-view-toggle {
    display: flex;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 10px;
}

.mp-view-btn {
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.mp-view-btn.active {
    background: #fff;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Sort Select */
.mp-sort-select {
    padding: 10px 40px 10px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #374151;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

/* ===================================
   EQUIPMENT GRID
   =================================== */
.mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Equipment Card */
.mp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.mp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mp-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mp-card:hover .mp-card-image img {
    transform: scale(1.08);
}

/* "View Details" hover overlay — consistent with homepage cards */
.mp-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(232, 112, 10, 0.88) 0%,
        rgba(232, 112, 10, 0.25) 55%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.mp-card-image::after {
    content: 'View Details \2192';
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    text-align: center;
    color: #FFFFFF;
    font-family: var(--font-display, 'Barlow', sans-serif);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
    z-index: 2;
    pointer-events: none;
}

.mp-card:hover .mp-card-image::before { opacity: 1; }
.mp-card:hover .mp-card-image::after  { opacity: 1; transform: translateY(0); }

/* Keep badges and action buttons above overlay */
.mp-card-badges  { z-index: 4; }
.mp-card-actions { z-index: 4; }

.mp-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mp-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mp-badge.verified {
    background: #10b981;
    color: #fff;
}

.mp-badge.featured {
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    color: #1f2937;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.45);
}

.mp-badge.new {
    background: #3b82f6;
    color: #fff;
}

.mp-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.mp-card:hover .mp-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.mp-card-action {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.mp-card-action:hover {
    color: #F59E0B;
    transform: scale(1.1);
}

.mp-card-action.active {
    color: #ef4444;
}

.mp-card-body {
    padding: 20px;
}

.mp-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.mp-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.mp-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.mp-card-location i {
    color: #F59E0B;
}

.mp-card-specs {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 16px;
}

.mp-card-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6b7280;
}

.mp-card-spec i {
    color: #9ca3af;
}

.mp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-card-price {
    display: flex;
    flex-direction: column;
}

.mp-card-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E8700A 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-card-price-period {
    font-size: 0.8rem;
    color: #6b7280;
}

.mp-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fef3c7;
    border-radius: 8px;
}

.mp-card-rating i {
    color: #F59E0B;
}

.mp-card-rating span {
    font-weight: 700;
    color: #92400e;
}

/* ===================================
   EMPTY & LOADING STATES
   =================================== */
.mp-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 20px;
}

.mp-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f4f6;
    border-top-color: #F59E0B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.mp-empty {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 20px;
}

.mp-empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mp-empty-icon i {
    font-size: 3rem;
    color: #F59E0B;
}

.mp-empty h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 12px;
}

.mp-empty p {
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto 24px;
}

/* ===================================
   PAGINATION
   =================================== */
.mp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.mp-pagination-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.mp-pagination-btn:hover {
    border-color: #F59E0B;
    color: #F59E0B;
}

.mp-pagination-btn.active {
    background: linear-gradient(135deg, #F59E0B, #fbbf24);
    border-color: #F59E0B;
    color: #1f2937;
}

/* ===================================
   FLOATING CTA
   =================================== */
.mp-float-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.mp-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mp-float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.mp-float-btn i {
    color: #F59E0B;
}

/* ===================================
   MOBILE FILTER TOGGLE
   =================================== */
.mp-mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 14px 28px;
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .mp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mp-layout {
        grid-template-columns: 1fr;
    }

    .mp-filters {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        border-radius: 0;
        overflow-y: auto;
        padding-bottom: 100px;
    }

    .mp-filters.active {
        display: block;
        animation: slideInFromLeft 0.3s ease;
    }

    @keyframes slideInFromLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .mp-filters-header {
        position: sticky;
        top: 0;
        z-index: 10;
        border-radius: 0;
    }

    .mp-filters-body {
        max-height: none;
        padding-bottom: 100px;
    }

    .mp-cat-pills {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-mobile-filter-btn {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mp-float-cta {
        bottom: 90px;
    }

    /* Mobile Apply Filters Button */
    .mp-filters-apply {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 24px;
        background: #fff;
        border-top: 2px solid #f3f4f6;
        z-index: 1001;
        display: flex;
        gap: 12px;
    }

    .mp-filters-apply-btn {
        flex: 1;
        padding: 16px;
        background: linear-gradient(135deg, #F59E0B, #fbbf24);
        color: #1f2937;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }

    .mp-filters-close-btn {
        padding: 16px 24px;
        background: #f3f4f6;
        color: #4b5563;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .mp-hero h1 {
        font-size: 2.25rem;
    }

    .mp-search-box {
        flex-direction: column;
        padding: 16px;
    }

    .mp-search-divider {
        display: none;
    }

    .mp-search-select {
        width: 100%;
    }

    .mp-search-btn {
        width: 100%;
        justify-content: center;
    }

    .mp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mp-stat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 16px;
    }

    .mp-stat:nth-child(2),
    .mp-stat:last-child {
        border-bottom: none;
    }

    .mp-grid {
        grid-template-columns: 1fr;
    }

    .mp-results-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .mp-quick-cats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mp-cat-pills {
        grid-template-columns: 1fr;
    }

    .mp-price-presets {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-toggle {
        padding: 12px 14px;
    }

    .mp-toggle-info i {
        width: 32px;
        height: 32px;
    }
}