/* Grid */
.mbd-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin:1rem}
@media(max-width:1024px){.mbd-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.mbd-grid{grid-template-columns:1fr}}

/* Card */
.mbd-card{background:#fff;border:1px solid #e0e0e0;border-radius:8px;overflow:hidden;position:relative;cursor:pointer}
.mbd-card img{width:100%;height:160px;object-fit:cover}
.mbd-card-body{padding:.75rem}
.mbd-card h4{margin:.25rem 0;font-size:1rem}
.mbd-date,.mbd-price{display:block;font-size:.875rem;color:#555}
.mbd-price{font-weight:700}

/* Download icon (icon only) */
.mbd-download-btn{position:absolute;top:8px;right:8px;background:#000;border:none;border-radius:50%;width:32px;height:32px;display:flex;align-items:center;justify-content:center;cursor:pointer}
.mbd-download-btn svg{width:14px;height:14px}

/* Hidden content (for download) */
.mbd-hidden{display:none}

/* Overlay + popup */
.mbd-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.6);z-index:9999}
.mbd-popup{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:350px;height:600px;background:#fff;border-radius:20px;overflow-y:auto;box-shadow:0 8px 24px rgba(0,0,0,.25);padding:1rem}
.mbd-close{position:absolute;top:10px;right:15px;background:none;border:none;font-size:1.5rem;cursor:pointer;color:#333}

/* Popup content */
.mbd-popup-inner img{width:100%;border-radius:8px;margin-bottom:.5rem}
.mbd-popup-inner h3{margin:.5rem 0;font-size:1.125rem;font-weight:700}
.mbd-popup-inner p{margin:.25rem 0;font-size:.875rem;line-height:1.4;color:#222}
