/* ---- GRID PRODUK ---- */
.orderadv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.orderadv-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .2s ease;
}

.orderadv-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

.card-desc {
    color: #666;
    flex: 1;
}

.card-price {
    font-weight: 700;
    margin-top: 8px;
    color: #111;
}


/* ---- MODAL PRODUK ---- */
.orderadv-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.orderadv-modal-inner {
    width: 900px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.orderadv-modal-close {
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: 0;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

.orderadv-modal-content {
    display: flex;
    padding: 18px;
    gap: 18px;
}

.orderadv-modal-thumb img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

.orderadv-modal-info {
    flex: 1;
}

.orderadv-modal-price {
    font-weight: 800;
    margin-top: 8px;
    font-size: 18px;
}


/* ---- DAFTAR TUGAS (SHORTCODE: orderadv_tasks) ---- */
.orderadv-task-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.orderadv-task-card {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .2s ease;
}

.orderadv-task-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.task-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.task-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.45;
}

/* Badge kecil */
.task-badge {
    display: inline-block;
    background:#f2f4ff;
    padding
