/* MaidForYou Suburb Grid v1.0.0 */
#mfy-sg-root { font-family: 'Poppins', -apple-system, sans-serif; color: #1a1a1a; width: 100%; }

/* Filters */
.mfy-sg-filters-bar {
  background: #FEF9F2;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.mfy-sg-filters {
  display: flex; gap: 16px; flex: 1; flex-wrap: wrap;
}
.mfy-sg-select-wrap {
  position: relative; flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 5px;
}
.mfy-sg-select-label {
    font-size: 14px;
    font-weight: 400;
    color: #364153;
    letter-spacing: 0.04px;
}
.mfy-sg-select-wrap::after {
  content: ''; position: absolute; right: 14px; bottom: 14px;
  width: 10px; height: 6px; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}
.mfy-sg-filters select {
  width: 100%; padding: 11px 36px 11px 16px;
  border: 1.5px solid #e8e0d8; border-radius: 10px;
  background: #fff; font-size: 14px; font-family: inherit; font-weight: 600;
  color: #333; appearance: none; -webkit-appearance: none;
  cursor: pointer; outline: none;
}
.mfy-sg-filters select:focus { border-color: #E87722; }

/* Grid */
#mfy-sg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { #mfy-sg-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { #mfy-sg-grid { grid-template-columns: 1fr; } }

/* Skeleton */
.mfy-sg-skel {
  background: #f0f0f0; border-radius: 16px; height: 280px;
  animation: mfysgpulse 1.2s ease-in-out infinite alternate;
}
@keyframes mfysgpulse { from{opacity:1}to{opacity:.4} }

/* Card */
.mfy-sg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.mfy-sg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

/* Card header — orange */
.mfy-sg-card-header {
    background: linear-gradient(51deg, #F47F04, #FFAD57);
    padding: 24px;
    color: #fff;
}
.mfy-sg-card-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.mfy-sg-card-region {
  font-size: 12px; font-weight: 400; color: #FDFEFF;
}

/* Card body */
.mfy-sg-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; position: relative;
}
.mfy-sg-label {
  font-size: 14px; font-weight: 600; color: #878FA0; letter-spacing: 0.5px;
}
.mfy-sg-cleans { font-size: 16px; font-weight: 700; color: #E87722; }
.mfy-sg-date   { font-size: 16px; font-weight: 700; color: #E87722; }

.mfy-sg-row::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: #CBCED4;
}
/* Bullets */
.mfy-sg-bullets {
    list-style: none;
    margin: 12px 24px 0;
    padding: 0;
    border-bottom: 1px solid #CBCED4;
    padding-top: 15px;
    padding-bottom: 12px;
}
.mfy-sg-bullets li {
    font-size: 14px;
    color: #0A0A0A;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
}
.mfy-sg-check { color: #E87722; font-size: 13px; font-weight: 700; flex-shrink: 0; }

/* Actions */
.mfy-sg-actions {
  display: flex; gap: 10px; padding: 24px; margin-top: auto;
}
.mfy-sg-btn {
  flex: 1; text-align: center; padding: 9px 0;
  border-radius: 40px; font-size: 13px; font-weight: 700;
  text-decoration: none; font-family: inherit;
  transition: all .15s; cursor: pointer;
}
.mfy-sg-btn--outline {
  border: 1.5px solid #E87722; color: #E87722; background: #fff;
}
.mfy-sg-btn--outline:hover { background: #E87722; color: #fff; }
.mfy-sg-btn--fill {
  background: #E87722; color: #fff; border: 1.5px solid #E87722;
}
.mfy-sg-btn--fill:hover { background: #d06318; border-color: #d06318; }

/* Empty */
.mfy-sg-empty {
  grid-column: 1/-1; text-align: center;
  color: #999; font-size: 14px; padding: 40px 0;
}

@media (max-width: 560px) {
  .mfy-sg-filters { flex-direction: column; }
  .mfy-sg-select-wrap { min-width: 100%; }
}
