/* Mobile-first styles for Tyche Marketplace frontend form */
.tyche-mp-form{display:block}
.tyche-mp-form{max-width:720px;margin:0 auto;padding:16px}
.tyche-mp-input{width:100%;padding:12px;margin-bottom:12px;border:1px solid #e5e5e5;border-radius:8px;font-size:16px}
.tyche-mp-label{display:block;margin-bottom:6px;font-weight:600}
.tyche-mp-btn{display:inline-block;background:#0073aa;color:#fff;padding:12px 16px;border-radius:10px;border:none;font-size:16px}
.tyche-mp-preview{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.tyche-mp-preview img{width:120px;height:120px;object-fit:cover;border-radius:6px}
.tyche-mp-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}

@media (min-width:900px){
    .tyche-mp-grid{grid-template-columns:repeat(3,1fr)}
}

/* Product card */
.tyche-mp-card{background:#fff;border:1px solid #eee;padding:12px;border-radius:8px}
.tyche-mp-card img{width:100%;height:180px;object-fit:cover;border-radius:6px}
.tyche-mp-card h3{font-size:16px;margin:8px 0}
.tyche-mp-meta{display:flex;justify-content:space-between;align-items:center;font-size:14px;color:#666}
.tyche-mp-excerpt{font-size:14px;color:#444}
.tyche-mp-search{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
.tyche-mp-search input,.tyche-mp-search select{padding:8px;border:1px solid #ddd;border-radius:6px}
.tyche-mp-search button{padding:8px 12px;background:#0073aa;color:#fff;border:none;border-radius:6px}
.tyche-mp-loading{padding:10px;background:#f5f5f5;border:1px solid #eee;border-radius:6px;color:#333}
.tyche-mp-loading{display:flex;align-items:center;gap:8px}
.tyche-spinner{display:inline-block;width:18px;height:18px;border-radius:50%;border:3px solid rgba(0,0,0,0.1);border-top-color:#0073aa;animation:tyche-spin .8s linear infinite}
@keyframes tyche-spin{to{transform:rotate(360deg)}}
#tyche-mp-loading .tyche-mp-loading{display:none}
#tyche-mp-loading.visible .tyche-mp-loading{display:flex}

/* Dashboard styles */
.tyche-mp-dashboard{max-width:1100px;margin:0 auto;padding:20px}
.tyche-mp-dashboard h2{font-size:28px;margin-bottom:18px}
.tyche-mp-product-list{display:grid;grid-template-columns:repeat(1,1fr);gap:12px}
.tyche-mp-product-card{background:#fff;border:1px solid #e6e6e6;padding:12px;border-radius:8px}
.tyche-mp-row{display:flex;gap:12px;align-items:flex-start}
.tyche-mp-thumb{flex:0 0 120px}
.tyche-mp-thumb img{width:120px;height:90px;object-fit:cover;border-radius:6px}
.tyche-mp-no-thumb{width:120px;height:90px;background:#f5f5f5;border-radius:6px;display:flex;align-items:center;justify-content:center;color:#888}
.tyche-mp-info{flex:1}
.tyche-mp-info h3{margin:0 0 6px 0;font-size:18px}
.tyche-mp-info p{margin:0 0 6px 0}
.tyche-mp-actions{margin-top:8px}
.tyche-mp-actions .tyche-mp-btn{margin-right:8px}

@media (min-width:700px){
    .tyche-mp-product-list{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1100px){
    .tyche-mp-product-list{grid-template-columns:repeat(3,1fr)}
    .tyche-mp-row{align-items:center}
}

/* Make search inputs full-width on small screens */
.tyche-mp-search input[type="search"],.tyche-mp-search select,.tyche-mp-search input[type="number"]{min-width:160px}

/* Category grid for frontend form */
.tyche-mp-cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:8px 0}
.tyche-mp-cat-item{display:flex;flex-direction:column;align-items:center;border:1px solid #e6e6e6;padding:8px;border-radius:6px;background:#fff;cursor:pointer}
.tyche-mp-cat-item.active{border-color:#0073aa;box-shadow:0 2px 6px rgba(0,0,0,0.06)}
.tyche-mp-cat-thumb img{width:100%;height:80px;object-fit:cover;border-radius:4px}
.tyche-mp-cat-name{margin-top:6px;font-size:13px;text-align:center}
.tyche-mp-no-thumb{width:100%;height:80px;background:#f5f5f5;display:flex;align-items:center;justify-content:center;color:#888;border-radius:4px}

@media (min-width:700px){
    .tyche-mp-cat-grid{grid-template-columns:repeat(5,1fr)}
}
