/* ========== land-page ========== */
    .land-header {
      background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 50%, #66bb6a 100%);
      color: white;
      padding: 44px 24px 36px;
      position: relative;
      overflow: hidden;
    }

    .land-header::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
    }

    .land-header h1 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .land-header p {
      font-size: 14px;
      opacity: 0.85;
    }

    .land-stats {
      display: flex;
      gap: 12px;
      padding: 0 16px;
      margin-top: -18px;
      position: relative;
      z-index: 2;
    }

    .land-stat {
      flex: 1;
      background: var(--card);
      border-radius: var(--radius-md);
      padding: 14px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    .land-stat-num {
      font-size: 22px;
      font-weight: 700;
      color: var(--green-primary);
    }

    .land-stat-label {
      font-size: 12px;
      color: var(--text-hint);
      margin-top: 2px;
    }

    .land-filter {
      display: flex;
      gap: 10px;
      padding: 16px;
      overflow-x: auto;
    }

    .filter-item {
      background: var(--card);
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 13px;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid rgba(45, 140, 60, 0.1);
      color: var(--text-secondary);
      font-weight: 500;
    }

    .filter-item.active {
      background: var(--green-primary);
      color: white;
      border-color: var(--green-primary);
      box-shadow: 0 4px 12px rgba(45, 140, 60, 0.3);
    }

    .land-grid {
      padding: 0 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .land-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .land-card:active {
      transform: scale(0.98);
      box-shadow: var(--shadow-md);
    }

    .land-card-cover {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      position: relative;
      overflow: hidden;
    }

    .land-card-weather {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(6px);
      color: #fff;
      padding: 4px 10px;
      border-radius: 16px;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 4px;
      z-index: 2;
    }

    .land-card-weather .weather-emoji {
      font-size: 16px;
    }

    .ld-weather {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(6px);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 2;
    }

    .ld-weather .weather-emoji {
      font-size: 18px;
    }

    .land-card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
    }

    .land-card-badge.available {
      background: rgba(46, 125, 50, 0.9);
      color: white;
    }

    .land-card-badge.rented {
      background: rgba(198, 40, 40, 0.9);
      color: white;
    }

    .land-card-distance-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .land-card-distance-badge svg {
      width: 14px;
      height: 14px;
      fill: #fff;
    }

    .land-card-body {
      padding: 16px;
    }

    .land-card-title-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .land-card-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .land-card-location-inline {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      color: var(--text-secondary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 60%;
    }

    .land-card-location-inline svg {
      width: 14px;
      height: 14px;
      fill: var(--text-hint);
      flex-shrink: 0;
    }

    .land-card-location-inline span {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .land-card-info-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
    }

    .land-card-info-item {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      color: var(--text-hint);
    }

    .land-card-info-item svg {
      width: 14px;
      height: 14px;
      fill: var(--text-hint);
    }

    .land-card-farmer {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
      padding-top: 12px;
      border-top: 1px dashed rgba(0, 0, 0, 0.1);
      background: linear-gradient(to right, rgba(45, 140, 60, 0.03), transparent);
      margin-left: -16px;
      margin-right: -16px;
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 4px;
    }

    .land-card-farmer-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #81c784, #4caf50);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
    }

    .land-card-farmer-info {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 0;
    }

    .land-card-farmer-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
    }

    .land-card-farmer-label {
      display: none;
    }

    .land-card-btn {
      background: var(--orange);
      color: white;
      border: none;
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 3px 8px rgba(230, 81, 0, 0.25);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .land-card-btn.rented {
      background: #bdbdbd;
      box-shadow: none;
    }

    .land-card-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .land-card-nav-btn {
      background: #fff;
      color: #2d8c3c;
      border: 1.5px solid #2d8c3c;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .land-card-nav-btn:hover {
      background: #e8f5e9;
    }
